21 lines
734 B
INI
21 lines
734 B
INI
# Private-LLM Configuration
|
|
# =========================
|
|
|
|
# API Key für eingehende Requests (Gateway authentifiziert sich damit)
|
|
# Muss mit Connector_AiPrivateLlm_API_SECRET in Gateway env-Files übereinstimmen
|
|
# Key generieren: python -c "import secrets; print(secrets.token_urlsafe(32))"
|
|
PRIVATE_LLM_API_KEY = jL4vyNfh_tv4rxoRaHKW88sVWNHbj32GsxuKE2A8bf0
|
|
|
|
# Ollama Server URL
|
|
OLLAMA_URL = http://localhost:11434
|
|
|
|
# Web UI Authentication (optional, für direkten Browser-Zugriff)
|
|
AUTH_USERNAME = poweron
|
|
AUTH_PASSWORD = poweron
|
|
|
|
# FastAPI Secret Key (für Session-Management)
|
|
SECRET_KEY = c8bc1cede035171dedf01f220623e185aa8b83670ef607e97d928d271ac94200
|
|
|
|
# Rate Limiting
|
|
RATE_LIMIT_REQUESTS_PER_MINUTE = 60
|
|
RATE_LIMIT_BURST_SIZE = 10
|