Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9a07b1f
Local deployment minor fixes
olesho Oct 15, 2025
edbf470
Make dev build
olesho Oct 15, 2025
8afb683
Local deployment setup: should support fast building
olesho Oct 16, 2025
81afe0e
Added proper /tabs API
olesho Oct 16, 2025
7f5e4cd
Added API for managing tabs
olesho Oct 16, 2025
469cc40
New tab opened for each /responses API call
olesho Oct 16, 2025
ccc914d
Updated documentation
olesho Oct 16, 2025
6f33f63
Initial eval setup
olesho Oct 18, 2025
54af04e
Evals refactoring. Only simple test works.
olesho Oct 19, 2025
c94dd24
Changed evals structure
olesho Oct 21, 2025
0a23ba6
Cleanup
olesho Oct 21, 2025
17d3bff
Changed evals structure
olesho Oct 21, 2025
dcab9be
Restore missing eval functionality from c94dd24
olesho Oct 21, 2025
1fb0bc1
Another attempt to cleanup
olesho Oct 21, 2025
05ea2a6
Refactor config.yml to use example files for different providers
olesho Oct 21, 2025
29ad772
Merge branch 'feat/manage-tabs' of github.com:BrowserOperator/web-age…
olesho Oct 21, 2025
035855f
Cleanup and refactoring; fixed docker-compose setup
olesho Oct 21, 2025
dc58434
Adjust UDP ranges
olesho Oct 21, 2025
6b1baa4
Remove unused code from eval-server
olesho Oct 21, 2025
d0b464c
Refactored mounted directories
olesho Oct 21, 2025
501fbb5
Refactoring
olesho Oct 21, 2025
0c8530d
Refactoring and proper naming
olesho Oct 22, 2025
3044f90
Cleanup config
olesho Oct 22, 2025
bd5061e
Example configs
olesho Oct 22, 2025
29081c5
Fix the old ./src/lib/EvalServer.js reference
olesho Oct 22, 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
22 changes: 20 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,23 @@ service-account-key.json
*.bak
*.backup

# Chromium persistent data
chromium-data/
# Chromium persistent data (deprecated, now in @mount/)
chromium-data/

# All mounted volumes (recordings, chromium-data, browser-agent-server, etc.)
@mount/

# Browser Operator DevTools build artifacts
browser-operator-core/devtools-frontend/
browser-operator-core/depot_tools/
browser-operator-core/.devtools-built
browser-operator-core/.devtools-base-built

# Eval server runtime files
browser-agent-server/nodejs/clients/
browser-agent-server/nodejs/logs/
browser-agent-server/nodejs/node_modules/
browser-agent-server/nodejs/.env

# Evaluation screenshots
evals/screenshots/
5 changes: 5 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[submodule "kernel-images"]
path = kernel-images
url = https://github.com/onkernel/kernel-images.git

[submodule "browser-operator-core"]
path = browser-operator-core
url = git@github.com:BrowserOperator/browser-operator-core.git
shallow = true
Loading