File size: 1,225 Bytes
8ffb677 cc826a1 8ffb677 cc826a1 8ffb677 9bdc593 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | {
"name": "text",
"version": "1.0.0",
"description": "文本清理工具,去除多余换行和标点符号替换",
"author": "System",
"ui_path": "/tool/text",
"requirements": [],
"enabled": true,
"category": "utility",
"capabilities": ["text_processing", "cleaning"],
"governance": {
"status": "active",
"handling_decision": "正常使用",
"dependency_risk": null
},
"ui": {
"type": "static"
},
"tools": [
{
"name": "clean_text",
"display_name": "文本清理",
"purpose": "清理文本,去除多余换行和替换标点符号",
"applies_to": ["文本预处理", "格式清理"],
"not_for": ["图片处理", "音频处理"],
"parameters": {
"text": {
"type": "string",
"required": true,
"description": "要清理的文本"
}
},
"input_examples": [
{"text": "Hello\n\n\nWorld"}
],
"output_examples": [
{"result": "Hello World"}
],
"common_errors": [
{
"code": "EMPTY_TEXT",
"message": "输入文本为空",
"solution": "请提供非空文本"
}
],
"risk_level": "low"
}
]
}
|