linebot_pydantic_fastapi / .env.example
mickeywu520's picture
something update...
4514838
raw
history blame contribute delete
595 Bytes
# LINE Bot 設定
LINE_CHANNEL_ACCESS_TOKEN=your_line_channel_access_token_here
LINE_CHANNEL_SECRET=your_line_channel_secret_here
# PostgreSQL 資料庫設定
DB_HOST=your_database_host_here
DB_PORT=6543
DB_NAME=your_database_name_here
DB_USER=your_database_user_here
DB_PASSWORD=your_database_password_here
# OpenRouter 設定 (可選,用於進階 NLP)
OPENROUTER_API_KEY=your_openrouter_api_key_here
OPENROUTER_MODEL=anthropic/claude-3-haiku
# Groq 設定 (主要 AI 服務,推薦)
GROQ_API_KEY=your_groq_api_key_here
GROQ_MODEL=qwen/qwen3-32b
# 其他設定
DEBUG=False
LOG_LEVEL=INFO