(no commit message)

This commit is contained in:
2026-02-22 12:47:50 -08:00
parent da6bbceafc
commit 85932c360b
3 changed files with 54 additions and 2 deletions

28
config.json Normal file
View File

@@ -0,0 +1,28 @@
{
"model": "openai/gpt-4o-mini",
"signature": {
"description": "Summarize the given text into a concise summary.",
"properties": {
"text": {
"__dspy_field_type": "input",
"desc": "The text to summarize",
"prefix": "Text:",
"title": "Text",
"type": "string"
},
"summary": {
"__dspy_field_type": "output",
"desc": "A concise summary of the text",
"prefix": "Summary:",
"title": "Summary",
"type": "string"
}
},
"required": [
"text",
"summary"
],
"title": "SummarizeSignature",
"type": "object"
}
}