Test / env.example.txt
Архипов Дмитрий
test
565e754
raw
history blame contribute delete
672 Bytes
# Telegram API credentials (для парсинга новостей)
TELEGRAM_API_ID=your_api_id_here
TELEGRAM_API_HASH=your_api_hash_here
# PostgreSQL Database credentials
DB_USER=your_db_user
DB_PASS=your_db_password
DB_HOST=your_db_host
DB_PORT=5432
DB_NAME=your_db_name
PATH_TO_CERT=/path/to/ssl/cert.pem
# Qdrant Vector Database
QDRANT_URL=http://localhost:6333
# LLM API Key (OpenRouter)
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Chat settings
CHAT_HISTORY_LENGTH=3 # Количество предыдущих пар (вопрос, ответ) для контекста диалога
# Backend URL (для frontend)
BACKEND_URL=http://localhost:8000