(no commit message)

This commit is contained in:
2026-01-02 14:42:43 -08:00
parent cf2ff110ec
commit ceb079c684
3 changed files with 56 additions and 2 deletions

28
config.json Normal file
View File

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