Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[project]
name = "uipath"
version = "2.2.21"
version = "2.2.22"
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
dependencies = [
"uipath-runtime>=0.2.0, <0.3.0",
"uipath-runtime>=0.2.2, <0.3.0",
"click>=8.3.1",
"httpx>=0.28.1",
"pyjwt>=2.10.1",
Expand All @@ -15,9 +15,9 @@ dependencies = [
"rich>=14.2.0",
"truststore>=0.10.1",
"mockito>=1.5.4",
"hydra-core>=1.3.2",
"pydantic-function-models>=0.1.11",
"pysignalr==1.3.0",
"python-socketio>=5.15.0, <6.0.0",
"coverage>=7.8.2",
"mermaid-builder==0.0.3",
]
Expand Down
279 changes: 279 additions & 0 deletions src/uipath/_cli/_chat/_protocol.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,279 @@
"""Chat bridge implementations for conversational agents."""

import asyncio
import logging
import os
from typing import Any
from urllib.parse import urlparse

import socketio # type: ignore[import-untyped]
from socketio import AsyncClient
from uipath.core.chat import (
UiPathConversationEvent,
UiPathConversationExchangeEndEvent,
UiPathConversationExchangeEvent,
)
from uipath.runtime.chat import UiPathChatProtocol
from uipath.runtime.context import UiPathRuntimeContext

logger = logging.getLogger(__name__)


class WebSocketChatBridge:
"""WebSocket-based chat bridge for streaming conversational events to CAS.

Implements UiPathChatBridgeProtocol using python-socketio library.
"""

def __init__(
self,
websocket_url: str,
conversation_id: str,
exchange_id: str,
headers: dict[str, str],
auth: dict[str, Any] | None = None,
):
"""Initialize the WebSocket chat bridge.

Args:
websocket_url: The WebSocket server URL to connect to
conversation_id: The conversation ID for this session
exchange_id: The exchange ID for this session
headers: HTTP headers to send during connection
auth: Optional authentication data to send during connection
"""
self.websocket_url = websocket_url
self.conversation_id = conversation_id
self.exchange_id = exchange_id
self.auth = auth
self.headers = headers
self._client: AsyncClient | None = None
self._connected_event = asyncio.Event()

async def connect(self, timeout: float = 10.0) -> None:
"""Establish WebSocket connection to the server.

Args:
timeout: Connection timeout in seconds (default: 10.0)

Raises:
RuntimeError: If connection fails or times out

Example:
```python
manager = WebSocketManager("http://localhost:3000")
await manager.connect()
```
"""
if self._client is not None:
logger.warning("WebSocket client already connected")
return

# Create new SocketIO client
self._client = socketio.AsyncClient(
logger=logger,
engineio_logger=logger,
)

# Register connection event handlers
self._client.on("connect", self._handle_connect)
self._client.on("disconnect", self._handle_disconnect)
self._client.on("connect_error", self._handle_connect_error)

# Clear connection event
self._connected_event.clear()

try:
# Attempt to connect with timeout
logger.info(f"Connecting to WebSocket server: {self.websocket_url}")

await asyncio.wait_for(
self._client.connect(
url=self.websocket_url,
headers=self.headers,
auth=self.auth,
transports=["websocket"],
),
timeout=timeout,
)

# Wait for connection confirmation
await asyncio.wait_for(self._connected_event.wait(), timeout=timeout)

logger.info("WebSocket connection established successfully")

except asyncio.TimeoutError as e:
error_message = (
f"Failed to connect to WebSocket server within {timeout}s timeout"
)
logger.error(error_message)
await self._cleanup_client()
raise RuntimeError(error_message) from e

except Exception as e:
error_message = f"Failed to connect to WebSocket server: {e}"
logger.error(error_message)
await self._cleanup_client()
raise RuntimeError(error_message) from e

async def disconnect(self) -> None:
"""Close the WebSocket connection gracefully.

Sends an exchange end event before disconnecting to signal that the
exchange is complete. Uses stored conversation/exchange IDs.
"""
if self._client is None:
logger.warning("WebSocket client not connected")
return

# Send exchange end event using stored IDs
if self._client and self._connected_event.is_set():
try:
end_event = UiPathConversationEvent(
conversation_id=self.conversation_id,
exchange=UiPathConversationExchangeEvent(
exchange_id=self.exchange_id,
end=UiPathConversationExchangeEndEvent(),
),
)
event_data = end_event.model_dump(
mode="json", exclude_none=True, by_alias=True
)
await self._client.emit("ConversationEvent", event_data)
logger.info("Exchange end event sent")
except Exception as e:
logger.warning(f"Error sending exchange end event: {e}")

try:
logger.info("Disconnecting from WebSocket server")
await self._client.disconnect()
logger.info("WebSocket disconnected successfully")
except Exception as e:
logger.error(f"Error during WebSocket disconnect: {e}")
finally:
await self._cleanup_client()

async def emit_message_event(self, message_event: Any) -> None:
"""Wrap and send a message event to the WebSocket server.

Args:
message_event: UiPathConversationMessageEvent to wrap and send

Raises:
RuntimeError: If client is not connected
"""
if self._client is None:
raise RuntimeError("WebSocket client not connected. Call connect() first.")

if not self._connected_event.is_set():
raise RuntimeError("WebSocket client not in connected state")

try:
# Wrap message event with conversation/exchange IDs
wrapped_event = UiPathConversationEvent(
conversation_id=self.conversation_id,
exchange=UiPathConversationExchangeEvent(
exchange_id=self.exchange_id,
message=message_event,
),
)

event_data = wrapped_event.model_dump(
mode="json", exclude_none=True, by_alias=True
)

logger.debug("Sending conversation event to WebSocket")
await self._client.emit("ConversationEvent", event_data)
logger.debug("Conversation event sent successfully")

except Exception as e:
logger.error(f"Error sending conversation event to WebSocket: {e}")
raise RuntimeError(f"Failed to send conversation event: {e}") from e

@property
def is_connected(self) -> bool:
"""Check if the WebSocket is currently connected.

Returns:
True if connected, False otherwise
"""
return self._client is not None and self._connected_event.is_set()

async def _handle_connect(self) -> None:
"""Handle successful connection event."""
logger.info("WebSocket connection established")
self._connected_event.set()

async def _handle_disconnect(self) -> None:
"""Handle disconnection event."""
logger.info("WebSocket connection closed")
self._connected_event.clear()

async def _handle_connect_error(self, data: Any) -> None:
"""Handle connection error event."""
logger.error(f"WebSocket connection error: {data}")

async def _cleanup_client(self) -> None:
"""Clean up client resources."""
self._connected_event.clear()
self._client = None


def get_chat_bridge(
context: UiPathRuntimeContext,
conversation_id: str,
exchange_id: str,
) -> UiPathChatProtocol:
"""Factory to get WebSocket chat bridge for conversational agents.

Args:
context: The runtime context containing environment configuration
conversation_id: The conversation ID for this session
exchange_id: The exchange ID for this session

Returns:
WebSocketChatBridge instance configured for CAS

Raises:
RuntimeError: If UIPATH_URL is not set or invalid

Example:
```python
bridge = get_chat_bridge(context, "conv-123", "exch-456")
await bridge.connect()
await bridge.emit_message_event(message_event)
await bridge.disconnect(conversation_id, exchange_id)
```
"""
# Extract host from UIPATH_URL
base_url = os.environ.get("UIPATH_URL")
if not base_url:
raise RuntimeError(
"UIPATH_URL environment variable required for conversational mode"
)

parsed = urlparse(base_url)
if not parsed.netloc:
raise RuntimeError(f"Invalid UIPATH_URL format: {base_url}")

host = parsed.netloc

# Construct WebSocket URL for CAS
websocket_url = f"wss://{host}/autopilotforeveryone_/websocket_/socket.io?conversationId={conversation_id}"

# Build headers from context
headers = {
"Authorization": f"Bearer {os.environ.get('UIPATH_ACCESS_TOKEN', '')}",
"X-UiPath-Internal-TenantId": context.tenant_id
or os.environ.get("UIPATH_TENANT_ID", ""),
"X-UiPath-Internal-AccountId": context.org_id
or os.environ.get("UIPATH_ORGANIZATION_ID", ""),
"X-UiPath-ConversationId": conversation_id,
}

return WebSocketChatBridge(
websocket_url=websocket_url,
conversation_id=conversation_id,
exchange_id=exchange_id,
headers=headers,
)
1 change: 1 addition & 0 deletions src/uipath/_cli/cli_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ async def execute() -> None:
runtime = await factory.new_runtime(
entrypoint, ctx.job_id or "default"
)

if ctx.job_id:
trace_manager.add_span_exporter(LlmOpsHttpExporter())
ctx.result = await execute_runtime(ctx, runtime)
Expand Down
Loading