24 lines
675 B
Plaintext
24 lines
675 B
Plaintext
# Example env file — copy to .env and fill real values (DO NOT COMMIT .env)
|
|
# Generate a secure API key: `openssl rand -hex 32` or `python -c "import secrets;print(secrets.token_urlsafe(32))"`
|
|
|
|
# Gateway
|
|
API_KEY=change-me-to-a-strong-random-value
|
|
CLIP_URL=http://clip:8000
|
|
BLIP_URL=http://blip:8000
|
|
YOLO_URL=http://yolo:8000
|
|
QDRANT_SVC_URL=http://qdrant-svc:8000
|
|
|
|
# HuggingFace token for private/gated models (optional). Leave empty if unused.
|
|
# Never commit a real token to this file.
|
|
HUGGINGFACE_TOKEN=
|
|
|
|
# Qdrant wrapper (qdrant-svc)
|
|
QDRANT_HOST=qdrant
|
|
QDRANT_PORT=6333
|
|
COLLECTION_NAME=images
|
|
VECTOR_DIM=512
|
|
|
|
# Gateway runtime
|
|
VISION_TIMEOUT=300
|
|
MAX_IMAGE_BYTES=52428800
|