本仓库为远程超声诊断平台的统一代码仓库,包含前端、后端、AI质控模块以及专网实时通信中间件。 采用 Monorepo 结构管理,方便统一版本控制,支持针对不同医院/客户进行定制化开发。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

40 lines
1.9 KiB

--- Testing Age Context Fix ---
DEBUG: Running Rule Engine...
DEBUG: Fetching RAG Context...
DEBUG: Performing similarity search...
DEBUG: Similarity search finished.
DEBUG: Starting LLM Analysis...
DEBUG: Invoking LLM (glm-4-flash)...
DEBUG: LLM (glm-4-flash) response received in 9.09s.
DEBUG: Total QC processing time: 12.14s.
### 超声报告质控分析报告
#### 🤖 AI 智能深度分析:
【扣分理由】
1. **描述专业性错误**:报告中未提供肝脏大小的具体数值,如cm或mm,导致无法准确评估肝脏大小。
2. **临床相关性不足**:报告中未提及肝脏形态的具体描述,如是否规则、是否有结节等,影响临床判断。
【输出格式】
```json
{
"score": 40,
"issues": [
{
"original": "肝脏大小、形态正常,表面光整。",
"reason": "未提供肝脏大小的具体数值",
"suggestion": "应提供肝脏大小的具体数值,如cm或mm",
"type": "描述专业性不足"
},
{
"original": "肝脏大小、形态正常,表面光整。",
"reason": "未提及肝脏形态的具体描述",
"suggestion": "应提供肝脏形态的具体描述,如是否规则、是否有结节等",
"type": "临床相关性不足"
}
],
"corrected_fields": {
"肝脏大小": "应提供具体数值",
"肝脏形态": "应提供具体描述"
}
}
```