From 0868c33c2d7143e4232514a7bf79af9c0386f2c7 Mon Sep 17 00:00:00 2001 From: tytodd Date: Tue, 24 Feb 2026 19:48:05 -0800 Subject: [PATCH] (no commit message) --- README.md | 5 +++-- config.json | 28 ++++++++++++++++++++++++++++ program.json | 26 ++++++++++++++++++++++++++ 3 files changed, 57 insertions(+), 2 deletions(-) create mode 100644 config.json create mode 100644 program.json diff --git a/README.md b/README.md index 4c3aba5..5ded31e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -# arbiter_with_metadata - +--- +is_arbiter: true +--- \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..60fde47 --- /dev/null +++ b/config.json @@ -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" + } +} \ No newline at end of file diff --git a/program.json b/program.json new file mode 100644 index 0000000..1fe76c9 --- /dev/null +++ b/program.json @@ -0,0 +1,26 @@ +{ + "traces": [], + "train": [], + "demos": [], + "signature": { + "instructions": "Given the fields `question`, produce the fields `answer`.", + "fields": [ + { + "prefix": "Question:", + "description": "${question}" + }, + { + "prefix": "Answer:", + "description": "${answer}" + } + ] + }, + "lm": null, + "metadata": { + "dependency_versions": { + "python": "3.11", + "dspy": "3.1.2", + "cloudpickle": "3.1" + } + } +} \ No newline at end of file