(no commit message)

This commit is contained in:
2026-01-03 18:22:58 -08:00
parent bccd229d4f
commit 6c190c09d9
3 changed files with 101 additions and 2 deletions

46
program.json Normal file
View File

@@ -0,0 +1,46 @@
{
"predictor": {
"traces": [],
"train": [],
"demos": [],
"signature": {
"instructions": "Given the fields `input`, `output`, produce the fields `correctness`, `reasoning`.",
"fields": [
{
"prefix": "Input:",
"description": "${input}"
},
{
"prefix": "Output:",
"description": "${output}"
},
{
"prefix": "Correctness:",
"description": "${correctness}"
},
{
"prefix": "Reasoning:",
"description": "${reasoning}"
}
]
},
"lm": {
"model": "gpt-4o-mini",
"model_type": "chat",
"cache": true,
"num_retries": 3,
"finetuning_model": null,
"launch_kwargs": {},
"train_kwargs": {},
"temperature": null,
"max_tokens": null
}
},
"metadata": {
"dependency_versions": {
"python": "3.11",
"dspy": "3.0.4",
"cloudpickle": "3.1"
}
}
}