(no commit message)

This commit is contained in:
2026-02-16 01:39:25 -08:00
parent 76a16348f9
commit e77a41f82f
3 changed files with 66 additions and 2 deletions

36
config.json Normal file
View File

@@ -0,0 +1,36 @@
{
"model": null,
"signature": {
"description": "Given the fields `question`, produce the fields `reasoning`, `answer`.",
"properties": {
"question": {
"__dspy_field_type": "input",
"desc": "${question}",
"prefix": "Question:",
"title": "Question",
"type": "string"
},
"reasoning": {
"__dspy_field_type": "output",
"desc": "${reasoning}",
"prefix": "Reasoning:",
"title": "Reasoning",
"type": "string"
},
"answer": {
"__dspy_field_type": "output",
"desc": "${answer}",
"prefix": "Answer:",
"title": "Answer",
"type": "string"
}
},
"required": [
"question",
"reasoning",
"answer"
],
"title": "QA",
"type": "object"
}
}