评审专家 agent

This commit is contained in:
liam
2026-02-10 10:54:09 +00:00
parent 8df9aa369c
commit 3564b5eb57
7 changed files with 2875 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# 运行说明(本地工作流)
本仓库提供两种用法:
## 用法 A直接作为“提示词/Agent”使用推荐
1. 打开 `agents/论文逻辑结构评审专家/AGENT.md`
2. 将其中内容作为系统/角色提示
3. 指定输入论文文件(例如 `我的论文/飞机稿_20260130.docx`
4. 要求输出写入 `评审输出/<论文名>/` 并按编号生成 00~04 文件
## 用法 B先把 PDF/DOCX 提取成可读文本(当工具不能直接读 PDF/DOCX 时)
运行:
```bash
python scripts/extract_paper_text.py \
--benchmark "标杆论文.pdf" \
--paper "我的论文/飞机稿_20260130.docx" \
--out "评审输出/飞机稿_20260130/raw"
```
生成:
- `评审输出/.../raw/benchmark.txt`
- `评审输出/.../raw/paper.txt`
然后让 Agent 基于上述 txt 文件继续完成 00~04 输出。