initial push

This commit is contained in:
2026-04-08 21:26:31 -07:00
parent 1523d81323
commit 99afd6e635
3 changed files with 63 additions and 1 deletions

33
config.json Normal file
View File

@@ -0,0 +1,33 @@
{
"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}",
"enum": [
"yes",
"no",
"maybe"
],
"prefix": "Answer:",
"title": "Answer",
"type": "string"
}
},
"required": [
"question",
"answer"
],
"title": "MySignature",
"type": "object"
}
}