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
2 changes: 1 addition & 1 deletion .github/workflows/publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
python-version-file: ".python-version"

- name: Install dependencies
run: uv sync --dev --all-extras
run: uv sync --dev --all-extras --locked

- name: Set development versions and update PR
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ byo_embeddings = UiPathAzureOpenAIEmbeddings(
# Clone and install with dev dependencies
git clone https://github.com/UiPath/uipath-llm-client.git
cd uipath-llm-client
uv sync --dev
uv sync

# Run tests
uv run pytest
Expand Down
7 changes: 6 additions & 1 deletion packages/uipath_langchain_client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@

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

## [1.0.3] - 2026-02-02

### Bug Fix
- Added better dependencies for langchain-anthropic to include boto and vertex

## [1.0.2] - 2026-02-02

### Buf Fix
### Bug Fix
- Removed old fix on Gemini streaming and updated with a new cleaner one

## [1.0.1] - 2026-02-02
Expand Down
5 changes: 3 additions & 2 deletions 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.2",
"uipath-llm-client>=1.0.3",
]

[project.optional-dependencies]
Expand All @@ -20,6 +20,7 @@ google = [
"langchain-google-genai>=4.2.0",
]
anthropic = [
"anthropic[bedrock,vertex]>=0.77.0",
"langchain-anthropic>=1.3.1",
]
azure = [
Expand All @@ -40,4 +41,4 @@ build-backend = "hatchling.build"
packages = ["src/uipath_langchain_client"]

[tool.hatch.version]
path = "src/uipath_langchain_client/__version__.py"
path = "src/uipath_langchain_client/__version__.py"
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.2"
__version__ = "1.0.3"
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ packages = ["src/uipath_llm_client"]
[tool.hatch.version]
path = "src/uipath_llm_client/__version__.py"

[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true

[tool.ruff]
line-length = 100
target-version = "py313"
Expand Down
25 changes: 19 additions & 6 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.