File tree Expand file tree Collapse file tree
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.0.6]
6+
7+ ### Bug Fix
8+ - Fixed model discovery on AgentHub Settings.
9+
510## [ 1.0.5] - 2026-02-03
611
712### Refactor
Original file line number Diff line number Diff line change 11__titile__ = "UiPath LLM Client"
22__description__ = "A Python client for interacting with UiPath's LLM services."
3- __version__ = "1.0.5 "
3+ __version__ = "1.0.6 "
Original file line number Diff line number Diff line change @@ -48,8 +48,10 @@ class AgentHubBaseSettings(UiPathBaseSettings):
4848 client_secret : SecretStr | None = Field (default = None , validation_alias = "UIPATH_CLIENT_SECRET" )
4949 client_scope : str | None = Field (default = None , validation_alias = "UIPATH_CLIENT_SCOPE" )
5050
51+ # AgentHub configuration (used for discovery)
52+ agenthub_config : str = Field (default = "agentsruntime" , validation_alias = "UIPATH_AGENTHUB_CONFIG" )
53+
5154 # Tracing configuration
52- agenthub_config : str | None = Field (default = None , validation_alias = "UIPATH_AGENTHUB_CONFIG" )
5355 process_key : str | None = Field (default = None , validation_alias = "UIPATH_PROCESS_KEY" )
5456 job_key : str | None = Field (default = None , validation_alias = "UIPATH_JOB_KEY" )
5557
You can’t perform that action at this time.
0 commit comments