Skip to content

Commit f6a5c11

Browse files
author
RobuRishabh
committed
qwen added
1 parent 2eb3da0 commit f6a5c11

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ EXPOSE 8501
2222
# ENV OLLAMA_URL=http://localhost:11434
2323
ENV OLLAMA_URL=http://10.0.0.210:11434
2424
# ENV OLLAMA_URL=http://host.docker.internal:11434
25-
ENV OLLAMA_MODEL=llama2:latest
25+
ENV OLLAMA_MODEL=qwen2.5-coder:3b
2626

2727

2828
# Command to run the Streamlit app

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ The project uses a local Ollama server for language processing.
6969

7070
#### Pull the Model:
7171
```bash
72-
ollama pull llama2:latest
72+
ollama pull qwen2.5-coder:3b
7373
```
74-
This downloads the `llama2:latest` model (default for this project).
74+
This downloads the `qwen2.5-coder:3b` model (default for this project).
7575

7676
#### Run the Ollama Server:
7777
```bash

deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ spec:
2121
- name: OLLAMA_URL
2222
value: "http://ollama-service:11434"
2323
- name: OLLAMA_MODEL
24-
value: "llama2:latest"
24+
value: "qwen2.5-coder:3b"

ollama-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ spec:
1818
ports:
1919
- containerPort: 11434
2020
command: ["/bin/sh", "-c"]
21-
args: ["ollama serve & sleep 5 && ollama pull llama2:latest && tail -f /dev/null"]
21+
args: ["ollama serve & sleep 5 && ollama pull qwen2.5-coder:3b && tail -f /dev/null"]

0 commit comments

Comments
 (0)