-
@PostMapping(value = "/stream/chat", produces = {MediaType.TEXT_EVENT_STREAM_VALUE})
public Flux<String> streamChat(@RequestBody @Validated ChatRequestParam chatRequestParam) {
return chatAIService.streamChatForApp(chatRequestParam);
} The api that uses skywalking cannot be used normally, and it does not respond until it times out |
Beta Was this translation helpful? Give feedback.
Answered by
wu-sheng
Apr 23, 2025
Replies: 1 comment 2 replies
-
I think we don't have tests to verify stream process. So, maybe we don't support that yet. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
499909744
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think we don't have tests to verify stream process. So, maybe we don't support that yet.