From 04c89e8f9d168041979619c0d92554c3d0f529db Mon Sep 17 00:00:00 2001 From: Gheorghita Hurmuz Date: Thu, 10 Apr 2025 11:15:25 +0300 Subject: [PATCH] chore: fix docs for langchain --- .github/workflows/build.yml | 3 ++- mkdocs.yml | 11 ++++++----- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b490c0a8..30e83378 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,9 +56,10 @@ jobs: if: ${{ steps.check_version.outputs.modified }} == 'true' run: | mkdir -p docs/plugins - ln -s ../../plugins/uipath-langchain-python/docs docs/plugins/uipath-langchain-python + ln -s ../../plugins/uipath-langchain-python docs/plugins/uipath-langchain-python - name: Publish Docs if: ${{ steps.check_version.outputs.modified }} == 'true' run: | + ls -la docs uv run mkdocs gh-deploy --force diff --git a/mkdocs.yml b/mkdocs.yml index c5373369..50591cf8 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -36,11 +36,12 @@ theme: nav: - Home: index.md - Langchain: - - Intro: plugins/uipath-langchain-python/index.md - - Chat models: plugins/uipath-langchain-python/chat_models.md - - Context Grounding Chain: plugins/uipath-langchain-python/context_grounding_chain.md - - Context Grounding Retriever: plugins/uipath-langchain-python/context_grounding_retriever.md - - Interrupt models: plugins/uipath-langchain-python/interrupt_models.md + - plugins/uipath-langchain-python/Readme.md + - Chat models: plugins/uipath-langchain-python/docs/chat_models.md + - Context Grounding Chain: plugins/uipath-langchain-python/docs/context_grounding_chain.md + - Context Grounding Retriever: plugins/uipath-langchain-python/docs/context_grounding_retriever.md + - Interrupt models: plugins/uipath-langchain-python/docs/interrupt_models.md + - Actions: actions.md - Assets: assets.md - Buckets: buckets.md - Connections: connections.md diff --git a/pyproject.toml b/pyproject.toml index 6bab0c0e..3024967d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath" -version = "2.0.4.dev2" +version = "2.0.4.dev3" description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools." readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.10"