Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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: 2 additions & 0 deletions evalbench_service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ ENV DEBIAN_FRONTEND=noninteractive
ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
ENV PYTHONPATH=/evalbench/evalbench/evalproto:.
ENV HOME=/root
ENV VIRTUAL_ENV=/evalbench/.venv
ENV PATH=/evalbench/.venv/bin:$PATH
ENV CLOUDSDK_CONFIG=/root/.config/gcloud
ENV GCLOUD_CONFIG=/root/.config/gcloud

Expand Down
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=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=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=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=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 gunicorn -w 12 -k sync main:me --bind :${PORT:-3000} --forwarded-allow-ips="*" --timeout 120
3 changes: 2 additions & 1 deletion viewer/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dbfbafa
d32255a

Loading