Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ LLM_MODEL_NAME=qwen-plus
# 每月免费额度即可支撑简单使用:https://app.getzep.com/
ZEP_API_KEY=your_zep_api_key_here

# ===== RAGflow图谱配置(可替代Zep,本地部署无免费额度限制)=====
# 设置 GRAPH_BACKEND=ragflow 后,ZEP_API_KEY 不再需要
# GRAPH_BACKEND=ragflow
# RAGFLOW_BASE_URL=http://localhost
# RAGFLOW_API_KEY=your-ragflow-api-key
# RAGFLOW_LLM_ID= # 可选,留空使用RAGflow系统默认
# RAGFLOW_EMBEDDING_MODEL= # 可选,留空使用RAGflow系统默认

# ===== 加速 LLM 配置(可选)=====
# 注意如果不使用加速配置,env文件中就不要出现下面的配置项
LLM_BOOST_API_KEY=your_api_key_here
Expand Down
5 changes: 5 additions & 0 deletions README-EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,11 @@ LLM_MODEL_NAME=qwen-plus
# Zep Cloud Configuration
# Free monthly quota is sufficient for simple usage: https://app.getzep.com/
ZEP_API_KEY=your_zep_api_key
# Graph backend choice (pick one, defaults to Zep)
# To use RAGflow instead, set GRAPH_BACKEND=ragflow; ZEP_API_KEY is then not required
# GRAPH_BACKEND=ragflow
# RAGFLOW_BASE_URL=http://localhost
# RAGFLOW_API_KEY=your-ragflow-api-key
```

#### 2. Install Dependencies
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,11 @@ LLM_MODEL_NAME=qwen-plus
# Zep Cloud 配置
# 每月免费额度即可支撑简单使用:https://app.getzep.com/
ZEP_API_KEY=your_zep_api_key
# 图谱后端选择(二选一,默认 Zep)
# 如使用 RAGflow,将 GRAPH_BACKEND 设为 ragflow,不再需要 ZEP_API_KEY
# GRAPH_BACKEND=ragflow
# RAGFLOW_BASE_URL=http://localhost
# RAGFLOW_API_KEY=your-ragflow-api-key
```

#### 2. 安装依赖
Expand Down
Loading