Skip to content

Commit 1b216ab

Browse files
robbyzhaoxilayaperumalg
authored andcommitted
Fix code indent for the sample code in deepseek-chat.adoc
Signed-off-by: Robby Zhao <[email protected]>
1 parent 171b758 commit 1b216ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/deepseek-chat.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public class ChatController {
201201
}
202202
203203
@GetMapping("/ai/generateStream")
204-
public Flux<ChatResponse> generateStream(@RequestParam(value = "message", defaultValue = "Tell me a joke") String message) {
204+
public Flux<ChatResponse> generateStream(@RequestParam(value = "message", defaultValue = "Tell me a joke") String message) {
205205
Prompt prompt = new Prompt(new UserMessage(message));
206206
return this.chatModel.stream(prompt);
207207
}

0 commit comments

Comments
 (0)