Open
Conversation
bce7fcd to
6b4ffb6
Compare
NeonDaniel
commented
Mar 18, 2026
Member
Author
NeonDaniel
left a comment
There was a problem hiding this comment.
Not working; I just have a continuous "Orchestrator is thinking" message when I run this locally
NeonDaniel
commented
Mar 19, 2026
Comment on lines
+78
to
+84
| already = ( | ||
| session.messages | ||
| and session.messages[-1].get("role") == "user" | ||
| and session.messages[-1].get("content") == message.user_input | ||
| ) | ||
| if not already: | ||
| session.append_message("user", message.user_input) |
Member
Author
There was a problem hiding this comment.
variable name is unclear here. Also, if this is only used for the conditional, then this doesn't need to be defined as a variable
Add /chat-stream SSE endpoint that sends advisor responses incrementally as they complete. Rewrite ChatPage handleSendMessage to consume SSE events. Add synthesize_responses method to orchestrator for aggregate mode support. Made-with: Cursor
bb54916 to
8a766e3
Compare
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.
Description
Implements a
chat-streamendpoint for SSE-streamed responsesRefactors front-end to use the streaming endpoint for chat rendering
Issues
Other Notes