Skip to content

Commit 6526c75

Browse files
committed
fixes
1 parent c7c2341 commit 6526c75

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All 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
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
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"

src/uipath_llm_client/settings/agenthub/settings.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)