Skip to content

Commit 18788aa

Browse files
authored
typeddict fix (#15)
1 parent 6ddcba5 commit 18788aa

6 files changed

Lines changed: 14 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
All notable changes to `uipath_llm_client` (core package) will be documented in this file.
44

5-
## [1.0.9] - 2026-02-4
5+
## [1.0.10] - 2026-02-04
6+
7+
### Type fix
8+
- Import TypedDict from typing_extension
69

710
### Typing Fix
811
- import @override from typing_extension

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.0.11] - 2026-02-04
6+
7+
### Type fix
8+
- Import TypedDict from typing_extension
9+
510
## [1.0.10] - 2026-02-04
611

712
### Version Upgrade

packages/uipath_langchain_client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
requires-python = ">=3.11"
77
dependencies = [
88
"langchain>=1.2.7",
9-
"uipath-llm-client>=1.0.9",
9+
"uipath-llm-client>=1.0.10",
1010
]
1111

1212
[project.optional-dependencies]
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.0.10"
3+
__version__ = "1.0.11"
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.9"
3+
__version__ = "1.0.10"

src/uipath_llm_client/utils/retry.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"""
2828

2929
import logging
30-
from typing import Any, Callable, NotRequired, TypedDict
30+
from typing import Any, Callable, NotRequired
3131

3232
from httpx import AsyncHTTPTransport, HTTPTransport, Request, Response
3333
from tenacity import (
@@ -38,6 +38,7 @@
3838
stop_after_attempt,
3939
wait_exponential_jitter,
4040
)
41+
from typing_extensions import TypedDict
4142

4243
from uipath_llm_client.utils.exceptions import UiPathAPIError, UiPathRateLimitError
4344

0 commit comments

Comments
 (0)