Fix initial prompt#111
Merged
Merged
Conversation
Add debug-gated [ChatPersist] logging across the chat prompt persistence path (session resolve, user/assistant prompt staging, pre-commit staged count, and post-commit persisted count) plus committer/scope identity in StoreCommitterHubFilter to help diagnose the admin chat prompt-persistence issue on other environments. Enable Debug logging for the chat hubs and store committer filter in the MVC and Blazor development settings. Make the Aspire AppHost skip Ollama GPU support on macOS, where Docker Desktop cannot pass through a host GPU, so the host can boot locally. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Streaming hub methods (SendMessage) return a ChannelReader synchronously and run their persistence work in a fire-and-forget background task that commits the shared, non-thread-safe YesSql session itself. The StoreCommitterHubFilter also committed that same session immediately after the method returned, racing the still-running background task and dropping the staged prompt writes on fast providers (e.g. Azure), while the session document persisted separately. The filter now detects streaming results (ChannelReader<T> / IAsyncEnumerable<T>) and skips its own commit, since those methods self-commit. Adds hub-filter tests covering non-streaming, null, ChannelReader, and IAsyncEnumerable results. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
No description provided.