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
1 change: 1 addition & 0 deletions server/autotest_server/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ worker_log_dir: !ENV ${WORKER_LOG_DIR}
default_remote_url: https://polymouth.teach.cs.toronto.edu:443/chat
remote_url_whitelist:
- https://polymouth.teach.cs.toronto.edu:443/chat
- http://host.docker.internal:5001/chat
max_test_timeout: 3600
workers:
- user: !ENV ${USER}
Expand Down
11 changes: 10 additions & 1 deletion server/autotest_server/testers/ai/settings_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,16 @@
"enum": ["code", "text", "image"]
},
"submission": { "type": "string" },
"model": { "type": "string" },
"model": {
"title": "Model Location",
"type": "string",
"enum": ["remote"],
"default": "remote"
},
"model_name": {
"title": "Model Name",
"type": "string"
},
"json_schema": { "type": "string" },
"llama_mode": {
"type": "string",
Expand Down
Loading