55 lines
1.2 KiB
Bash
55 lines
1.2 KiB
Bash
# ============================================
|
|
# TELEGRAM BOT CONFIGURATION
|
|
# ============================================
|
|
|
|
# Telegram Bot Token
|
|
# Get it from BotFather: https://t.me/botfather
|
|
BOT_TOKEN=your_bot_token_here
|
|
|
|
# Creator ID
|
|
# Your Telegram user ID - the bot will recognize you as creator
|
|
# To get your ID: send /id command to the bot and use the "from id" value
|
|
CREATOR_ID=your_user_id_here
|
|
|
|
# ============================================
|
|
# BOT SETTINGS (Optional)
|
|
# ============================================
|
|
|
|
# Bot Prefix for commands
|
|
BOT_PREFIX=
|
|
|
|
# Whitelist of chat IDs (comma-separated)
|
|
# Example: 123456789,987654321
|
|
CHAT_IDS_WHITELIST=
|
|
|
|
# Test environment mode
|
|
TEST_ENVIRONMENT=false
|
|
|
|
# Only creator can use bot
|
|
ONLY_FOR_CREATOR_MODE=false
|
|
|
|
# Use user names in AI prompts
|
|
USE_NAMES_IN_PROMPT=true
|
|
|
|
# Maximum photo size in pixels
|
|
MAX_PHOTO_SIZE=1280
|
|
|
|
# ============================================
|
|
# AI MODELS CONFIGURATION (Optional)
|
|
# ============================================
|
|
|
|
# Google Gemini
|
|
GEMINI_API_KEY=
|
|
GEMINI_MODEL=gemini-2.5-flash
|
|
|
|
# Mistral AI
|
|
MISTRAL_API_KEY=
|
|
MISTRAL_MODEL=mistral-small-latest
|
|
|
|
# Ollama (Local AI Model)
|
|
OLLAMA_ADDRESS=
|
|
OLLAMA_MODEL=
|
|
OLLAMA_API_KEY=
|
|
|
|
# Custom system prompt for AI
|
|
SYSTEM_PROMPT= |