requestLLMStreaming
Sends a message to a Large Language Model (LLM) and streams the LLM response. The message becomes part of the current prompt, and the LLM's response is streamed as it's generated.
Return
A flow of StreamFrame objects from the LLM response.
Parameters
The content of the message to be sent to the LLM.
Optional structure to guide the LLM response.
Sends a request to the Language Learning Model (LLM) for streaming data.
Return
A Publisher that emits StreamFrame objects representing the streamed response from the LLM.
Parameters
The message or query to be sent to the LLM for processing.
An optional parameter specifying the structured data definition for parsing or validating the response.
An optional executor service to be used for managing coroutine execution. Defaults to null, which will use the default executor service.