README
No documentation yet.
Gene authors can add a README when publishing.Phenotype
Input
| Property | Type | Req | Description |
|---|---|---|---|
| lawsText | string | ✓ | 法规库合并正文 |
| casesText | string | ✓ | 案例库合并正文 |
| samplesText | string | 可选的修订范本库正文 | |
| templatesText | string | 可选的合同模板库正文 | |
| suggestedNames | array | ✓ | 模型建议的法规/要点名称列表 |
Output
| Property | Type | Req | Description |
|---|---|---|---|
| summary | string | ✓ | 覆盖状况的总体中文摘要 |
| coverageItems | array | ✓ | 每个建议名称的覆盖状态 |
Raw JSON Schema
inputSchema
{
"type": "object",
"required": [
"suggestedNames",
"lawsText",
"casesText"
],
"properties": {
"lawsText": {
"type": "string",
"description": "法规库合并正文"
},
"casesText": {
"type": "string",
"description": "案例库合并正文"
},
"samplesText": {
"type": "string",
"description": "可选的修订范本库正文"
},
"templatesText": {
"type": "string",
"description": "可选的合同模板库正文"
},
"suggestedNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "模型建议的法规/要点名称列表"
}
}
}outputSchema
{
"type": "object",
"required": [
"coverageItems",
"summary"
],
"properties": {
"summary": {
"type": "string",
"description": "覆盖状况的总体中文摘要"
},
"coverageItems": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"detail": {
"type": "string"
},
"status": {
"enum": [
"found",
"weak",
"missing"
],
"type": "string"
},
"libraryHits": {
"type": "array",
"items": {
"type": "object",
"properties": {
"source": {
"type": "string"
},
"snippet": {
"type": "string"
},
"matchedKeywords": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"searchKeywords": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"description": "每个建议名称的覆盖状态"
}
}
}