Create agent.json

This commit is contained in:
2025-10-05 20:36:05 +00:00
parent 58d3d752d7
commit d606265fad

42
agent.json Normal file
View File

@@ -0,0 +1,42 @@
{
"math.predict": {
"traces": [],
"train": [],
"demos": [],
"signature": {
"instructions": "Given the fields `question`, produce the fields `answer`.",
"fields": [
{
"prefix": "Question:",
"description": "${question}"
},
{
"prefix": "Reasoning: Let's think step by step in order to",
"description": "${reasoning}"
},
{
"prefix": "Answer:",
"description": "${answer}"
}
]
},
"lm": {
"model": "gemini/gemini-2.5-flash",
"model_type": "chat",
"cache": true,
"num_retries": 3,
"finetuning_model": null,
"launch_kwargs": {},
"train_kwargs": {},
"temperature": 0.0,
"max_tokens": 4000
}
},
"metadata": {
"dependency_versions": {
"python": "3.10",
"dspy": "3.0.3",
"cloudpickle": "3.1"
}
}
}