docs: update document

This commit is contained in:
Wenjie Zhang 2025-08-01 16:59:03 +08:00
parent 3960db2d5b
commit 67f3af3257
2 changed files with 6 additions and 1 deletions

View File

@ -14,8 +14,12 @@
🐛**BUGs**
- [x] 智能体的工具切换有问题
- [ ] 知识图谱可视化页面的效果有点问题
- [ ] 处理失败的文件,在特定情况下会一直处于 processing 状态,且无法删除
# 💯 More:
下面的功能会放在后续版本实现,暂时未定
💯 More:
- [ ] 封装现有工具为 mcpstdio调用
- [ ] 支持额外 mcp 配置(代码端)
- [ ] 添加用户日志与用户反馈模块,可以在 AgentView 中查看信息(🌟🌟)

View File

@ -238,6 +238,7 @@ class OCRPlugin:
text = self.process_image(img_path)
all_text.append(text)
logger.debug(f"PDF OCR result: {all_text[:50]}(...) total {len(all_text)} pages.")
return '\n\n'.join(all_text)
except Exception as e: