-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (39 loc) · 1.44 KB
/
.env.example
File metadata and controls
45 lines (39 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# ============================================
# Wangwang-Agent 环境变量配置模板
# ============================================
# 使用方法:
# 1. 复制此文件为 .env:cp .env.example .env
# 2. 在 .env 中填入你的真实 API 密钥
# 3. .env 文件已被 .gitignore 忽略,不会上传到 Git
# ============================================
# ---------------------------
# DeepSeek 模型 API 密钥
# ---------------------------
# 获取地址: https://platform.deepseek.com/
# 用于所有 Agent 的大模型调用
DEEPSEEK_API_KEY=your_deepseek_api_key_here
# ---------------------------
# 高德地图 API 密钥
# ---------------------------
# 获取地址: https://console.amap.com/
# 用于 AMAP Agent 的地理服务
AMAP_KEY=your_amap_api_key_here
# ---------------------------
# Tavily 搜索 API 密钥
# ---------------------------
# 获取地址: https://tavily.com/
# 用于 Web Search Agent 的网络搜索
TAVILY_API_KEY=your_tavily_api_key_here
# ---------------------------
# DashScope Embedding API 密钥 (阿里云)
# ---------------------------
# 获取地址: https://dashscope.console.aliyun.com/
# 用于 RAG Agent 的文本向量化
DASHSCOPE_API_KEY=your_dashscope_api_key_here
# ---------------------------
# 其他可选配置
# ---------------------------
# 数据库路径(可选,默认使用项目内路径)
# DATABASE_PATH=./professional_memory.db
# 日志级别(可选,默认 INFO)
# LOG_LEVEL=INFO