-
Notifications
You must be signed in to change notification settings - Fork 705
Expand file tree
/
Copy path.env.example
More file actions
156 lines (130 loc) · 3.34 KB
/
.env.example
File metadata and controls
156 lines (130 loc) · 3.34 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
ENV=local
DEBUG=true
# Domain, is required when deployed, leave them empty in local dev
APP_DOMAIN=
# Email for Let's Encrypt Cert
TLS_EMAIL=
# Basic Auth for the web UI (leave empty to disable)
BASIC_AUTH_USER=
BASIC_AUTH_PASSWORD=
# Base URLs
AWS_S3_CDN_URL=https://${APP_DOMAIN}/static
APP_BASE_URL=https://${APP_DOMAIN}
# LLM Providers, at least one is required
OPENROUTER_API_KEY=
OPENAI_API_KEY=
DEEPSEEK_API_KEY=
XAI_API_KEY=
GOOGLE_API_KEY=
GOOGLE_GENAI_USE_VERTEXAI=false
#GOOGLE_CLOUD_PROJECT=
MINIMAX_API_KEY=
# OpenAI Compatible Provider
OPENAI_COMPATIBLE_API_KEY=
OPENAI_COMPATIBLE_PROVIDER=
OPENAI_COMPATIBLE_BASE_URL=
OPENAI_COMPATIBLE_MODEL=
OPENAI_COMPATIBLE_MODEL_LITE=
# Anthropic Compatible Provider
ANTHROPIC_COMPATIBLE_API_KEY=
ANTHROPIC_COMPATIBLE_PROVIDER=
ANTHROPIC_COMPATIBLE_BASE_URL=
ANTHROPIC_COMPATIBLE_MODEL=
ANTHROPIC_COMPATIBLE_MODEL_LITE=
# LLM Config
#SYSTEM_PROMPT=
#INTENTKIT_PROMPT=
# PostgreSQL Database
# If use db in compose file, leave all empty
DB_HOST=
DB_PORT=
DB_USERNAME=
DB_PASSWORD=
DB_NAME=
DB_AUTO_MIGRATE=true
# Redis
#REDIS_HOST="127.0.0.1"
# AWS S3
# If deploying on AWS, you don't need to configure anything in this section.
# If using third-party object storage, all fields must be configured.
# If using rustfs in Docker Compose, you only need to expose and configure the AWS_S3_CDN_URL.
AWS_S3_BUCKET=
AWS_S3_ENDPOINT_URL=
AWS_S3_REGION_NAME=
AWS_S3_ACCESS_KEY_ID=
AWS_S3_SECRET_ACCESS_KEY=
# Supabase Auth
#SUPABASE_JWT_SIGNING_KEY=
#SUPABASE_JWKS_URL=
#SUPABASE_URL=
#SUPABASE_SERVICE_ROLE_KEY=
# Wechat Channel
WECHAT_SYSTEM_PROMPT=
# Telegram Channel
TG_SYSTEM_PROMPT=
TG_NEW_AGENT_POLL_INTERVAL=
# XMTP Channel
#XMTP_SYSTEM_PROMPT=
# Twitter
TWITTER_OAUTH2_CLIENT_ID=
TWITTER_OAUTH2_CLIENT_SECRET=
TWITTER_OAUTH2_REDIRECT_URI=http://localhost:8000/callback/auth/twitter
# Hourly Budget Control
# Optional: Maximum base LLM cost per user per hour (in USD).
# When set, users exceeding this limit will receive a rate limit message.
# Leave empty to disable hourly budget control.
#PAYMENT_ENABLED=false
HOURLY_BUDGET=
# Skills
# Cloudflare Browser Rendering (for read_webpage system skill)
CLOUDFLARE_ACCOUNT_ID=
CLOUDFLARE_API_TOKEN=
# Z.AI API (for read_webpage_zai and search_web_zai system skills)
ZAI_PLAN_API_KEY=
# Skill API Keys
TAVILY_API_KEY=
FIRECRAWL_API_KEY=
# Sentry
#SENTRY_DSN=
# Alert
#TG_ALERT_BOT_TOKEN=
#TG_ALERT_CHAT_ID=
SLACK_ALERT_TOKEN=
SLACK_ALERT_CHANNEL=
# ------------- Web3 part -------------
# Coinbase Server Wallet
# Get these from https://portal.cdp.coinbase.com
CDP_API_KEY_ID=
CDP_API_KEY_SECRET=
CDP_WALLET_SECRET=
# Privy Wallet & Privy Login
PRIVY_APP_ID=
PRIVY_APP_SECRET=
PRIVY_AUTHORIZATION_KEYS=
# Privy + Safe Wallet
SAFE_API_KEY=
# Master Wallet for Gas Sponsorship
# This wallet pays for Safe deployments and configuration transactions.
# The master wallet only pays gas - it does NOT have control over deployed Safes.
# Generate a new EOA and fund it with native tokens (ETH/etc) on your target chains.
MASTER_WALLET_PRIVATE_KEY=
# RPC Provider, choose one
QUICKNODE_API_KEY=
INFURA_API_KEY=
# Web3 Skills
ALLORA_API_KEY=
DAPPLOOKER_API_KEY=
UNREALSPEECH_API_KEY=
AIXBT_API_KEY=
MORALIS_API_KEY=
COOKIEFUN_API_KEY=
COINGECKO_API_KEY=
ELFA_API_KEY=
HEURIST_API_KEY=
ENSO_API_TOKEN=
CRYPTOPANIC_API_KEY=
DUNE_API_KEY=
CRYPTOCOMPARE_API_KEY=
VENICE_API_KEY=
CARV_API_KEY=
OPENSEA_API_KEY=