We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7560402 commit a9d3601Copy full SHA for a9d3601
src/main/resources/application-openai.yaml
@@ -6,7 +6,13 @@ spring:
6
embedding:
7
enabled: false
8
openai:
9
+ api-key: ${OPENAI_API_KEY:}
10
chat:
11
enabled: true
12
+ options:
13
+ model: gpt-3.5-turbo
14
+ temperature: 0.0
15
- enabled: true
16
+ enabled: true
17
18
+ model: text-embedding-3-small
src/main/resources/application.yaml
@@ -16,16 +16,10 @@ spring:
options:
model: "bge-large"
19
- api-key: ${OPENAI_API_KEY:}
20
21
22
- options:
23
- model: gpt-3.5-turbo
24
- temperature: 0.0
25
26
27
28
- model: text-embedding-3-small
29
vectorstore:
30
chroma:
31
collectionName: pdf-qa
0 commit comments