test arbiter setup

This commit is contained in:
2026-05-03 16:11:32 -07:00
parent ceb655375c
commit 70b4fc6c29
3 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
---
a: 3.537087
b: -1.616884
is_arbiter: true
probe_model: modaic/gpt-oss-120b-probe
size: large
supports_reasoning: true
---

48
config.json Normal file
View File

@@ -0,0 +1,48 @@
{
"model": null,
"signature": {
"$defs": {
"Reasoning": {
"type": "dspy.Reasoning"
}
},
"description": "Classify whether an email is spam or not.",
"properties": {
"subject": {
"__dspy_field_type": "input",
"desc": "The email subject line",
"prefix": "Subject:",
"title": "Subject",
"type": "string"
},
"body": {
"__dspy_field_type": "input",
"desc": "The email 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 email is spam",
"prefix": "Is Spam:",
"title": "Is Spam",
"type": "boolean"
}
},
"required": [
"subject",
"body",
"reasoning",
"is_spam"
],
"title": "StringSignature",
"type": "object"
}
}

44
program.json Normal file
View File

@@ -0,0 +1,44 @@
{
"traces": [],
"train": [],
"demos": [],
"signature": {
"instructions": "Classify whether an email is spam or not.",
"fields": [
{
"prefix": "Subject:",
"description": "The email subject line"
},
{
"prefix": "Body:",
"description": "The email 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 email is 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.13",
"dspy": "3.1.2",
"cloudpickle": "3.1"
}
}
}