Skip to content

Commit ab3b243

Browse files
authored
Change model to gemma3 (#77)
* Fix typo in env * Change model to gemma3
1 parent 72f84eb commit ab3b243

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
api:
55
build: ./server
66
environment:
7-
- MODEL=ollama/gemma3n
7+
- MODEL=ollama/gemma3:12b
88
- API_BASE=http://host.docker.internal:11434
99
- PB_URL=http://pb:8080
1010
ports:

mobile/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
EXPO_PUBLIC_API_URL=http://h46.finsterwiese.de:8000
2-
EXPO_PUBLIC_PB_URL=http:/h46.finsterwiese.de:8090
2+
EXPO_PUBLIC_PB_URL=http://h46.finsterwiese.de:8090

ollama.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM ollama/ollama:0.9.4
2-
ARG MODELS="gemma3n nomic-embed-text"
2+
ARG MODELS="gemma3:12b nomic-embed-text"
33
ENV OLLAMA_KEEP_ALIVE=24h
44
RUN ollama serve & server=$! ; sleep 5 ; for m in $MODELS ; do ollama pull $m ; done ; kill $server

server/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
MODEL=ollama/gemma3n
1+
MODEL=ollama/gemma3
22
API_BASE=http://localhost:11434
33
PB_URL=http://localhost:8090

0 commit comments

Comments
 (0)