Skip to content

Commit 3b2edd1

Browse files
cosminachoclaude
andcommitted
Rename UiPathChat._llm_type from "UiPath-Normalized" to "uipath-chat"
Aligns with the lowercase-hyphenated convention used by `openai-chat`, `azure-openai-chat`, `anthropic-chat`, etc. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 025ee8c commit 3b2edd1

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

packages/uipath_langchain_client/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ All notable changes to `uipath_langchain_client` will be documented in this file
77
### Added
88
- `UiPathChat` (normalized) now implements `_identifying_params` (returning `model_name` + `_default_params`) to match the `BaseChatOpenAI` convention, giving traced/cached runs a proper identity key instead of the empty default from `BaseChatModel`.
99

10+
### Changed
11+
- `UiPathChat._llm_type` now returns `"uipath-chat"` (was `"UiPath-Normalized"`) to align with the lowercase-hyphenated convention used by `openai-chat`, `azure-openai-chat`, etc.
12+
1013
### Changed
1114
- Bumped dependency floors to the latest installed versions: `langchain-openai>=1.1.16`.
1215
- Minimum `uipath-llm-client` bumped to 1.9.6 to match the core dependency-floor release.

packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/chat_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class UiPathChat(UiPathBaseChatModel):
204204
@property
205205
def _llm_type(self) -> str:
206206
"""Return type of chat model."""
207-
return "UiPath-Normalized"
207+
return "uipath-chat"
208208

209209
@property
210210
def _identifying_params(self) -> dict[str, Any]:

0 commit comments

Comments
 (0)