File size: 672 Bytes
565e754
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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