Skip to content
New issue

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

fix regex in smoothStream() #5475

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Conversation

carlbrugger
Copy link

@carlbrugger carlbrugger commented Apr 1, 2025

The word-based regex pattern /\s*\S+\s+/m requires trailing whitespace after each word. The last text-delta won't have a trailing space causing the last word in the last text-delta to not be returned until after any tool calls the model may make. The proposed solution is to match words even if they don't have trailing whitespace.

Resolves #5493

The word-based regex pattern (/\s*\S+\s+/m) requires trailing whitespace after each word. The last text-delta won't have a trailing space causing the last word in the last text-delta to not be returned until after any tool calls the model may make.
@lgrammel
Copy link
Collaborator

lgrammel commented Apr 2, 2025

I have doubts re the replacement regexp. Won't it match way to much, causing half-finished words to be streamed out?

Instead I'll look into flushing the buffer when there is a tool call, which should cover all cases.

@carlbrugger
Copy link
Author

@lgrammel I've changed the implementation to flush the buffer when the chunk type changes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

smoothStream() doesn't properly recognized words
2 participants