From 9287fc5a25afa2dd09260fdb00b6a4da595fe521 Mon Sep 17 00:00:00 2001 From: tytodd Date: Thu, 2 Apr 2026 22:07:49 -0700 Subject: [PATCH] (no commit message) --- README.md | 7 +++++-- config.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ program.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 97 insertions(+), 2 deletions(-) create mode 100644 config.json create mode 100644 program.json diff --git a/README.md b/README.md index de36875..915d3ac 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ -# spam-classification - +--- +is_arbiter: true +probe_model: modaic/gpt-oss-120b-probe +size: large +--- \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..a6d896a --- /dev/null +++ b/config.json @@ -0,0 +1,48 @@ +{ + "model": null, + "signature": { + "$defs": { + "Reasoning": { + "type": "dspy.Reasoning" + } + }, + "description": "Classify the email as spam or not spam.", + "properties": { + "subject": { + "__dspy_field_type": "input", + "desc": "${subject}", + "prefix": "Subject:", + "title": "Subject", + "type": "string" + }, + "body": { + "__dspy_field_type": "input", + "desc": "${body}", + "prefix": "Body:", + "title": "Body", + "type": "string" + }, + "reasoning": { + "$ref": "#/$defs/Reasoning", + "__dspy_field_type": "output", + "desc": "Your reasoning for your answer. Inlude any uncertainties about your answer or ambiguity in the task.", + "prefix": "Reasoning:" + }, + "is_spam": { + "__dspy_field_type": "output", + "desc": "Whether the message is spam or not spam.", + "prefix": "Is Spam:", + "title": "Is Spam", + "type": "boolean" + } + }, + "required": [ + "subject", + "body", + "reasoning", + "is_spam" + ], + "title": "StringSignature", + "type": "object" + } +} \ No newline at end of file diff --git a/program.json b/program.json new file mode 100644 index 0000000..155fcfa --- /dev/null +++ b/program.json @@ -0,0 +1,44 @@ +{ + "traces": [], + "train": [], + "demos": [], + "signature": { + "instructions": "Classify the email as spam or not spam.", + "fields": [ + { + "prefix": "Subject:", + "description": "${subject}" + }, + { + "prefix": "Body:", + "description": "${body}" + }, + { + "prefix": "Reasoning:", + "description": "Your reasoning for your answer. Inlude any uncertainties about your answer or ambiguity in the task." + }, + { + "prefix": "Is Spam:", + "description": "Whether the message is spam or not spam." + } + ] + }, + "lm": { + "model": "together_ai/openai/gpt-oss-120b", + "model_type": "chat", + "cache": true, + "num_retries": 3, + "finetuning_model": null, + "launch_kwargs": {}, + "train_kwargs": {}, + "temperature": null, + "max_tokens": null + }, + "metadata": { + "dependency_versions": { + "python": "3.11", + "dspy": "3.1.3", + "cloudpickle": "3.1" + } + } +} \ No newline at end of file