server-inference push customer_support_tickets_en

This commit is contained in:
2026-04-25 21:30:17 -07:00
parent e6989d8eb5
commit d4bb70a57e
3 changed files with 132 additions and 0 deletions

81
config.json Normal file
View File

@@ -0,0 +1,81 @@
{
"model": null,
"signature": {
"description": "Classify an English support ticket into both issue type and queue. As you reason, note any uncertainties, ambiguities, and gaps \u2014 both in how the instructions apply to the task at hand and in whether you have the knowledge needed to solve it. Be honest in your reasoning when you are unsure about your answer.",
"properties": {
"subject": {
"__dspy_field_type": "input",
"desc": "Support ticket subject.",
"prefix": "Subject:",
"title": "Subject",
"type": "string"
},
"body": {
"__dspy_field_type": "input",
"desc": "Support ticket body content.",
"prefix": "Body:",
"title": "Body",
"type": "string"
},
"reasoning": {
"__dspy_field_type": "output",
"desc": "Step-by-step reasoning, including uncertainty, ambiguity, or uncertainty in your thought process when relevant.",
"prefix": "Reasoning:",
"title": "Reasoning",
"type": "string"
},
"type": {
"__dspy_field_type": "output",
"desc": "One of: Change, Incident, Problem, Request, (null).",
"enum": [
"Change",
"Incident",
"Problem",
"Request",
"(null)"
],
"prefix": "Type:",
"title": "Type",
"type": "string"
},
"queue": {
"__dspy_field_type": "output",
"desc": "One of: Arts & Entertainment/Movies, Arts & Entertainment/Music, Autos & Vehicles/Maintenance, Autos & Vehicles/Sales, Beauty & Fitness/Cosmetics, Beauty & Fitness/Fitness Training, Billing and Payments, Books & Literature/Fiction, Books & Literature/Non-Fiction, Business & Industrial/Manufacturing, Customer Service, Finance/Investments, Finance/Personal Finance, Food & Drink/Groceries, Food & Drink/Restaurants, Games, General Inquiry, Health/Medical Services, Health/Mental Health, Hobbies & Leisure/Collectibles.",
"enum": [
"Arts & Entertainment/Movies",
"Arts & Entertainment/Music",
"Autos & Vehicles/Maintenance",
"Autos & Vehicles/Sales",
"Beauty & Fitness/Cosmetics",
"Beauty & Fitness/Fitness Training",
"Billing and Payments",
"Books & Literature/Fiction",
"Books & Literature/Non-Fiction",
"Business & Industrial/Manufacturing",
"Customer Service",
"Finance/Investments",
"Finance/Personal Finance",
"Food & Drink/Groceries",
"Food & Drink/Restaurants",
"Games",
"General Inquiry",
"Health/Medical Services",
"Health/Mental Health",
"Hobbies & Leisure/Collectibles"
],
"prefix": "Queue:",
"title": "Queue",
"type": "string"
}
},
"required": [
"subject",
"body",
"reasoning",
"type",
"queue"
],
"title": "TobiSupportTypeJudgeSig",
"type": "object"
}
}