(no commit message)

This commit is contained in:
2026-02-13 12:10:12 -08:00
parent 4d0eb630e3
commit d033cc9a9d
3 changed files with 387 additions and 1 deletions

36
config.json Normal file
View File

@@ -0,0 +1,36 @@
{
"model": null,
"signature": {
"description": "Answer the question. Be sure to verbally express your uncertainty in your thought process.",
"properties": {
"question": {
"__dspy_field_type": "input",
"desc": "The question to answer",
"prefix": "Question:",
"title": "Question",
"type": "string"
},
"reasoning": {
"__dspy_field_type": "output",
"desc": "Your step by step reasoning about the target audience. Verbalize uncertainty.",
"prefix": "Reasoning:",
"title": "Reasoning",
"type": "string"
},
"answer": {
"__dspy_field_type": "output",
"desc": "The response to the question",
"prefix": "Answer:",
"title": "Answer",
"type": "string"
}
},
"required": [
"question",
"reasoning",
"answer"
],
"title": "AudienceSig",
"type": "object"
}
}