File size: 1,103 Bytes
1e300b7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | jobs_dir: outputs/jobs
job_name: tb1-model
n_attempts: 1
timeout_multiplier: 3.0
agent_setup_timeout_multiplier: 2.0
agent_timeout_multiplier: 12.0
verifier_timeout_multiplier: 4.0
environment_build_timeout_multiplier: 3.0
n_concurrent_trials: 8
quiet: true
retry:
max_retries: 3
wait_multiplier: 2.0
min_wait_sec: 5.0
max_wait_sec: 60.0
agents:
- name: terminus-2
model_name: openai/your-model
max_timeout_sec: 1200
kwargs:
api_base: https://your-openai-compatible-endpoint.example/v1
temperature: 1.0
store_all_messages: true
interleaved_thinking: false
model_info:
max_tokens: 32768
max_input_tokens: 32768
max_output_tokens: 8192
input_cost_per_token: 0.0
output_cost_per_token: 0.0
trajectory_config:
raw_content: true
llm_kwargs:
timeout: 300
record_terminal_session: false
local_agent_tools_dir: runtime/agent-tools
environment:
type: docker
allow_internet: true
force_build: false
delete: false
datasets:
- path: datasets/terminal-bench-1.0-offline
|