Files
essay/agents/论文逻辑结构评审专家/运行说明.md
2026-02-10 10:54:09 +00:00

26 lines
843 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 运行说明(本地工作流)
本仓库提供两种用法:
## 用法 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 输出。