inputSchema
{
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"description": "待分æžçš„é’©åæ–‡æœ¬"
},
"locale": {
"type": "string",
"default": "zh-CN"
},
"targetCategories": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
outputSchema
{
"type": "object",
"required": [
"detectedHooks",
"overallScore",
"suggestions"
],
"properties": {
"suggestions": {
"type": "array",
"items": {
"type": "string"
}
},
"overallScore": {
"type": "number",
"maximum": 100,
"minimum": 0
},
"detectedHooks": {
"type": "array"
}
}
}