-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
62 lines (58 loc) · 2.04 KB
/
Copy path.env.example
File metadata and controls
62 lines (58 loc) · 2.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# AI Roundtable is still an internal alpha / pre-release.
# Mock mode does not call any external API and does not require API keys.
AI_ROUNDTABLE_MODE=mock
# Optional Tavily web search for Web Evidence Pack.
# Keep the real key only in .env.local. Do not commit it.
# When configured, the server asks a selected model to plan search terms,
# runs a small set of Tavily searches, keeps the stronger evidence items, and
# shares the same evidence pack with every participant model.
TAVILY_API_KEY=
# Optional tuning:
# TAVILY_MAX_RESULTS=20
# TAVILY_SEARCH_DEPTH=basic
# TAVILY_TOPIC=general
# Real mode uses OpenAI-compatible providers configured on the server.
# Copy this file to .env.local before adding real API keys.
# Never put real API keys in .env.example.
#
# If a provider is fully configured but GET {BASE_URL}/models is not compatible
# or times out, AI Roundtable may still try to call it as configured_unverified.
# That status means "检测失败 / 未验证", not "已连接".
# Recommended single-file OpenAI-compatible provider configuration:
#
# AI_ROUNDTABLE_MODE=real
# Put every model in one JSON env value. Vertical multi-line JSON is supported.
# AI_ROUNDTABLE_PROVIDERS_JSON='[
# {
# "id": "deepseek",
# "name": "DeepSeek Flash",
# "baseUrl": "https://api.deepseek.com",
# "apiKey": "your-api-key",
# "model": "deepseek-v4-flash",
# "capabilities": ["documents"]
# },
# {
# "id": "kimi",
# "name": "Kimi K2.6",
# "baseUrl": "https://api.moonshot.cn/v1",
# "apiKey": "your-api-key",
# "model": "kimi-k2.6"
# }
# ]'
#
# Legacy per-provider env variables and providers.local.json are still
# supported, but one vertical AI_ROUNDTABLE_PROVIDERS_JSON block is the simplest
# option for local use.
# Legacy compatibility is still supported for now:
#
# OPENAI_API_KEY=
# OPENAI_BASE_URL=https://api.openai.com/v1
# OPENAI_MODEL=
#
# DEEPSEEK_API_KEY=
# DEEPSEEK_BASE_URL=https://api.deepseek.com
# DEEPSEEK_MODEL=
#
# QWEN_API_KEY=
# QWEN_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1
# QWEN_MODEL=