https://github.com/remaker01/rag-academic-assistant
基于RAG的学术文献问答系统
https://github.com/remaker01/rag-academic-assistant
Last synced: 2 months ago
JSON representation
基于RAG的学术文献问答系统
- Host: GitHub
- URL: https://github.com/remaker01/rag-academic-assistant
- Owner: Remaker01
- License: mit
- Created: 2026-04-20T08:55:15.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-21T08:38:39.000Z (2 months ago)
- Last Synced: 2026-04-24T00:29:43.019Z (2 months ago)
- Language: Python
- Size: 29.3 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 基于RAG的学术文献智能问答助手
先申请deepseek api key,创建.env文件
```ini
DEEPSEEK_BASE_URL=https://api.deepseek.com/v1
EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
VECTOR_STORE_PATH=./data/vector_store
DEEPSEEK_API_KEY=your_api_key
```
再运行`pip install -r requirements.txt`安装依赖
最后运行`main.py`启动客户端界面,或`run_api.py`运行后端服务。