Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

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

## [1.0.9] - 2026-02-4
## [1.0.10] - 2026-02-04

### Type fix
- Import TypedDict from typing_extension

### Typing Fix
- import @override from typing_extension
Expand Down
5 changes: 5 additions & 0 deletions packages/uipath_langchain_client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to `uipath_langchain_client` will be documented in this file.

## [1.0.11] - 2026-02-04

### Type fix
- Import TypedDict from typing_extension

## [1.0.10] - 2026-02-04

### Version Upgrade
Expand Down
2 changes: 1 addition & 1 deletion packages/uipath_langchain_client/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"langchain>=1.2.7",
"uipath-llm-client>=1.0.9",
"uipath-llm-client>=1.0.10",
]

[project.optional-dependencies]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__title__ = "UiPath LangChain Client"
__description__ = "A Python client for interacting with UiPath's LLM services via LangChain."
__version__ = "1.0.10"
__version__ = "1.0.11"
2 changes: 1 addition & 1 deletion src/uipath_llm_client/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__titile__ = "UiPath LLM Client"
__description__ = "A Python client for interacting with UiPath's LLM services."
__version__ = "1.0.9"
__version__ = "1.0.10"
3 changes: 2 additions & 1 deletion src/uipath_llm_client/utils/retry.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"""

import logging
from typing import Any, Callable, NotRequired, TypedDict
from typing import Any, Callable, NotRequired

from httpx import AsyncHTTPTransport, HTTPTransport, Request, Response
from tenacity import (
Expand All @@ -38,6 +38,7 @@
stop_after_attempt,
wait_exponential_jitter,
)
from typing_extensions import TypedDict

from uipath_llm_client.utils.exceptions import UiPathAPIError, UiPathRateLimitError

Expand Down