We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19546f7 commit 90ec2b5Copy full SHA for 90ec2b5
docker-compose.yml
@@ -4,12 +4,12 @@ services:
4
ports:
5
- "8000:8000"
6
environment:
7
- - LLM_API_BASE=http://host.docker.internal:8080/v1
8
- - LLM_MODEL=Qwen2.5-Coder-3B-Instruct-Q5_K_M
9
- - LLM_EMBED_MODEL=local-embed
10
- - LLM_EMBED_SIZE=768
11
- - LLM_API_KEY=
12
- - SKIP_VECTOR_SEARCH=true
+ - LLM_API_BASE=${LLM_API_BASE:-http://host.docker.internal:8080/v1}
+ - LLM_MODEL=${LLM_MODEL:-Qwen2.5-Coder-3B-Instruct-Q5_K_M}
+ - LLM_EMBED_MODEL=${LLM_EMBED_MODEL:-nomic-embed}
+ - LLM_EMBED_SIZE=${LLM_EMBED_SIZE:-768}
+ - LLM_API_KEY=${LLM_API_KEY:-ABCD1234}
+ - SKIP_VECTOR_SEARCH=${SKIP_VECTOR_SEARCH:-true}
13
- QDRANT_HOST=qdrant
14
- QDRANT_PORT=6333
15
command: uvicorn app.main:app --host 0.0.0.0 --port 8000
0 commit comments