51 lines
No EOL
1.2 KiB
Bash
51 lines
No EOL
1.2 KiB
Bash
# Database configuration
|
|
QDRANT_HOST=qdrant
|
|
QDRANT_PORT=6333
|
|
COLLECTION_NAME=ai_chron_docs_1024
|
|
|
|
# Ollama configuration
|
|
OLLAMA_HOST=0.0.0.0
|
|
OLLAMA_PORT=11434
|
|
OLLAMA_BASE_URL=http://ollama:11434
|
|
OLLAMA_NVIDIA_CAPABILITIES=compute,utility
|
|
OLLAMA_NVIDIA_VISIBLE_DEVICES=all
|
|
|
|
# Model configuration
|
|
EMBED_MODEL_NAME=mxbai-embed-large
|
|
VECTOR_SIZE=1024
|
|
LLM_MODEL_NAME=mistral-small:latest
|
|
LLM_MODEL_NAME_THINKING=deepseek-r1:14b
|
|
TEMPERATURE=0.7
|
|
|
|
# Timeouts
|
|
TIMEOUT_REQUEST_EMBED=10
|
|
TIMEOUT_REQUEST_CHAT_DIRECT=60
|
|
TIMEOUT_REQUEST_CHAT_THINKING=100
|
|
|
|
# MariaDB configuration
|
|
MYSQL_DATABASE=prompts
|
|
MYSQL_ROOT_PASSWORD=pit_pass_root
|
|
MYSQL_USER=pit_user
|
|
MYSQL_PASSWORD=pit_pass_user
|
|
|
|
# phpMyAdmin configuration
|
|
PMA_HOST=mariadb
|
|
PMA_PORT=3306
|
|
PMA_USER=pit_user
|
|
PMA_PASSWORD=pit_pass_user
|
|
|
|
# RAG service configuration
|
|
RAG_SERVICE_HOST=rag-service
|
|
RAG_SERVICE_PORT=8000
|
|
CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000,http://localhost:8000,http://real-time-chat-app:3000
|
|
|
|
# React app configuration
|
|
REACT_APP_PORT=3000
|
|
REACT_APP_API_BASE_URL=http://rag-service:8000
|
|
|
|
# Database logging configuration
|
|
DB_HOST=mariadb
|
|
DB_PORT=3306
|
|
DB_USER=pit_user
|
|
DB_PASSWORD=pit_pass_user
|
|
DB_NAME=prompts |