Skip to content

Commit 7513560

Browse files
committed
style: fix code style error
Signed-off-by: yuluo-yx <[email protected]>
1 parent 1270821 commit 7513560

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/spring-ai-openai/src/main/java/org/springframework/ai/openai/OpenAiChatModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public ChatResponse internalCall(Prompt prompt, ChatResponse previousChatRespons
196196
return new ChatResponse(List.of());
197197
}
198198

199-
// @formatter:off
199+
// @formatter:off
200200
List<Generation> generations = choices.stream().map(choice -> {
201201
Map<String, Object> metadata = Map.of(
202202
"id", chatCompletion.id() != null ? chatCompletion.id() : "",

0 commit comments

Comments
 (0)