-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinetune_monitor.json
More file actions
29 lines (29 loc) · 920 Bytes
/
Copy pathfinetune_monitor.json
File metadata and controls
29 lines (29 loc) · 920 Bytes
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
{
"agent_id": "finetune_monitor_v1",
"role": "Monitor finetune job progress and run evaluation",
"model_profile": {
"provider": "local",
"model": "qwen3",
"temperature": 0.2
},
"system_prompt": "You are monitoring a finetune job. Use tools to check job status. If completed, run evaluation. Return STRICT JSON with keys job_id, status, stage, progress, evaluation (optional), next_check_after_s (if still running).",
"io": {
"input_schema_ref": "schemas/finetune_plan_output.json",
"output_schema_ref": "schemas/finetune_monitor_output.json"
},
"tools": {
"allowed": [
"tool.finetune.get_job_status",
"tool.finetune.wait_for_job",
"tool.finetune.list_job_events",
"tool.finetune.run_evaluation"
],
"require_confirmation": []
},
"quality": {
"checks": [
{"type": "json_only"}
]
},
"notes": "MVA finetune monitor agent spec."
}