27 lines
596 B
Bash
27 lines
596 B
Bash
# ============================================
|
|
# TELEGRAM BOT CONFIGURATION
|
|
# ============================================
|
|
|
|
# Telegram Bot Token (Required)
|
|
# Get it from BotFather: https://t.me/botfather
|
|
BOT_TOKEN=your_bot_token_here
|
|
|
|
# Creator ID (Required)
|
|
# Your Telegram user ID - the bot will recognize you as creator
|
|
CREATOR_ID=your_user_id_here
|
|
|
|
# ============================================
|
|
# OPTIONAL: AI MODELS
|
|
# ============================================
|
|
|
|
# Google Gemini
|
|
GEMINI_API_KEY=
|
|
|
|
# Mistral AI
|
|
MISTRAL_API_KEY=
|
|
|
|
# Ollama (Local)
|
|
OLLAMA_ADDRESS=
|
|
OLLAMA_MODEL=
|
|
SYSTEM_PROMPT=
|