-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
23 lines (20 loc) · 824 Bytes
/
Copy pathconfig.yaml
File metadata and controls
23 lines (20 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
model:
backend: ollama # ollama | transformers | inference_api
model_id: "qwen2.5-coder:14b" # default; spec's 7b-instruct tag not present on this host
api_base: "http://localhost:11434"
num_ctx: 8192 # CRITICAL: Ollama default 2048 will fail for agents
temperature: 0.2
max_tokens: 4096
agent:
max_steps: 8
verbosity_level: 1
planning_interval: 3 # periodic re-planning; null to disable
additional_authorized_imports: ["json", "re", "statistics", "datetime"]
enable_web_tools: true # WebSearchTool + VisitWebpageTool
data:
path: "data/sample_jobs.jsonl"
format: "jsonl" # jsonl | sqlite
sqlite_table: "jobs" # used when format == sqlite
obs:
log_level: "INFO"
metrics_port: null # set to e.g. 9109 to expose Prometheus metrics