first commit

This commit is contained in:
Your Name
2026-01-14 01:41:03 -08:00
commit 9d31399518
18 changed files with 2191 additions and 0 deletions

30
.env Normal file
View File

@@ -0,0 +1,30 @@
#########################
# Slack
#########################
SLACK_TOKEN=xoxb-...
SIGNING_SECRET=...
#########################
# Qdrant (Vector DB)
#########################
QDRANT_HOST=10.0.0.12
QDRANT_PORT=6333
QDRANT_COLLECTION=abot-slack
QDRANT_TIMEOUT=10
#########################
# Embeddings
#########################
EMBEDDING_MODEL=all-MiniLM-L6-v2
#########################
# Local LLM (Remote Machine)
#########################
LOCAL_LLM_ENDPOINT=http://10.0.0.20:8000/v1/chat/completions
LOCAL_LLM_MODEL=llama3
LOCAL_LLM_TIMEOUT=60
#########################
# Bot behavior
#########################
MAX_MESSAGE_LENGTH=4000