* 📝 doc(db): add database schema changes for chat_id - update the schema to enforce unique constraints on chat_id - added onConflictDoUpdate to handle duplicate entries * 🔧 chore(telegram-bot): Rename embedding dimension variable
19 lines
339 B
Bash
19 lines
339 B
Bash
DATABASE_URL=postgres://postgres:123456@localhost:5432/postgres
|
|
TELEGRAM_BOT_TOKEN=''
|
|
|
|
LLM_API_BASE_URL=''
|
|
LLM_API_KEY=''
|
|
LLM_MODEL=''
|
|
LLM_RESPONSE_LANGUAGE=''
|
|
|
|
LLM_VISION_API_BASE_URL=''
|
|
LLM_VISION_API_KEY=''
|
|
LLM_VISION_MODEL=''
|
|
|
|
EMBEDDING_API_BASE_URL=''
|
|
EMBEDDING_API_KEY=''
|
|
EMBEDDING_MODEL=''
|
|
EMBEDDING_DIMENSION=''
|
|
|
|
ADMIN_USER_IDS=''
|