-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
65 lines (55 loc) · 2.17 KB
/
.env.example
File metadata and controls
65 lines (55 loc) · 2.17 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
63
64
65
# ── Required ────────────────────────────────────────────────────────────────
# OpenAI-compatible LLM endpoint
OPENAI_API_KEY=
OPENAI_BASE_URL=https://api.openai.com
OPENAI_MODEL=gpt-5.4
OPENAI_COMPLETIONS_PATH=/v1/chat/completions
OPENAI_TEMPERATURE=0.7
# ── Optional ────────────────────────────────────────────────────────────────
# Auxiliary model for summaries/compression. Blank values reuse the main model endpoint where supported.
AUXILIARY_MODEL=
AUXILIARY_BASE_URL=
AUXILIARY_API_KEY=
AUXILIARY_COMPLETIONS_PATH=
AUXILIARY_TEMPERATURE=0.3
AUXILIARY_MAX_TOKENS=1000
AUXILIARY_WEB_SUMMARY_MAX_TOKENS=2000
# Service port
HUSKY_PORT=18088
# Data directory for SQLite, MCP config, skills, logs, and runtime state
HUSKY_DATA_DIR=~/.husky
# Auth — comma-separated API keys for the Chatbot HTTP API
# Replace this before exposing Husky beyond local development.
AUTH_ENABLED=true
HUSKY_API_KEYS=change-me-generate-a-random-key
# TUI WebSocket allowed browser origins
# Runtime default is * for local development only. Public deployments should set a trusted origin.
# TUI_WS_ALLOWED_ORIGINS=https://your-domain.example
# Shared outbound HTTP proxy config
PROXY_ENABLED=true
HUSKY_PROXY_URL=
NO_PROXY=localhost,127.0.0.1
PROXY_ENV_ENABLED=true
PROXY_DETECT_SYSTEM=false
# Web search backend (auto/brave/tavily/none)
WEB_BACKEND=auto
BRAVE_SEARCH_API_KEY=
TAVILY_API_KEY=
WEB_PROXY_ENABLED=
WEB_PROXY_URL=
WEB_NO_PROXY=
# Optional tool integrations. Enable only when configured intentionally.
BROWSER_ENABLED=false
MCP_ENABLED=false
MCP_CONFIG_PATH=~/.husky/config/mcp-servers.json
# SkillHub community skill search
SKILLHUB_API_KEY=
# Feishu channel example. Disabled by default.
FEISHU_ASSISTANT_ENABLED=false
FEISHU_ASSISTANT_TRANSPORT=websocket
FEISHU_ASSISTANT_APP_ID=
FEISHU_ASSISTANT_APP_SECRET=
FEISHU_ASSISTANT_VERIFICATION_TOKEN=
FEISHU_ASSISTANT_ENCRYPT_KEY=
FEISHU_ASSISTANT_BOT_OPEN_ID=
FEISHU_ASSISTANT_MENTION_REQUIRED_IN_GROUP=true