Files
spam-classification/program.json
2026-04-20 13:08:57 -07:00

47 lines
1.0 KiB
JSON

{
"traces": [],
"train": [],
"demos": [],
"signature": {
"instructions": "Classify the email as spam or not spam please.",
"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"
}
}
}