inputSchema
{
"type": "object",
"required": [
"topic",
"mode"
],
"properties": {
"mode": {
"enum": [
"native",
"llm",
"hybrid"
],
"type": "string"
},
"topic": {
"type": "string"
},
"platform": {
"type": "string"
},
"hot_topics": {
"type": "array"
},
"constraints": {
"type": "object"
}
}
}
outputSchema
{
"type": "object",
"required": [
"hooks",
"meta"
],
"properties": {
"meta": {
"type": "object",
"properties": {
"llm_used": {
"type": "boolean"
},
"llm_fallback": {
"type": "boolean"
}
}
},
"hooks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"origin": {
"type": "string"
}
}
}
}
}
}