-
-
Notifications
You must be signed in to change notification settings - Fork 0
fix(tool_notifier): use char-safe truncation to prevent UTF-8 boundary panic #29
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
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
bb5fa90
docs: add design doc for chat history RAG, nightly summarization, and…
claude 8e823d7
docs: add implementation plan for chat history RAG, summarization, an…
claude 2343327
docs: add design doc for LLM streaming and RAG query rewriting
claude 9d03f91
docs: add implementation plan for streaming and query rewriting (Task…
claude 2db54f9
feat(memory): add is_summarized migration, conversation-scoped search…
claude 8313692
feat(rag): auto-inject semantically relevant past messages into syste…
claude edc5c21
feat(summarizer): nightly LLM-based conversation summarization via cr…
claude 4bc97cc
feat(memory): add summarizer helpers and LlmClient Clone derive
claude 92fe022
feat(tool-notifier): add ToolCallNotifier struct and ToolEvent channe…
claude 5780661
feat(telegram): add /verbose command for tool call UI, wire ToolCallN…
claude 5a7afa9
feat(telegram): add /verbose command for tool call UI, wire ToolCallN…
claude 7fa3f58
feat(query-rewriter): add rewrite_for_rag() to disambiguate follow-up…
claude 78ad176
feat(rag): wire query rewriter into auto_retrieve_context — rewrites …
claude 57a5c41
feat(llm): add chat_stream() with SSE parsing for token-by-token stre…
claude c7001e4
feat(llm): add chat_stream() with SSE parsing for token-by-token stre…
claude 3829807
feat(agent): add stream_token_tx to process_message — streams final r…
claude 59e7639
test(telegram): add test_should_split_stream_at_4000_chars for stream…
claude 78ab38d
feat(telegram): add streaming receiver task — progressively edits Tel…
claude 4d74cb1
docs: add plan for fixing Telegram streaming no-response bug
claude 8fc0ac6
test: failing test documents zero-width-space placeholder bug
claude 8754115
fix: replace zero-width-space placeholder with lazy first-send in str…
claude 8fe9d01
fix(tool-notifier): persist tool summary instead of deleting status m…
claude b71bb12
Merge remote-tracking branch 'origin/main' into claude/chat-history-r…
chinkan 1a83664
test(tool_notifier): add failing tests for multibyte UTF-8 truncation
chinkan e6dcad5
test(tool_notifier): clarify test names and comments for UTF-8 trunca…
chinkan f57f9a9
fix(tool_notifier): use char-safe truncation to prevent UTF-8 boundar…
chinkan be44a36
docs(README): document streaming, RAG, summarization, query rewriter,…
chinkan 57a52ce
refactor(utils): extract truncate_chars to shared src/utils/str.rs
chinkan 202bd21
fix(rag): replace byte-slice with truncate_chars to prevent UTF-8 panic
chinkan 8290dd6
fix(query_rewriter): replace byte-slice with truncate_chars to preven…
chinkan 4229788
refactor(utils): rename utils::str to utils::strings to avoid shadowi…
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR title/description indicate a narrow UTF-8 truncation crash fix in
tool_notifier, but this PR also introduces major new capabilities (OpenRouter streaming deps, RAG/query rewriting, nightly summarization, Telegram streaming UI, etc.). Please either update the PR metadata to match the actual scope or split these features into separate PRs to make review/risk management tractable.