Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
0052dfb
Fix default team name for consistency to avoid confusion
rabelenda Nov 17, 2025
e27810f
Fix agent import dialog resizing when an unsupported file type is used
rabelenda Nov 17, 2025
1ff4ff6
Fix openai and azure environment variables references in readme and u…
rabelenda Nov 17, 2025
2fb157e
Fix azure provider embeddings initialization
rabelenda Nov 17, 2025
e50a184
Update github pages for every change in main branch
rabelenda Nov 17, 2025
b536175
Corrección: i18n tooltip y comportamiento desplegar-plegar de listas
Nov 18, 2025
c25eacb
Merge pull request #21 from ldelreguero/correcciones/tooltip-desplieg…
rabelenda Nov 19, 2025
2e8c6ef
Remove unnecessary code, improve style and code for consistency
rabelenda Nov 20, 2025
62a9a47
Fix import of agents zip files generated in windows that contain spec…
rabelenda Nov 20, 2025
d8010e4
Cleanup code and remove unnecessary async function in agents distribu…
rabelenda Nov 21, 2025
5bc2926
Allow to customize evaluators used in agents tests
rabelenda Dec 3, 2025
38988c7
Add editor role to allow some users to edit agents but not see team m…
rabelenda Dec 3, 2025
61509e9
Add styling changes for consistency and readability
rabelenda Dec 8, 2025
6097192
Add logging to chrome extension to better trace issues with authentic…
rabelenda Dec 10, 2025
99911a3
Update browser copilot extension icon to match rest of Tero style
rabelenda Dec 12, 2025
2c39c4d
Support defining agents tests with multiple steps
rabelenda Dec 15, 2025
9472b4c
Fix typescript issues while building frontend
rabelenda Dec 15, 2025
1c8f43e
Improve frontend api contract for agent tool config
rabelenda Dec 15, 2025
f454a11
Merge branch 'abstracta:main' into sync_1
ignaciopicun Dec 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: pnpm/action-setup@v4
with:
version: 10
Expand All @@ -33,6 +35,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: pnpm/action-setup@v4
with:
version: 10
Expand Down Expand Up @@ -65,3 +69,22 @@ jobs:
poetry run pyright
cp ../sample.env ../../.env
poetry run alembic revision

publish-gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 23
cache: 'pnpm'
cache-dependency-path: 'docs/pnpm-lock.yaml'
- name: Publish
run: .github/gh-pages-deploy.sh
env:
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To run Tero locally:

1. Generate an OpenAI API key or an Azure OpenAI endpoint and key.
2. Clone this repository. Make sure you have git-lfs installed to get all the files properly.
3. Copy `src/sample.env` to `.env` in the project root and set `OPENAI_KEY` or `AZURE_OPENAI_KEY` and `AZURE_OPENAI_ENDPOINT`.
3. Copy `src/sample.env` to `.env` in the project root and set `OPENAI_API_KEY` or `AZURE_API_KEYS` and `AZURE_ENDPOINTS`.
4. Start the app and dependencies with `docker compose up -d`.
5. Open `http://localhost:8000` and log in with username `test` and password `test`.

Expand Down
11 changes: 3 additions & 8 deletions devbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
// use this since 23.7.0 builds locally and takes a long time
"nodejs": "23.6.1",
"pnpm": "latest"
"pnpm": "latest"
},
"env": {
"VENV_DIR": "$DEVBOX_PROJECT_ROOT/src/backend/.venv",
"VENV_DIR": "$DEVBOX_PROJECT_ROOT/src/backend/.venv",
"DEVBOX_PYPROJECT_DIR": "$DEVBOX_PROJECT_ROOT/src/backend"
},
"shell": {
Expand Down Expand Up @@ -70,10 +70,6 @@
"[ ! -e browser-copilot.zip ] || rm browser-copilot.zip",
"zip -r browser-copilot.zip *"
],
"update-python": [
"cd src/backend",
"poetry update"
],
"check": [
"cd src/backend",
"poetry run pyright"
Expand All @@ -91,5 +87,4 @@
]
}
}
}

}
Loading