diff --git a/agent.json b/agent.json new file mode 100644 index 0000000..900f8bc --- /dev/null +++ b/agent.json @@ -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" + } + } +}