Skip to content

Commit a1b8276

Browse files
committed
chore(deps): Update to LangChain4j Spring Boot 0.7.0
Signed-off-by: Thomas Vitale <[email protected]>
1 parent b529ed8 commit a1b8276

File tree

6 files changed

+30
-14
lines changed

6 files changed

+30
-14
lines changed

01-chat-models/chat-models-openai/src/main/resources/application.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ langchain4j:
77
open-ai:
88
client:
99
api-key: ${OPENAI_API_KEY}
10+
log-requests: true
1011
chat:
1112
options:
1213
model: gpt-3.5-turbo

02-prompts/prompts-basics-openai/src/main/resources/application.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ spring:
55

66
langchain4j:
77
open-ai:
8-
api-key: ${OPENAI_API_KEY}
8+
client:
9+
api-key: ${OPENAI_API_KEY}
10+
log-requests: true
911
chat:
10-
model: gpt-3.5-turbo
11-
temperature: 0.7
12+
options:
13+
model: gpt-3.5-turbo
14+
temperature: 0.7

02-prompts/prompts-messages-openai/src/main/resources/application.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ spring:
55

66
langchain4j:
77
open-ai:
8-
api-key: ${OPENAI_API_KEY}
8+
client:
9+
api-key: ${OPENAI_API_KEY}
10+
log-requests: true
911
chat:
10-
model: gpt-3.5-turbo
11-
temperature: 0.7
12+
options:
13+
model: gpt-3.5-turbo
14+
temperature: 0.7

02-prompts/prompts-templates-openai/src/main/resources/application.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ spring:
55

66
langchain4j:
77
open-ai:
8-
api-key: ${OPENAI_API_KEY}
8+
client:
9+
api-key: ${OPENAI_API_KEY}
10+
log-requests: true
911
chat:
10-
model: gpt-3.5-turbo
11-
temperature: 0.7
12+
options:
13+
model: gpt-3.5-turbo
14+
temperature: 0.7

03-output-parsers/output-parsers-bean-openai/src/main/resources/application.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ spring:
55

66
langchain4j:
77
open-ai:
8-
api-key: ${OPENAI_API_KEY}
8+
client:
9+
api-key: ${OPENAI_API_KEY}
10+
log-requests: true
911
chat:
10-
model: gpt-3.5-turbo
11-
temperature: 0.7
12+
options:
13+
model: gpt-3.5-turbo
14+
temperature: 0.7

04-embedding-models/embedding-models-openai/src/main/resources/application.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ spring:
55

66
langchain4j:
77
open-ai:
8-
api-key: ${OPENAI_API_KEY}
8+
client:
9+
api-key: ${OPENAI_API_KEY}
10+
log-requests: true
911
embedding:
10-
model: text-embedding-ada-002
12+
options:
13+
model: text-embedding-ada-002

0 commit comments

Comments
 (0)