-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathenv.example
More file actions
23 lines (21 loc) · 1.18 KB
/
env.example
File metadata and controls
23 lines (21 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
GOOGLE_API_KEY=Your Google AI API key (Gemini)
# OPENAI_API_BASE_URL=Base URL for OpenAI-like API (for example, LM Studio API)
# OPENAI_API_KEY=Your OpenAI API key
# WEBUI_SD_API_URL=Stable Diffusion Web UI API URL
# WEBUI_SD_API_PARAMS= Stable Diffusion Web UI API params (JSON string)
TELEGRAM_BOT_NAME=Your Telegram bot name
TELEGRAM_BOT_TOKEN=Your Telegram bot token
TELEGRAM_BOT_USERNAME=Your telegram bot username
# TELEGRAM_ALLOWED_CHATS=Comma separated allowed chat IDs
# WEB_CONTENT_REQUEST_TIMEOUT_SECONDS=10
# MCP (Model Context Protocol) Configuration
# Enable MCP support (True, False). Default is False.
# ENABLE_MCP=False
# MCP Servers Configuration (JSON format)
# Example with stdio transport:
# MCP_SERVERS_CONFIG={"math": {"command": "python", "args": ["/path/to/math_server.py"], "transport": "stdio"}}
# Example with HTTP transport:
# MCP_SERVERS_CONFIG={"weather": {"url": "http://localhost:8000/mcp/", "transport": "streamable_http"}}
# Example with multiple servers:
# MCP_SERVERS_CONFIG={"math": {"command": "python", "args": ["/path/to/math_server.py"], "transport": "stdio"}, "weather": {"url": "http://localhost:8000/mcp/", "transport": "streamable_http"}}
# MCP_SERVERS_CONFIG={}