Skip to content

Commit a868b88

Browse files
committed
feat: add function model
1 parent 0d95b82 commit a868b88

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

backend/src/main/resources/application-ollama.properties

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ spring.liquibase.change-log=classpath:/dbchangelog/db.changelog-master-ollama.xm
1111

1212
# document processing
1313
# config free production use
14-
#spring.ai.ollama.chat.model=qwen2.5:32b
15-
spring.ai.ollama.chat.model=deepseek-r1:14b
14+
spring.ai.ollama.chat.model=qwen2.5:32b
15+
#spring.ai.ollama.chat.model=deepseek-r1:14b
1616
#spring.ai.ollama.chat.model=llama3.1:8b
1717
spring.ai.ollama.chat.options.num-ctx=12288
1818
spring.ai.embedding.transformer.onnx.modelUri=https://huggingface.co/mixedbread-ai/mxbai-embed-large-v1/resolve/main/onnx/model_quantized.onnx
@@ -21,6 +21,8 @@ spring.ai.embedding.transformer.tokenizer.uri=https://huggingface.co/mixedbread-
2121
# function calling
2222
#spring.ai.ollama.chat.model=llama3.1:8b
2323
#spring.ai.ollama.chat.options.num-ctx=65535
24+
#spring.ai.ollama.chat.model=qwen2.5:14b
25+
#spring.ai.ollama.chat.options.num-ctx=40960
2426

2527
# image processing
2628
#spring.ai.ollama.chat.model=llama3.2-vision:11b

runOllama.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama
33
docker start ollama
44
docker stop ollama
55
#docker exec -it ollama ollama run orca2:13b
6-
docker exec -it ollama ollama run stable-beluga:13bc
6+
docker exec -it ollama ollama run stable-beluga:13b
77
#docker exec -it ollama ollama run falcon:40b
88
#docker exec -it ollama ollama run sqlcoder:15b
99
#docker exec -it ollama ollama run mixtral:8x7b-text-v0.1-q6_K
@@ -14,4 +14,5 @@ docker exec -it ollama ollama run stable-beluga:13bc
1414
#docker exec -it ollama ollama run qwen2.5:32b
1515
#docker exec -it ollama ollama run codestral:22b
1616
#docker exec -it ollama ollama run llama3.1:8b
17+
#docker exec -it ollama ollama run qwen2.5:14b
1718
#docker exec -it ollama bash

0 commit comments

Comments
 (0)