From a50bd57d427c980e7021581d1976bb4c03dc438a Mon Sep 17 00:00:00 2001 From: tytodd Date: Sun, 19 Apr 2026 20:58:17 -0700 Subject: [PATCH] (no commit message) --- README.md | 7 ++++++- config.json | 28 ++++++++++++++++++++++++++++ program.json | 26 ++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 config.json create mode 100644 program.json diff --git a/README.md b/README.md index 2a3c12c..f301973 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ -# predict-test-repo +--- +is_arbiter: true +probe_model: modaic/qwen3-32b-probe +size: medium +--- +# predict-test-repo \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..1ddaacf --- /dev/null +++ b/config.json @@ -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" + } +} \ No newline at end of file diff --git a/program.json b/program.json new file mode 100644 index 0000000..a4a671c --- /dev/null +++ b/program.json @@ -0,0 +1,26 @@ +{ + "traces": [], + "train": [], + "demos": [], + "signature": { + "instructions": "Summarize the given text into a concise summary.", + "fields": [ + { + "prefix": "Text:", + "description": "The text to summarize" + }, + { + "prefix": "Summary:", + "description": "A concise summary of the text" + } + ] + }, + "lm": null, + "metadata": { + "dependency_versions": { + "python": "3.11", + "dspy": "3.1.2", + "cloudpickle": "3.1" + } + } +} \ No newline at end of file