Add :sse_middleware option to allow custom SSE middleware for streaming#119
Merged
Conversation
nvelasco
force-pushed
the
nvelasco/add-sse-middleware-option
branch
from
June 30, 2026 13:33
6d28060 to
09b1f47
Compare
sonic182
requested changes
Jul 1, 2026
dmoralesl
approved these changes
Jul 1, 2026
sonic182
approved these changes
Jul 1, 2026
Contributor
Author
|
I'm going to recreate the PR |
Member
|
if something doesn't work, just restart (close and reopen pr) 😄 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Tesla.Middleware.SSE assumes each HTTP chunk is a complete, parseable SSE message. Some LLM providers occasionally send partial chunks (e.g. a bare {) as the first HTTP frame of a streaming response, causing it to crash with:
Change
Introduces a :sse_middleware option on LlmComposer.Settings that allows consumers to inject a custom SSE middleware instead of the default Tesla.Middleware.SSE. The value is forwarded through ProvidersRunner to HttpClient where the middleware stack is assembled.
Default behaviour is preserved — if :sse_middleware is not set, Tesla.Middleware.SSE is used as before.
Usage