We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 171b758 commit 1b216abCopy full SHA for 1b216ab
spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/deepseek-chat.adoc
@@ -201,7 +201,7 @@ public class ChatController {
201
}
202
203
@GetMapping("/ai/generateStream")
204
- public Flux<ChatResponse> generateStream(@RequestParam(value = "message", defaultValue = "Tell me a joke") String message) {
+ public Flux<ChatResponse> generateStream(@RequestParam(value = "message", defaultValue = "Tell me a joke") String message) {
205
Prompt prompt = new Prompt(new UserMessage(message));
206
return this.chatModel.stream(prompt);
207
0 commit comments