(no commit message)

This commit is contained in:
2025-12-16 17:39:23 -08:00
parent 6ccc13afef
commit eb62dff6a3
4 changed files with 215 additions and 1 deletions

43
program.json Normal file
View File

@@ -0,0 +1,43 @@
{
"agent.predict": {
"traces": [],
"train": [],
"demos": [],
"signature": {
"instructions": "Given the fields `inputs`, produce the fields `output`.",
"fields": [
{
"prefix": "Inputs:",
"description": "${inputs}"
},
{
"prefix": "Reasoning: Let's think step by step in order to",
"description": "${reasoning}"
},
{
"prefix": "Output:",
"description": "${output}"
}
]
},
"lm": {
"model": "gpt-4o",
"model_type": "chat",
"cache": true,
"num_retries": 3,
"finetuning_model": null,
"launch_kwargs": {},
"train_kwargs": {},
"temperature": null,
"max_tokens": null,
"api_base": null
}
},
"metadata": {
"dependency_versions": {
"python": "3.13",
"dspy": "3.0.4",
"cloudpickle": "3.1"
}
}
}