Skip to content
Merged
Changes from 1 commit
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: 5 additions & 1 deletion src/uipath/runtime/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
from functools import cached_property
from pathlib import Path
from typing import Any
from typing import Any, Literal

from pydantic import BaseModel, ConfigDict, Field
from uipath.core.errors import UiPathFaultedTriggerError
Expand Down Expand Up @@ -37,6 +37,9 @@ class UiPathRuntimeContext(BaseModel):
)
exchange_id: str | None = Field(None, description="Exchange identifier for CAS")
message_id: str | None = Field(None, description="Message identifier for CAS")
voice_mode: Literal["config", "toolCall"] | None = Field(
None, description="Voice job type for CAS"
)
mcp_server_id: str | None = None
mcp_server_slug: str | None = None
tenant_id: str | None = None
Expand Down Expand Up @@ -363,6 +366,7 @@ def from_config(
"conversationalService.messageId": "message_id",
"mcpServer.id": "mcp_server_id",
"mcpServer.slug": "mcp_server_slug",
"voice.mode": "voice_mode",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

increment patch version, update uv.lock

}

attributes_set = set()
Expand Down