Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion evalbench/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ulimit -n 4096
export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python

if command -v uv &> /dev/null; then
uv run evalbench/evalbench.py --experiment_config="$EVAL_CONFIG"
uv run --no-sync evalbench/evalbench.py --experiment_config="$EVAL_CONFIG"
else
python evalbench/evalbench.py --experiment_config="$EVAL_CONFIG"
fi
2 changes: 1 addition & 1 deletion evalbench_service/supervisord_cloudrun.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0

[program:precompute_trends]
command=uv run python /evalbench/viewer/run_precompute.py
command=uv run --no-sync python /evalbench/viewer/run_precompute.py
directory=/evalbench/viewer
autostart=true
autorestart=true
Expand Down
4 changes: 2 additions & 2 deletions evalbench_service/supervisord_combined.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0

[program:evalbench_server]
command=uv run python evalbench/eval_server.py
command=uv run --no-sync python evalbench/eval_server.py
directory=/evalbench
autostart=true
autorestart=true
Expand All @@ -25,7 +25,7 @@ stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0

[program:precompute_trends]
command=uv run python /evalbench/viewer/run_precompute.py
command=uv run --no-sync python /evalbench/viewer/run_precompute.py
directory=/evalbench/viewer
autostart=true
autorestart=true
Expand Down
2 changes: 1 addition & 1 deletion evalbench_service/supervisord_evalbench.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ logfile_maxbytes = 50MB
logfile_backups=5

[program:evalbench_server]
command=uv run python evalbench/eval_server.py
command=uv run --no-sync python evalbench/eval_server.py
directory=/evalbench
autostart=true
autorestart=true
Expand Down
2 changes: 1 addition & 1 deletion viewer/run_frontend.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
exec uv run gunicorn -w 12 -k sync main:me --bind :${PORT:-3000} --forwarded-allow-ips="*" --timeout 120
exec uv run --no-sync gunicorn -w 12 -k sync main:me --bind :${PORT:-3000} --forwarded-allow-ips="*" --timeout 120
Loading