Skip to content

Commit 703a61e

Browse files
committed
fix typing of request timeout
1 parent 76850e5 commit 703a61e

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

packages/uipath_langchain_client/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_langchain_client` will be documented in this file.
44

5+
## [1.2.1] - 2026-02-18
6+
7+
### Fix
8+
- fix typing of request timeout from int to float
9+
510
## [1.2.0] - 2026-02-18
611

712
### Stable release
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__title__ = "UiPath LangChain Client"
22
__description__ = "A Python client for interacting with UiPath's LLM services via LangChain."
3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1"

packages/uipath_langchain_client/src/uipath_langchain_client/base_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class UiPathBaseLLMClient(BaseModel, ABC):
9999
},
100100
description="Default request headers to include in requests",
101101
)
102-
request_timeout: int | None = Field(
102+
request_timeout: float | None = Field(
103103
alias="timeout",
104104
validation_alias=AliasChoices("timeout", "request_timeout", "default_request_timeout"),
105105
default=None,

0 commit comments

Comments
 (0)