File tree Expand file tree Collapse file tree
packages/uipath_langchain_client
src/uipath_langchain_client Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All notable changes to ` uipath_llm_client ` (core package) will be documented in this file.
44
5+ ## [ 1.5.3] - 2026-03-18
6+
7+ ### Fix
8+ - Factory function fix
9+
510## [ 1.5.2] - 2026-03-18
611
712### Fix
Original file line number Diff line number Diff line change 22
33All notable changes to ` uipath_langchain_client ` will be documented in this file.
44
5+ ## [ 1.5.3] - 2026-03-18
6+
7+ ### Fix
8+ - Factory function fix
9+
510## [ 1.5.2] - 2026-03-18
611
712### Fix
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ readme = "README.md"
66requires-python = " >=3.11"
77dependencies = [
88 " langchain>=1.2.12" ,
9- " uipath-llm-client>=1.5.2 " ,
9+ " uipath-llm-client>=1.5.3 " ,
1010]
1111
1212[project .optional-dependencies ]
Original file line number Diff line number Diff line change 11__title__ = "UiPath LangChain Client"
22__description__ = "A Python client for interacting with UiPath's LLM services via LangChain."
3- __version__ = "1.5.2 "
3+ __version__ = "1.5.3 "
Original file line number Diff line number Diff line change @@ -120,8 +120,10 @@ def get_chat_model(
120120 byo_connection_id = byo_connection_id ,
121121 vendor_type = vendor_type ,
122122 )
123+ model_family = model_info .get ("modelFamily" , None )
124+ if model_family is not None :
125+ model_family = model_family .lower ()
123126 is_uipath_owned = model_info .get ("modelSubscriptionType" ) == "UiPathOwned"
124- model_family = model_info .get ("modelFamily" , "" ).lower ()
125127 if not is_uipath_owned :
126128 client_settings .validate_byo_model (model_info )
127129
Original file line number Diff line number Diff line change 11__title__ = "UiPath LLM Client"
22__description__ = "A Python client for interacting with UiPath's LLM services."
3- __version__ = "1.5.2 "
3+ __version__ = "1.5.3 "
You can’t perform that action at this time.
0 commit comments