-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
66 lines (59 loc) · 1.5 KB
/
Copy pathconfig.example.yaml
File metadata and controls
66 lines (59 loc) · 1.5 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
profiles:
local:
command: jcode
arguments: ["--provider", "ollama", "--model", "qwen3-coder"]
output: ndjson
input_missed_cost_per_million: 0
input_cached_cost_per_million: 0
cache_write_cost_per_million: 0
output_cost_per_million: 0
analysis:
command: jcode
arguments: ["--provider", "REPLACE_PROVIDER", "--model", "REPLACE_ANALYSIS_MODEL"]
output: ndjson
judge:
command: jcode
arguments: ["--provider", "REPLACE_PROVIDER", "--model", "REPLACE_CONSENSUS_MODEL"]
output: ndjson
judge_fallback:
command: jcode
arguments: ["--provider", "REPLACE_PROVIDER", "--model", "REPLACE_FALLBACK_MODEL"]
output: ndjson
pipeline:
task_compiler: analysis
task_critic: judge
executor: local
verifier: judge
reporter: analysis
task_compiler_fallback: local
task_critic_fallback: analysis
executor_fallback: analysis
verifier_fallback: analysis
reporter_fallback: local
investigator: local
dependency: analysis
adversarial: analysis
consensus: judge
consensus_fallback: judge_fallback
verification:
test: auto
build: auto
lint: auto
limits:
execution_timeout: 45m
max_patch_bytes: 5000000
artifacts:
directory: engineering-review/runs
prompts:
directory: prompts
campaign:
max_tasks: 10
max_failures: 2
max_task_retries: 3
max_cost_usd: 100
max_duration_minutes: 480
deployment_allowed: false
release_publication_allowed: false
data_migration_allowed: false
require_clean_git: true
stop_on_degraded_verification: true