30 lines
613 B
Markdown
30 lines
613 B
Markdown
# Agent Paper Browser
|
|
|
|
本地论文知识库网页,直接读取仓库里的 `data/index.json` 和 `papers/items/*.md`。
|
|
|
|
## Run
|
|
|
|
```bash
|
|
python3 web/app.py --host 0.0.0.0 --port 18080
|
|
```
|
|
|
|
默认 Ollama 地址:
|
|
|
|
```bash
|
|
OLLAMA_URL=http://192.168.1.10:11434
|
|
```
|
|
|
|
访问地址:
|
|
|
|
```text
|
|
http://100.114.68.27:18080
|
|
```
|
|
|
|
## AI Policy
|
|
|
|
- 默认摘要模型:`ChatGPT-5.6:fast`
|
|
- 默认翻译模型:`ChatGPT-5.6:light`
|
|
- 深度分析模型:`ChatGPT-5.6:large`,只在前端手动选择时使用
|
|
- Ollama 请求单并发执行,并缓存结果到 `web/cache/ai/`
|
|
- arXiv 摘要缓存到 `web/cache/arxiv/`
|