{"id":28954393,"url":"https://github.com/uipath/uipath-langchain-python","last_synced_at":"2025-09-07T02:05:02.235Z","repository":{"id":287711603,"uuid":"961735998","full_name":"UiPath/uipath-langchain-python","owner":"UiPath","description":"A comprehensive Langchain Python SDK for interacting with UiPath's Automation Platform","archived":false,"fork":false,"pushed_at":"2025-08-29T14:37:51.000Z","size":6166,"stargazers_count":24,"open_issues_count":14,"forks_count":17,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-08-31T10:42:43.201Z","etag":null,"topics":["langchain","langgraph","python","uipath"],"latest_commit_sha":null,"homepage":"https://uipath.github.io/uipath-python/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UiPath.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-07T04:51:00.000Z","updated_at":"2025-08-27T14:54:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"3a462ed2-1f0f-4f96-b68c-488ace5c8306","html_url":"https://github.com/UiPath/uipath-langchain-python","commit_stats":null,"previous_names":["uipath/uipath-langchain-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/UiPath/uipath-langchain-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UiPath%2Fuipath-langchain-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UiPath%2Fuipath-langchain-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UiPath%2Fuipath-langchain-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UiPath%2Fuipath-langchain-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UiPath","download_url":"https://codeload.github.com/UiPath/uipath-langchain-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UiPath%2Fuipath-langchain-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273986629,"owners_count":25202708,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["langchain","langgraph","python","uipath"],"created_at":"2025-06-23T19:10:02.796Z","updated_at":"2025-09-07T02:05:02.214Z","avatar_url":"https://github.com/UiPath.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UiPath LangChain Python SDK\n\n[![PyPI downloads](https://img.shields.io/pypi/dm/uipath-langchain.svg)](https://pypi.org/project/uipath-langchain/)\n[![Python versions](https://img.shields.io/pypi/pyversions/uipath-langchain.svg)](https://pypi.org/project/uipath-langchain/)\n\nA Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform. This package provides programmatic interaction with UiPath Cloud Platform services and human-in-the-loop (HITL) semantics through Action Center integration.\n\nThis package is an extension to the [UiPath Python SDK](https://github.com/UiPath/uipath-python).\n\nThis [quickstart guide](https://uipath.github.io/uipath-python/) walks you through deploying your first agent to UiPath Cloud Platform.\n\nCheck out these [sample projects](https://github.com/UiPath/uipath-langchain-python/tree/main/samples) to see the SDK in action.\n\n## Requirements\n\n-   Python 3.10 or higher\n-   UiPath Automation Cloud account\n\n## Installation\n\n```bash\npip install uipath-langchain\n```\n\nusing `uv`:\n\n```bash\nuv add uipath-langchain\n```\n\n## Configuration\n\n### Environment Variables\n\nCreate a `.env` file in your project root with the following variables:\n\n```\nUIPATH_URL=https://cloud.uipath.com/ACCOUNT_NAME/TENANT_NAME\nUIPATH_ACCESS_TOKEN=YOUR_TOKEN_HERE\n```\n\n## Command Line Interface (CLI)\n\nThe SDK provides a command-line interface for creating, packaging, and deploying LangGraph Agents:\n\n### Initialize a Project\n\n```bash\nuipath init [GRAPH]\n```\n\nCreates a `uipath.json` configuration file for your project. If `[GRAPH]` is omitted, it will create an entrypoint for each graph specified in the `langgraph.json` file.\n\n### Authentication\n\n```bash\nuipath auth\n```\n\nThis command opens a browser for authentication and creates/updates your `.env` file with the proper credentials.\n\n### Debug a Project\n\n```bash\nuipath run GRAPH [INPUT]\n```\n\nExecutes the agent with the provided JSON input arguments.\n\n### Package a Project\n\n```bash\nuipath pack\n```\n\nPackages your project into a `.nupkg` file that can be deployed to UiPath.\n\n**Note:** Your `pyproject.toml` must include:\n\n-   A description field (avoid characters: \u0026, \u003c, \u003e, \", ', ;)\n-   Author information\n\nExample:\n\n```toml\ndescription = \"Your package description\"\nauthors = [{name = \"Your Name\", email = \"your.email@example.com\"}]\n```\n\n### Publish a Package\n\n```bash\nuipath publish\n```\n\nPublishes the most recently created package to your UiPath Orchestrator.\n\n## Project Structure\n\nTo properly use the CLI for packaging and publishing, your project should include:\n\n-   A `pyproject.toml` file with project metadata\n-   A `langgraph.json` file\n-   A `uipath.json` file (generated by `uipath init`)\n-   Any Python files needed for your automation\n\n## Development\n\n### Setting Up a Development Environment\n\nPlease read our [contribution guidelines](https://github.com/UiPath/uipath-langchain-python/blob/main/CONTRIBUTING.md) before submitting a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuipath%2Fuipath-langchain-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuipath%2Fuipath-langchain-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuipath%2Fuipath-langchain-python/lists"}