From 810665cda0bab5207f6456cea7a29c96d23e8fa9 Mon Sep 17 00:00:00 2001 From: Norman Le Date: Thu, 5 Feb 2026 16:08:07 -0500 Subject: [PATCH] feat: add name property to CAS content part --- pyproject.toml | 2 +- src/uipath/core/chat/content.py | 1 + uv.lock | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5315f3a..b6834a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath-core" -version = "0.2.3" +version = "0.2.4" description = "UiPath Core abstractions" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11" diff --git a/src/uipath/core/chat/content.py b/src/uipath/core/chat/content.py index e1c599f..32ac78c 100644 --- a/src/uipath/core/chat/content.py +++ b/src/uipath/core/chat/content.py @@ -87,5 +87,6 @@ class UiPathConversationContentPart(BaseModel): citations: list[UiPathConversationCitation] | None = None is_transcript: bool | None = Field(None, alias="isTranscript") is_incomplete: bool | None = Field(None, alias="isIncomplete") + name: str | None = None model_config = ConfigDict(validate_by_name=True, validate_by_alias=True) diff --git a/uv.lock b/uv.lock index f6c6ff6..c5aa483 100644 --- a/uv.lock +++ b/uv.lock @@ -991,7 +991,7 @@ wheels = [ [[package]] name = "uipath-core" -version = "0.2.3" +version = "0.2.4" source = { editable = "." } dependencies = [ { name = "opentelemetry-instrumentation" },