26 lines
587 B
Bash
26 lines
587 B
Bash
# ============= DeepRes Configuration =============
|
|
|
|
# Telegram Bot Token (от @BotFather)
|
|
TELEGRAM_TOKEN=
|
|
|
|
# PostgreSQL
|
|
DATABASE_URL=postgres://deepres:deepres@localhost:5432/deepres?sslmode=disable
|
|
|
|
# NATS
|
|
NATS_URL=nats://localhost:4222
|
|
|
|
# SearXNG
|
|
SEARXNG_URL=http://localhost:4000
|
|
|
|
# OpenRouter AI (для синтеза)
|
|
OPENROUTER_API_KEY=
|
|
LLM_MODEL=deepseek/deepseek-v4-flash
|
|
|
|
# Embeddings (E5-small HTTP-сервер, например https://github.com/emil/embed-server)
|
|
EMBED_URL=http://localhost:8081
|
|
|
|
# Цены в Telegram Stars
|
|
FAST_COST=1
|
|
DEEP_COST=5
|
|
FREE_FAST_PER_DAY=3
|