We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Today when using
import dev.langchain4j.model.chat.response.StreamingChatResponseHandler; import dev.langchain4j.service.MemoryId; import dev.langchain4j.service.SystemMessage; import dev.langchain4j.service.UserMessage; public interface Agent { @SystemMessage(""" <message> """) String chat(@MemoryId String memoryId, @UserMessage String message, StreamingChatResponseHandler handler); }
the StreamingChatResponseHandler is not used / bound
StreamingChatResponseHandler
cf: https://docs.langchain4j.dev/tutorials/response-streaming
The text was updated successfully, but these errors were encountered:
Currently you can leverage streaming by returning Multi<String> from an AiService
Multi<String>
Sorry, something went wrong.
Yes ! I wanted to use the OnToolCall handler in order to provide nice responsive UI telling the user, what is happening :)
No branches or pull requests
Today when using
the
StreamingChatResponseHandler
is not used / boundcf: https://docs.langchain4j.dev/tutorials/response-streaming
The text was updated successfully, but these errors were encountered: