(no commit message)

This commit is contained in:
2026-02-10 18:20:01 -08:00
parent c47a3b7125
commit 78d64a3c7c
3 changed files with 397 additions and 1 deletions

40
program.json Normal file
View File

@@ -0,0 +1,40 @@
{
"traces": [],
"train": [],
"demos": [],
"signature": {
"instructions": "Classify a news article into one of 8 financial/business topic categories.\n\nCategories:\n- acq: Mergers, acquisitions, corporate takeovers\n- crude: Oil, petroleum, crude oil markets\n- earn: Corporate earnings, financial results, profits\n- grain: Agriculture, grain commodities, crops\n- interest: Interest rates, central bank policy, borrowing\n- money-fx: Currency exchange, foreign exchange markets, monetary policy\n- ship: Shipping, maritime, freight, transportation\n- trade: International trade, tariffs, exports/imports\n\nFirst reason through your thought process in the `reasoning` field.\nConsider the main subject, key terms, and context of the article.\nBe sure to verbalize any uncertainty. Then output your conclusion.",
"fields": [
{
"prefix": "Text:",
"description": "The news article text to classify"
},
{
"prefix": "Reasoning:",
"description": "Your step by step reasoning about the article's topic. Verbalize uncertainty."
},
{
"prefix": "Label:",
"description": "The topic category of the article"
}
]
},
"lm": {
"model": "together_ai/Qwen/Qwen3-VL-32B-Instruct",
"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.2",
"cloudpickle": "3.1"
}
}
}