File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
java/ch/xxx/aidoclibchat/adapter/repository Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 3
3
// Hover to view descriptions of existing attributes.
4
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
5
"version" : " 0.2.0" ,
6
- "configurations" : [
6
+ "configurations" : [
7
7
{
8
8
"name" : " Launch Java: Continuous Mode" ,
9
9
"type" : " jdk" ,
10
10
"request" : " launch" ,
11
- "launchConfiguration" : " Continuous Mode"
11
+ "launchConfiguration" : " Continuous Mode" ,
12
+ },
13
+ {
14
+ "name" : " Launch Java" ,
15
+ "type" : " jdk" ,
16
+ "request" : " launch" ,
17
+ "mainClass" : " ch.xxx.aidoclibchat.AidocumentlibrarychatApplication" ,
18
+ "vmArgs" : " -Dspring.profiles.active=ollama" ,
12
19
}
13
20
]
14
21
}
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ private static class DocumentRowMapper implements RowMapper<Document> {
113
113
114
114
private static final String COLUMN_CONTENT = "content" ;
115
115
116
- private ObjectMapper objectMapper ;
116
+ private final ObjectMapper objectMapper ;
117
117
118
118
public DocumentRowMapper (ObjectMapper objectMapper ) {
119
119
this .objectMapper = objectMapper ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ spring.ai.embedding.transformer.tokenizer.uri=https://huggingface.co/mixedbread-
28
28
29
29
# image processing
30
30
# best model for vision currently
31
- spring.ai.ollama.chat.options.model =llama3.2-vision:11b
31
+ spring.ai.ollama.chat.options.model =llama3.2-vision
32
32
# spring.ai.ollama.chat.options.num-thread=8
33
33
# spring.ai.ollama.chat.options.keep_alive=1s
34
34
You can’t perform that action at this time.
0 commit comments