server-inference push dbpedia_easy

This commit is contained in:
2026-04-25 20:27:06 -07:00
parent 49aa4f5452
commit cd973c4734
3 changed files with 90 additions and 0 deletions

47
config.json Normal file
View File

@@ -0,0 +1,47 @@
{
"model": null,
"signature": {
"description": "Classify the Wikipedia article excerpt into the correct top-level DBpedia ontology category (L1).\nAs 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": {
"text": {
"__dspy_field_type": "input",
"desc": "Wikipedia article excerpt to classify.",
"prefix": "Text:",
"title": "Text",
"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"
},
"l1_class": {
"__dspy_field_type": "output",
"desc": "One of: Agent, Device, Event, Place, Species, SportsSeason, TopicalConcept, UnitOfWork, Work.",
"enum": [
"Agent",
"Device",
"Event",
"Place",
"Species",
"SportsSeason",
"TopicalConcept",
"UnitOfWork",
"Work"
],
"prefix": "L 1 Class:",
"title": "L1 Class",
"type": "string"
}
},
"required": [
"text",
"reasoning",
"l1_class"
],
"title": "DBPediaEasyJudgeSig",
"type": "object"
}
}