feat: emit conversation metadata events - #1843
Open
radu-mocanu wants to merge 1 commit into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds support in the uipath CLI Socket.IO chat bridge to emit exchange-scoped metadata events (separate from assistant message events), enabling conversational runtimes to persist workspace metadata independently.
Changes:
- Add
SocketIOChatBridge.emit_meta_event()and refactor repeated “connected client required” checks into_require_client(). - Add a unit test asserting the emitted Socket.IO payload shape for exchange-scoped
metaEvent. - Bump
uipathpackage version and update dependency pins touipath-runtime>=0.13.0,<0.14.0(plus regenerated lockfile).
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| packages/uipath/src/uipath/_cli/_chat/_bridge.py | Adds _require_client() helper and introduces emit_meta_event() for exchange-scoped metadata emission. |
| packages/uipath/tests/cli/chat/test_bridge.py | Adds coverage for the new emit_meta_event() payload. |
| packages/uipath/pyproject.toml | Bumps uipath version and updates uipath-runtime dependency range. |
| packages/uipath/uv.lock | Regenerates lockfile for updated versions and dependency constraints. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
radu-mocanu
force-pushed
the
feat/conversation-meta-events-bridge
branch
from
August 4, 2026 12:17
dd99643 to
ab55a36
Compare
radu-mocanu
force-pushed
the
feat/conversation-meta-events-bridge
branch
from
August 4, 2026 12:38
ab55a36 to
60671a8
Compare
|
🚨 Heads up:
|
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.



Summary
Why
conversational workspace state needs to be persisted without buffering or rewriting assistant message events.