diff --git a/README.md b/README.md index de36875..8d23f92 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ -# spam-classification - +--- +is_arbiter: true +probe_model: modaic/gpt-oss-120b-probe +size: large +supports_reasoning: true +--- \ 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..f456870 --- /dev/null +++ b/program.json @@ -0,0 +1,47 @@ +{ + "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, + "allowed_openai_params": [ + "reasoning_effort" + ] + }, + "metadata": { + "dependency_versions": { + "python": "3.11", + "dspy": "3.1.3", + "cloudpickle": "3.1" + } + } +} \ No newline at end of file