Skip to content

Commit b84c8db

Browse files
Correct required (#4547)
Signed-off-by: Tran Ngoc Nhan <[email protected]>
1 parent 6189d79 commit b84c8db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

models/spring-ai-google-genai/src/test/java/org/springframework/ai/google/genai/tool/GoogleGenAiPaymentTransactionIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void paymentStatuses() {
7777
.toolNames("paymentStatus")
7878
.user("""
7979
What is the status of my payment transactions 001, 002 and 003?
80-
If requred invoke the function per transaction.
80+
If required invoke the function per transaction.
8181
""").call().content();
8282
// @formatter:on
8383
logger.info("" + content);
@@ -94,7 +94,7 @@ public void streamingPaymentStatuses() {
9494
.toolNames("paymentStatus")
9595
.user("""
9696
What is the status of my payment transactions 001, 002 and 003?
97-
If requred invoke the function per transaction.
97+
If required invoke the function per transaction.
9898
""")
9999
.stream()
100100
.content();

models/spring-ai-vertex-ai-gemini/src/test/java/org/springframework/ai/vertexai/gemini/tool/VertexAiGeminiPaymentTransactionIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void paymentStatuses() {
7777
.toolNames("paymentStatus")
7878
.user("""
7979
What is the status of my payment transactions 001, 002 and 003?
80-
If requred invoke the function per transaction.
80+
If required invoke the function per transaction.
8181
""").call().content();
8282
// @formatter:on
8383
logger.info("" + content);
@@ -94,7 +94,7 @@ public void streamingPaymentStatuses() {
9494
.toolNames("paymentStatus")
9595
.user("""
9696
What is the status of my payment transactions 001, 002 and 003?
97-
If requred invoke the function per transaction.
97+
If required invoke the function per transaction.
9898
""")
9999
.stream()
100100
.content();

0 commit comments

Comments
 (0)