uipath-langchain 0.0.157__tar.gz → 0.1.39__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- uipath_langchain-0.1.39/.github/copilot-instructions.md +40 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/integration_tests.yml +8 -9
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/lint.yml +5 -4
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/test.yml +1 -1
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.gitignore +4 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.pipelines/security-scans.yml +1 -1
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/PKG-INFO +46 -22
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/README.md +24 -7
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/context_grounding.md +4 -4
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/human_in_the_loop.md +26 -13
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start.md +18 -17
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/pyproject.toml +32 -15
- {uipath_langchain-0.0.157/samples/chat-agent → uipath_langchain-0.1.39/samples/RAG-quiz-generator}/.agent/CLI_REFERENCE.md +3 -8
- {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/RAG-quiz-generator}/.agent/SDK_REFERENCE.md +130 -105
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/entry-points.json +212 -55
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/pyproject.toml +12 -7
- uipath_langchain-0.1.39/samples/RAG-quiz-generator/quiz-generator-RAG-agent.mermaid +13 -0
- uipath_langchain-0.1.39/samples/RAG-quiz-generator/researcher-RAG-agent.mermaid +12 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/src/agents/quiz-generator-RAG-agent.py +4 -3
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/src/agents/researcher-RAG-agent.py +6 -6
- {uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.39/samples/RAG-quiz-generator}/uv.lock +226 -201
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/.agent/CLI_REFERENCE.md +3 -8
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/.agent/SDK_REFERENCE.md +169 -100
- uipath_langchain-0.1.39/samples/calculator-agent/agent.mermaid +6 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/entry-points.json +35 -1
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/pyproject.toml +7 -2
- uipath_langchain-0.1.39/samples/calculator-agent/uv.lock +2555 -0
- {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-agent}/.agent/CLI_REFERENCE.md +3 -8
- uipath_langchain-0.1.39/samples/chat-agent/.agent/SDK_REFERENCE.md +565 -0
- uipath_langchain-0.1.39/samples/chat-agent/agent.mermaid +9 -0
- {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/chat-agent}/entry-points.json +209 -107
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/graph.py +3 -3
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/pyproject.toml +12 -16
- uipath_langchain-0.1.39/samples/chat-agent/uipath.json +5 -0
- uipath_langchain-0.1.39/samples/chat-agent/uv.lock +2679 -0
- uipath_langchain-0.1.39/samples/chat-hitl-agent/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/chat-hitl-agent/.agent/SDK_REFERENCE.md +565 -0
- uipath_langchain-0.1.39/samples/chat-hitl-agent/README.md +80 -0
- uipath_langchain-0.1.39/samples/chat-hitl-agent/agent.mermaid +12 -0
- uipath_langchain-0.1.39/samples/chat-hitl-agent/entry-points.json +2221 -0
- uipath_langchain-0.1.39/samples/chat-hitl-agent/graph.py +35 -0
- uipath_langchain-0.1.39/samples/chat-hitl-agent/pyproject.toml +43 -0
- uipath_langchain-0.1.39/samples/chat-hitl-agent/uipath.json +5 -0
- uipath_langchain-0.1.39/samples/chat-hitl-agent/uv.lock +2679 -0
- uipath_langchain-0.1.39/samples/company-research-agent/.agent/CLI_REFERENCE.md +560 -0
- {uipath_langchain-0.0.157/samples/chat-agent → uipath_langchain-0.1.39/samples/company-research-agent}/.agent/SDK_REFERENCE.md +169 -100
- uipath_langchain-0.1.39/samples/company-research-agent/agent.mermaid +13 -0
- uipath_langchain-0.1.39/samples/company-research-agent/entry-points.json +106 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/company-research-agent/graph.py +3 -3
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/company-research-agent/pyproject.toml +11 -6
- uipath_langchain-0.1.39/samples/company-research-agent/uipath.json +14 -0
- uipath_langchain-0.1.39/samples/company-research-agent/uv.lock +2632 -0
- uipath_langchain-0.1.39/samples/debug-agent/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/debug-agent/.agent/SDK_REFERENCE.md +549 -0
- uipath_langchain-0.1.39/samples/debug-agent/agent.mermaid +25 -0
- uipath_langchain-0.1.39/samples/debug-agent/entry-points.json +222 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/debug-agent/pyproject.toml +14 -2
- uipath_langchain-0.1.39/samples/debug-agent/uv.lock +2553 -0
- uipath_langchain-0.1.39/samples/email-organizer-agent/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/email-organizer-agent/.agent/SDK_REFERENCE.md +549 -0
- uipath_langchain-0.1.39/samples/email-organizer-agent/agent.mermaid +19 -0
- uipath_langchain-0.1.39/samples/email-organizer-agent/entry-points.json +157 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/pyproject.toml +10 -5
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/src/email_organizer/main.py +81 -82
- {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/email-organizer-agent}/uv.lock +252 -98
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/.agent/REQUIRED_STRUCTURE.md +2 -2
- {uipath_langchain-0.0.157/samples/RAG-quiz-generator → uipath_langchain-0.1.39/samples/hitl-inbox-server}/.agent/SDK_REFERENCE.md +1 -1
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/main.py +1 -1
- uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/.agent/SDK_REFERENCE.md +619 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-planner-researcher-coder-distributed/README.md +2 -2
- uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/coder.mermaid +16 -0
- uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/entry-points.json +2488 -0
- uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/planner.mermaid +16 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-planner-researcher-coder-distributed/pyproject.toml +11 -6
- uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/researcher.mermaid +16 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-planner-researcher-coder-distributed/src/multi-agent-distributed/coder.py +3 -3
- uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/src/multi-agent-distributed/planner.py +235 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-planner-researcher-coder-distributed/src/multi-agent-distributed/researcher.py +4 -4
- {uipath_langchain-0.0.157/samples/RAG-quiz-generator → uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed}/uv.lock +417 -184
- uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/.agent/SDK_REFERENCE.md +619 -0
- uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/agent.mermaid +36 -0
- uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/entry-points.json +254 -0
- uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/graph.py +193 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-supervisor-researcher-coder/pyproject.toml +12 -7
- {uipath_langchain-0.0.157/samples/calculator-agent → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/uv.lock +406 -671
- uipath_langchain-0.1.39/samples/oauth-external-apps-agent/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/oauth-external-apps-agent/.agent/SDK_REFERENCE.md +549 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/README.md +1 -1
- uipath_langchain-0.1.39/samples/oauth-external-apps-agent/agent.mermaid +9 -0
- uipath_langchain-0.1.39/samples/oauth-external-apps-agent/entry-points.json +82 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/main.py +4 -4
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/pyproject.toml +11 -6
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/uv.lock +184 -704
- uipath_langchain-0.1.39/samples/retrieval-chain/.agent/CLI_REFERENCE.md +560 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/.agent/REQUIRED_STRUCTURE.md +2 -2
- uipath_langchain-0.1.39/samples/retrieval-chain/.agent/SDK_REFERENCE.md +549 -0
- uipath_langchain-0.1.39/samples/retrieval-chain/entry-points.json +5 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/pyproject.toml +7 -2
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/uv.lock +349 -928
- uipath_langchain-0.1.39/samples/simple-deepagent/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/simple-deepagent/.agent/SDK_REFERENCE.md +619 -0
- uipath_langchain-0.1.39/samples/simple-deepagent/.env.example +4 -0
- uipath_langchain-0.1.39/samples/simple-deepagent/agent.mermaid +20 -0
- uipath_langchain-0.1.39/samples/simple-deepagent/entry-points.json +2269 -0
- uipath_langchain-0.1.39/samples/simple-deepagent/langgraph.json +7 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-deepagent/pyproject.toml +11 -14
- uipath_langchain-0.1.39/samples/simple-deepagent/uipath.json +5 -0
- uipath_langchain-0.1.39/samples/simple-deepagent/uv.lock +2747 -0
- uipath_langchain-0.1.39/samples/simple-local-mcp/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/simple-local-mcp/.agent/SDK_REFERENCE.md +549 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/README.md +1 -1
- uipath_langchain-0.1.39/samples/simple-local-mcp/agent.mermaid +9 -0
- {uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.39/samples/simple-local-mcp}/entry-points.json +198 -164
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/pyproject.toml +9 -4
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/src/simple-local-mcp/graph.py +3 -3
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/uv.lock +183 -712
- uipath_langchain-0.1.39/samples/simple-remote-mcp/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/simple-remote-mcp/.agent/SDK_REFERENCE.md +549 -0
- uipath_langchain-0.1.39/samples/simple-remote-mcp/CLAUDE.md +1 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/README.md +1 -1
- uipath_langchain-0.1.39/samples/simple-remote-mcp/agent.mermaid +6 -0
- uipath_langchain-0.0.157/samples/simple-deepagent/uipath.json → uipath_langchain-0.1.39/samples/simple-remote-mcp/entry-points.json +49 -13
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/main.py +3 -3
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/pyproject.toml +11 -6
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/uv.lock +185 -714
- uipath_langchain-0.1.39/samples/ticket-classification/.agent/CLI_REFERENCE.md +560 -0
- uipath_langchain-0.1.39/samples/ticket-classification/.agent/REQUIRED_STRUCTURE.md +92 -0
- uipath_langchain-0.1.39/samples/ticket-classification/.agent/SDK_REFERENCE.md +549 -0
- uipath_langchain-0.1.39/samples/ticket-classification/AGENTS.md +21 -0
- uipath_langchain-0.1.39/samples/ticket-classification/CLAUDE.md +1 -0
- uipath_langchain-0.1.39/samples/ticket-classification/agent.mermaid +13 -0
- uipath_langchain-0.1.39/samples/ticket-classification/bindings.json +4 -0
- uipath_langchain-0.1.39/samples/ticket-classification/entry-points.json +115 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/main.py +4 -4
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/pyproject.toml +11 -6
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/uv.lock +173 -857
- uipath_langchain-0.1.39/scripts/lint_httpx_client.py +237 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/cli_init.py +3 -143
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/cli_new.py +2 -3
- uipath_langchain-0.1.39/src/uipath_langchain/_resources/AGENTS.md +21 -0
- uipath_langchain-0.1.39/src/uipath_langchain/_resources/REQUIRED_STRUCTURE.md +92 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_tracing/_instrument_traceable.py +11 -12
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_utils/_request_mixin.py +303 -43
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_utils/_settings.py +5 -4
- uipath_langchain-0.1.39/src/uipath_langchain/agent/exceptions/__init__.py +6 -0
- {uipath_langchain-0.0.157/src/uipath_langchain/agent/react → uipath_langchain-0.1.39/src/uipath_langchain/agent/exceptions}/exceptions.py +1 -1
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/__init__.py +5 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/__init__.py +13 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/base_action.py +24 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/block_action.py +42 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/escalate_action.py +557 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/filter_action.py +290 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/log_action.py +58 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/guardrail_nodes.py +299 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/guardrails_factory.py +289 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/types.py +8 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/utils.py +181 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/__init__.py +2 -1
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/agent.py +38 -8
- uipath_langchain-0.1.39/src/uipath_langchain/agent/react/constants.py +1 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/react/guardrails/guardrails_subgraph.py +326 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/react/llm_node.py +74 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/react/router.py +108 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/react/terminate_node.py +82 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/react/types.py +53 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/utils.py +2 -2
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/tools/__init__.py +5 -1
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/tools/context_tool.py +24 -13
- uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/escalation_tool.py +111 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/integration_tool.py +181 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/mcp_tool.py +86 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/process_tool.py +49 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/static_args.py +116 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/structured_tool_with_output_type.py +14 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/tools/tool_factory.py +6 -5
- uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/tool_node.py +150 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/utils.py +42 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/wrappers/__init__.py +5 -0
- uipath_langchain-0.1.39/src/uipath_langchain/agent/wrappers/static_args_wrapper.py +34 -0
- uipath_langchain-0.1.39/src/uipath_langchain/chat/__init__.py +14 -0
- uipath_langchain-0.1.39/src/uipath_langchain/chat/bedrock.py +203 -0
- uipath_langchain-0.1.39/src/uipath_langchain/chat/mapper.py +327 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/chat/models.py +152 -86
- uipath_langchain-0.1.39/src/uipath_langchain/chat/openai.py +163 -0
- uipath_langchain-0.1.39/src/uipath_langchain/chat/supported_models.py +51 -0
- uipath_langchain-0.1.39/src/uipath_langchain/chat/vertex.py +271 -0
- uipath_langchain-0.1.39/src/uipath_langchain/embeddings/embeddings.py +215 -0
- uipath_langchain-0.1.39/src/uipath_langchain/middlewares.py +10 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/retrievers/context_grounding_retriever.py +7 -9
- uipath_langchain-0.1.39/src/uipath_langchain/runtime/__init__.py +36 -0
- uipath_langchain-0.1.39/src/uipath_langchain/runtime/_serialize.py +46 -0
- uipath_langchain-0.1.39/src/uipath_langchain/runtime/config.py +61 -0
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_exception.py → uipath_langchain-0.1.39/src/uipath_langchain/runtime/errors.py +3 -3
- uipath_langchain-0.1.39/src/uipath_langchain/runtime/factory.py +315 -0
- uipath_langchain-0.1.39/src/uipath_langchain/runtime/graph.py +159 -0
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_runtime.py → uipath_langchain-0.1.39/src/uipath_langchain/runtime/runtime.py +141 -167
- uipath_langchain-0.1.39/src/uipath_langchain/runtime/schema.py +442 -0
- uipath_langchain-0.1.39/src/uipath_langchain/runtime/storage.py +115 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/vectorstores/context_grounding_vectorstore.py +2 -2
- uipath_langchain-0.1.39/testcases/chat-models/expected_traces.json +24 -0
- uipath_langchain-0.1.39/testcases/chat-models/input.json +3 -0
- uipath_langchain-0.1.39/testcases/chat-models/pyproject.toml +20 -0
- uipath_langchain-0.1.39/testcases/chat-models/run.sh +26 -0
- uipath_langchain-0.1.39/testcases/chat-models/src/assert.py +72 -0
- uipath_langchain-0.1.39/testcases/chat-models/src/main.py +340 -0
- uipath_langchain-0.1.39/testcases/common/__init__.py +15 -0
- uipath_langchain-0.1.39/testcases/common/console.py +444 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/common/trace_assert.py +20 -8
- uipath_langchain-0.1.39/testcases/company-research-agent/expected_traces.json +45 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/pyproject.toml +3 -6
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/src/assert.py +5 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/src/graph.py +10 -18
- uipath_langchain-0.1.39/testcases/debug-breakpoints/bindings.json +4 -0
- uipath_langchain-0.1.39/testcases/debug-breakpoints/entry-points.json +144 -0
- uipath_langchain-0.1.39/testcases/debug-breakpoints/expected_traces.json +11 -0
- uipath_langchain-0.1.39/testcases/debug-breakpoints/input.json +1 -0
- uipath_langchain-0.1.39/testcases/debug-breakpoints/langgraph.json +9 -0
- uipath_langchain-0.1.39/testcases/debug-breakpoints/pyproject.toml +26 -0
- uipath_langchain-0.1.39/testcases/debug-breakpoints/run.sh +20 -0
- uipath_langchain-0.1.39/testcases/debug-breakpoints/src/assert.py +16 -0
- uipath_langchain-0.1.39/testcases/debug-breakpoints/src/main.py +191 -0
- uipath_langchain-0.1.39/testcases/debug-breakpoints/src/test_debug.py +260 -0
- uipath_langchain-0.1.39/testcases/dev-console/bindings.json +4 -0
- uipath_langchain-0.1.39/testcases/dev-console/input.json +5 -0
- uipath_langchain-0.1.39/testcases/dev-console/langgraph.json +7 -0
- uipath_langchain-0.1.39/testcases/dev-console/pyproject.toml +26 -0
- uipath_langchain-0.1.39/testcases/dev-console/run.sh +20 -0
- uipath_langchain-0.1.39/testcases/dev-console/src/assert.py +16 -0
- uipath_langchain-0.1.39/testcases/dev-console/src/graph.py +60 -0
- uipath_langchain-0.1.39/testcases/dev-console/src/test_dev.py +392 -0
- uipath_langchain-0.1.39/testcases/init-flow/expected_traces.json +26 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/init-flow/pyproject.toml +1 -1
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/init-flow/src/assert.py +5 -1
- uipath_langchain-0.1.39/testcases/simple-local-mcp/expected_traces.json +83 -0
- uipath_langchain-0.1.39/testcases/simple-local-mcp/input.json +12 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/pyproject.toml +1 -1
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/src/simple-local-mcp/graph.py +3 -6
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/src/simple-local-mcp/weather_server.py +1 -1
- uipath_langchain-0.1.39/testcases/ticket-classification/expected_traces.json +26 -0
- uipath_langchain-0.1.39/testcases/ticket-classification/langgraph.json +9 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/pyproject.toml +1 -1
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/src/assert.py +6 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/src/main.py +18 -21
- uipath_langchain-0.1.39/tests/agent/guardrails/actions/test_block_action.py +76 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/actions/test_escalate_action.py +1437 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/actions/test_filter_action.py +499 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/actions/test_log_action.py +98 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/test_agent_init_guardrails_subgraph.py +105 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/test_agent_terminate_guardrails_subgraph.py +128 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrail_nodes.py +511 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrail_stage_filtering.py +59 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrail_utils.py +105 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrails_factory.py +746 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrails_utils.py +113 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/test_llm_guardrails_subgraph.py +113 -0
- uipath_langchain-0.1.39/tests/agent/guardrails/test_tool_guardrails_subgraph.py +131 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/agent/react/test_utils.py +14 -14
- uipath_langchain-0.1.39/tests/agent/tools/test_integration_tool.py +226 -0
- uipath_langchain-0.1.39/tests/agent/tools/test_static_args.py +416 -0
- uipath_langchain-0.1.39/tests/agent/tools/test_tool_node.py +319 -0
- uipath_langchain-0.1.39/tests/agent/tools/test_utils.py +124 -0
- uipath_langchain-0.1.39/tests/chat/__init__.py +0 -0
- uipath_langchain-0.1.39/tests/chat/test_openai_url_rewrite.py +82 -0
- uipath_langchain-0.1.39/tests/cli/test_graph.py +296 -0
- uipath_langchain-0.1.39/tests/cli/test_run.py +130 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/test_schema.py +15 -15
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/action_trigger_hitl.py +7 -7
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/job_trigger_hitl.py +4 -4
- uipath_langchain-0.1.39/tests/hitl/test_action_trigger.py +270 -0
- uipath_langchain-0.1.39/tests/hitl/test_hitl_api_trigger.py +151 -0
- uipath_langchain-0.1.39/tests/hitl/test_hitl_job_trigger.py +244 -0
- {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39}/uv.lock +1421 -907
- uipath_langchain-0.0.157/samples/RAG-quiz-generator/quiz-generator-RAG-agent.mermaid +0 -21
- uipath_langchain-0.0.157/samples/RAG-quiz-generator/researcher-RAG-agent.mermaid +0 -20
- uipath_langchain-0.0.157/samples/calculator-agent/agent.mermaid +0 -14
- uipath_langchain-0.0.157/samples/chat-agent/agent.mermaid +0 -17
- uipath_langchain-0.0.157/samples/chat-agent/entry-points.json +0 -146
- uipath_langchain-0.0.157/samples/chat-agent/uv.lock +0 -3307
- uipath_langchain-0.0.157/samples/company-research-agent/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/company-research-agent/agent.mermaid +0 -23
- uipath_langchain-0.0.157/samples/company-research-agent/entry-points.json +0 -34
- uipath_langchain-0.0.157/samples/company-research-agent/uv.lock +0 -3307
- uipath_langchain-0.0.157/samples/debug-agent/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/debug-agent/agent.mermaid +0 -33
- uipath_langchain-0.0.157/samples/debug-agent/entry-points.json +0 -84
- uipath_langchain-0.0.157/samples/email-organizer-agent/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/email-organizer-agent/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/email-organizer-agent/agent.mermaid +0 -27
- uipath_langchain-0.0.157/samples/email-organizer-agent/entry-points.json +0 -52
- uipath_langchain-0.0.157/samples/email-organizer-agent/uv.lock +0 -3277
- uipath_langchain-0.0.157/samples/hitl-inbox-server/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/hitl-inbox-server/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/coder.mermaid +0 -23
- uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/planner.mermaid +0 -18
- uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/researcher.mermaid +0 -23
- uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/src/multi-agent-distributed/planner.py +0 -212
- uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/agent.mermaid +0 -40
- uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/entry-points.json +0 -34
- uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/graph.py +0 -133
- uipath_langchain-0.0.157/samples/oauth-external-apps-agent/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/oauth-external-apps-agent/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/oauth-external-apps-agent/agent.mermaid +0 -17
- uipath_langchain-0.0.157/samples/oauth-external-apps-agent/entry-points.json +0 -32
- uipath_langchain-0.0.157/samples/retrieval-chain/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/retrieval-chain/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/retrieval-chain/entry-points.json +0 -33
- uipath_langchain-0.0.157/samples/simple-deepagent/uv.lock +0 -3314
- uipath_langchain-0.0.157/samples/simple-local-mcp/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/simple-local-mcp/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/simple-local-mcp/agent.mermaid +0 -17
- uipath_langchain-0.0.157/samples/simple-local-mcp/entry-points.json +0 -146
- uipath_langchain-0.0.157/samples/simple-remote-mcp/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/simple-remote-mcp/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/simple-remote-mcp/agent.mermaid +0 -14
- uipath_langchain-0.0.157/samples/simple-remote-mcp/uipath.json +0 -1
- uipath_langchain-0.0.157/samples/ticket-classification/.agent/CLI_REFERENCE.md +0 -565
- uipath_langchain-0.0.157/samples/ticket-classification/.agent/SDK_REFERENCE.md +0 -480
- uipath_langchain-0.0.157/samples/ticket-classification/agent.mermaid +0 -21
- uipath_langchain-0.0.157/samples/ticket-classification/entry-points.json +0 -43
- uipath_langchain-0.0.157/samples/ticket-classification/uipath.json +0 -1
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_conversation.py +0 -306
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_graph_resolver.py +0 -141
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_input.py +0 -147
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_memory.py +0 -26
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_output.py +0 -150
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/_utils/_graph.py +0 -199
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/_utils/_schema.py +0 -137
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/cli_debug.py +0 -90
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/cli_dev.py +0 -63
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/cli_eval.py +0 -100
- uipath_langchain-0.0.157/src/uipath_langchain/_cli/cli_run.py +0 -98
- uipath_langchain-0.0.157/src/uipath_langchain/_tracing/_utils.py +0 -28
- uipath_langchain-0.0.157/src/uipath_langchain/agent/react/constants.py +0 -2
- uipath_langchain-0.0.157/src/uipath_langchain/agent/react/llm_node.py +0 -43
- uipath_langchain-0.0.157/src/uipath_langchain/agent/react/router.py +0 -97
- uipath_langchain-0.0.157/src/uipath_langchain/agent/react/terminate_node.py +0 -53
- uipath_langchain-0.0.157/src/uipath_langchain/agent/react/types.py +0 -27
- uipath_langchain-0.0.157/src/uipath_langchain/agent/tools/integration_tool.py +0 -104
- uipath_langchain-0.0.157/src/uipath_langchain/agent/tools/process_tool.py +0 -50
- uipath_langchain-0.0.157/src/uipath_langchain/agent/tools/tool_node.py +0 -22
- uipath_langchain-0.0.157/src/uipath_langchain/agent/tools/utils.py +0 -11
- uipath_langchain-0.0.157/src/uipath_langchain/chat/__init__.py +0 -6
- uipath_langchain-0.0.157/src/uipath_langchain/embeddings/embeddings.py +0 -112
- uipath_langchain-0.0.157/src/uipath_langchain/middlewares.py +0 -18
- uipath_langchain-0.0.157/src/uipath_langchain/runtime_factories.py +0 -20
- uipath_langchain-0.0.157/testcases/company-research-agent/expected_traces.json +0 -41
- uipath_langchain-0.0.157/testcases/init-flow/expected_traces.json +0 -32
- uipath_langchain-0.0.157/testcases/simple-local-mcp/expected_traces.json +0 -42
- uipath_langchain-0.0.157/testcases/simple-local-mcp/input.json +0 -12
- uipath_langchain-0.0.157/testcases/ticket-classification/expected_traces.json +0 -32
- uipath_langchain-0.0.157/tests/cli/test_run.py +0 -95
- uipath_langchain-0.0.157/tests/hitl/test_action_trigger.py +0 -193
- uipath_langchain-0.0.157/tests/hitl/test_hitl_api_trigger.py +0 -89
- uipath_langchain-0.0.157/tests/hitl/test_hitl_default_escalation.py +0 -143
- uipath_langchain-0.0.157/tests/hitl/test_hitl_job_trigger.py +0 -159
- uipath_langchain-0.0.157/uv.lock +0 -3383
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.cursorrules +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.editorconfig +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.gitattributes +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/cd.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/ci.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/commitlint.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/lint-custom-version.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/publish-dev.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/publish-docs.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/publish-prior-stable-version.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/slack.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/test-custom-version.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.pipelines/variables.yml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.pre-commit-config.yaml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.python-version +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.vscode/extensions.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.vscode/settings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/CONTRIBUTING.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/LICENSE +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/chat_models.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start_images/cloud_env_var_dark.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start_images/cloud_env_var_light.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start_images/invoke_output_dark.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start_images/invoke_output_light.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/click-storage-bucket.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-index-1.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-index-2.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-process.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-quiz-generator.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-storage-bucket-1.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-storage-bucket-2.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/folder-path.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/job-info.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/output.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/process-page.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/researcher-1.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/researcher-2.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/run-process-1.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/run-process-2.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/storage-bucket-content.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/coder-agent-package-overview.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/coder-agent-process-configuration.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/planner-agent-package-overview.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/planner-agent-process-configuration.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/researcher-agent-package-overview.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/researcher-agent-process-configuration.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/activate-apps.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/activate-deployment.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/copy-folder-path.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/deploy-solution-package-wizard.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/deploy-solution-package.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/monitor-agent.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/navigate-to-solution-folder.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/resume-condition.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/run-agent.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/solution-destination-folder.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/start-job.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/upload-solution-package.png +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/AGENTS.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/README.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/env.example +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/input.example/quiz-generator-debug-input.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/input.example/researcher-debug-input.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/langgraph.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/uipath.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/README.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/AGENTS.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/README.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/graph.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/langgraph.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/uipath.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/.env.example +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/AGENTS.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/README.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/langgraph.json +0 -0
- {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/.env.example +0 -0
- {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/bindings.json +0 -0
- {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/langgraph.json +0 -0
- {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.39/samples/company-research-agent}/.env.example +0 -0
- {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/company-research-agent/README.md +0 -0
- {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/bindings.json +0 -0
- {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/langgraph.json +0 -0
- {uipath_langchain-0.0.157/samples/email-organizer-agent → uipath_langchain-0.1.39/samples/debug-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157/samples/email-organizer-agent → uipath_langchain-0.1.39/samples/debug-agent}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/email-organizer-agent → uipath_langchain-0.1.39/samples/debug-agent}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/debug-agent/README.md +0 -0
- {uipath_langchain-0.0.157/samples/email-organizer-agent → uipath_langchain-0.1.39/samples/debug-agent}/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/debug-agent/graph.py +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39/samples/debug-agent}/langgraph.json +0 -0
- {uipath_langchain-0.0.157/samples/chat-agent → uipath_langchain-0.1.39/samples/debug-agent}/uipath.json +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.39/samples/email-organizer-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/.env.template +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/.python-version +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/.vscode/launch.json +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.39/samples/email-organizer-agent}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/hitl-inbox-server → uipath_langchain-0.1.39/samples/email-organizer-agent}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/README.md +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.39/samples/email-organizer-agent}/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/input.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/langgraph.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/src/email_organizer/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/src/email_organizer/outlook_client.py +0 -0
- {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/email-organizer-agent}/uipath.json +0 -0
- {uipath_langchain-0.0.157/samples/RAG-quiz-generator → uipath_langchain-0.1.39/samples/hitl-inbox-server}/.agent/CLI_REFERENCE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.39/samples/hitl-inbox-server}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/README.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/database.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/entry-points.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/models.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/pyproject.toml +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/schemas.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/templates/index.html +0 -0
- {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/hitl-inbox-server}/uipath.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/uv.lock +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed}/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157/samples/simple-deepagent → uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed}/.env.example +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed}/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-planner-researcher-coder-distributed/langgraph.json +0 -0
- {uipath_langchain-0.0.157/samples/email-organizer-agent → uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed}/uipath.json +0 -0
- {uipath_langchain-0.0.157/samples/oauth-external-apps-agent → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-supervisor-researcher-coder/.env.example +0 -0
- {uipath_langchain-0.0.157/samples/oauth-external-apps-agent → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/oauth-external-apps-agent → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-supervisor-researcher-coder/README.md +0 -0
- {uipath_langchain-0.0.157/samples/oauth-external-apps-agent → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/bindings.json +0 -0
- {uipath_langchain-0.0.157/samples/simple-deepagent → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/langgraph.json +0 -0
- {uipath_langchain-0.0.157/samples/hitl-inbox-server → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/uipath.json +0 -0
- {uipath_langchain-0.0.157/samples/simple-local-mcp → uipath_langchain-0.1.39/samples/oauth-external-apps-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/.env.example +0 -0
- {uipath_langchain-0.0.157/samples/simple-local-mcp → uipath_langchain-0.1.39/samples/oauth-external-apps-agent}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/retrieval-chain → uipath_langchain-0.1.39/samples/oauth-external-apps-agent}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157/samples/retrieval-chain → uipath_langchain-0.1.39/samples/oauth-external-apps-agent}/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/input.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/langgraph.json +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.39/samples/oauth-external-apps-agent}/uipath.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/.env.example +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/simple-local-mcp → uipath_langchain-0.1.39/samples/retrieval-chain}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/README.md +0 -0
- {uipath_langchain-0.0.157/samples/simple-deepagent → uipath_langchain-0.1.39/samples/retrieval-chain}/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/main.py +0 -0
- {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39/samples/retrieval-chain}/uipath.json +0 -0
- {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/simple-deepagent}/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/simple-deepagent}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/simple-deepagent}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-deepagent/README.md +0 -0
- {uipath_langchain-0.0.157/samples/simple-local-mcp → uipath_langchain-0.1.39/samples/simple-deepagent}/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-deepagent/graph.py +0 -0
- {uipath_langchain-0.0.157/samples/ticket-classification → uipath_langchain-0.1.39/samples/simple-local-mcp}/.agent/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/.env.example +0 -0
- {uipath_langchain-0.0.157/samples/ticket-classification → uipath_langchain-0.1.39/samples/simple-local-mcp}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/ticket-classification → uipath_langchain-0.1.39/samples/simple-local-mcp}/CLAUDE.md +0 -0
- {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/simple-local-mcp}/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/langgraph.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/src/simple-local-mcp/math_server.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/src/simple-local-mcp/weather_server.py +0 -0
- {uipath_langchain-0.0.157/samples/oauth-external-apps-agent → uipath_langchain-0.1.39/samples/simple-local-mcp}/uipath.json +0 -0
- {uipath_langchain-0.0.157/src/uipath_langchain/_resources → uipath_langchain-0.1.39/samples/simple-remote-mcp/.agent}/REQUIRED_STRUCTURE.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/.env.example +0 -0
- {uipath_langchain-0.0.157/src/uipath_langchain/_resources → uipath_langchain-0.1.39/samples/simple-remote-mcp}/AGENTS.md +0 -0
- {uipath_langchain-0.0.157/samples/ticket-classification → uipath_langchain-0.1.39/samples/simple-remote-mcp}/bindings.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/langgraph.json +0 -0
- {uipath_langchain-0.0.157/samples/retrieval-chain → uipath_langchain-0.1.39/samples/simple-remote-mcp}/uipath.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/.env.example +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/README.md +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/escalation_app_solution/generic-escalation-app-solution-1.0.0.zip +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/langgraph.json +0 -0
- {uipath_langchain-0.0.157/samples/simple-local-mcp → uipath_langchain-0.1.39/samples/ticket-classification}/uipath.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/_templates/langgraph.json.template +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/_templates/main.py.template +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_tracing/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_utils/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_utils/_sleep_policy.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/init_node.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/tools/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/tools/tools.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/embeddings/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/py.typed +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/retrievers/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/vectorstores/__init__.py +0 -0
- {uipath_langchain-0.0.157/testcases/ticket-classification → uipath_langchain-0.1.39/testcases/chat-models}/langgraph.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/common/validate_output.sh +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/expected_raw.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/input.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/langgraph.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/run.sh +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/uv.lock +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/init-flow/input.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/init-flow/run.sh +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/langgraph.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/run.sh +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/src/assert.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/src/simple-local-mcp/math_server.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/uv.lock +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/input.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/raw_traces.jsonl +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/run.sh +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/uv.lock +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/agent/react/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/conftest.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/mocks/langgraph.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/mocks/simple_agent.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/mocks/uipath.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/test_init.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/__init__.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/conftest.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/api_trigger_hitl.py +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/langgraph.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/uipath-default-escalation.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/uipath.json +0 -0
- {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/test_dummy.py +0 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Copilot Instructions for Review
|
|
2
|
+
|
|
3
|
+
Purpose:
|
|
4
|
+
- Always use `**get_httpx_client_kwargs()` when creating `httpx.Client` or `httpx.AsyncClient` to ensure correct SSL, proxy, timeouts, and redirects.
|
|
5
|
+
|
|
6
|
+
Guidance for Copilot:
|
|
7
|
+
- When suggesting `httpx.Client(` or `httpx.AsyncClient(`, include `**get_httpx_client_kwargs()`.
|
|
8
|
+
- If the user omits it, suggest the corrected version or insert a warning comment.
|
|
9
|
+
|
|
10
|
+
Preferred patterns:
|
|
11
|
+
```python
|
|
12
|
+
import httpx
|
|
13
|
+
from uipath._utils._ssl_context import get_httpx_client_kwargs
|
|
14
|
+
|
|
15
|
+
client = httpx.Client(**get_httpx_client_kwargs())
|
|
16
|
+
async_client = httpx.AsyncClient(**get_httpx_client_kwargs())
|
|
17
|
+
|
|
18
|
+
default_client_kwargs = get_httpx_client_kwargs()
|
|
19
|
+
client_kwargs = {
|
|
20
|
+
**default_client_kwargs,
|
|
21
|
+
"base_url": base_url,
|
|
22
|
+
"headers": my_headers,
|
|
23
|
+
}
|
|
24
|
+
client = httpx.Client(**client_kwargs)
|
|
25
|
+
async_client = httpx.AsyncClient(**client_kwargs)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Anti-patterns (avoid):
|
|
29
|
+
```python
|
|
30
|
+
client = httpx.Client() # ❌ Missing **get_httpx_client_kwargs()
|
|
31
|
+
async_client = httpx.AsyncClient() # ❌ Missing **get_httpx_client_kwargs()
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Warning to insert if correction isn’t applied:
|
|
35
|
+
```python
|
|
36
|
+
# WARNING: Use httpx.Client/AsyncClient with **get_httpx_client_kwargs() for proper SSL/proxy configuration.
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Reference:
|
|
40
|
+
- [get_httpx_client_kwargs](https://github.com/UiPath/uipath-python/blob/main/src/uipath/_utils/_ssl_context.py#L37)
|
{uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/integration_tests.yml
RENAMED
|
@@ -21,6 +21,7 @@ jobs:
|
|
|
21
21
|
uses: actions/checkout@v4
|
|
22
22
|
|
|
23
23
|
- name: Discover testcases
|
|
24
|
+
# Skip common directory - it's shared utilities, not a testcase
|
|
24
25
|
id: discover
|
|
25
26
|
run: |
|
|
26
27
|
# Find all testcase folders (excluding common folders like README, etc.)
|
|
@@ -36,6 +37,7 @@ jobs:
|
|
|
36
37
|
integration-tests:
|
|
37
38
|
needs: [discover-testcases]
|
|
38
39
|
runs-on: ubuntu-latest
|
|
40
|
+
timeout-minutes: 10
|
|
39
41
|
container:
|
|
40
42
|
image: ghcr.io/astral-sh/uv:python3.12-bookworm
|
|
41
43
|
env:
|
|
@@ -44,10 +46,9 @@ jobs:
|
|
|
44
46
|
fail-fast: false
|
|
45
47
|
matrix:
|
|
46
48
|
testcase: ${{ fromJson(needs.discover-testcases.outputs.testcases) }}
|
|
47
|
-
environment: [alpha, staging]
|
|
48
|
-
use_azure_chat: [true, false]
|
|
49
|
+
environment: [alpha, cloud, staging]
|
|
49
50
|
|
|
50
|
-
name: "${{ matrix.testcase }} / ${{ matrix.environment }}
|
|
51
|
+
name: "${{ matrix.testcase }} / ${{ matrix.environment }}"
|
|
51
52
|
|
|
52
53
|
steps:
|
|
53
54
|
- name: Checkout code
|
|
@@ -58,16 +59,14 @@ jobs:
|
|
|
58
59
|
|
|
59
60
|
- name: Run testcase
|
|
60
61
|
env:
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
62
|
+
ENVIRONMENT: ${{ matrix.environment }}
|
|
63
|
+
CLIENT_ID: ${{ matrix.environment == 'alpha' && secrets.ALPHA_TEST_CLIENT_ID || matrix.environment == 'staging' && secrets.STAGING_TEST_CLIENT_ID || matrix.environment == 'cloud' && secrets.CLOUD_TEST_CLIENT_ID }}
|
|
64
|
+
CLIENT_SECRET: ${{ matrix.environment == 'alpha' && secrets.ALPHA_TEST_CLIENT_SECRET || matrix.environment == 'staging' && secrets.STAGING_TEST_CLIENT_SECRET || matrix.environment == 'cloud' && secrets.CLOUD_TEST_CLIENT_SECRET }}
|
|
65
|
+
BASE_URL: ${{ matrix.environment == 'alpha' && secrets.ALPHA_BASE_URL || matrix.environment == 'staging' && secrets.STAGING_BASE_URL || matrix.environment == 'cloud' && secrets.CLOUD_BASE_URL }}
|
|
65
66
|
working-directory: testcases/${{ matrix.testcase }}
|
|
66
67
|
run: |
|
|
67
68
|
echo "Running testcase: ${{ matrix.testcase }}"
|
|
68
69
|
echo "Environment: ${{ matrix.environment }}"
|
|
69
|
-
echo "LLM: ${{ matrix.use_azure_chat && 'UiPathAzureChatOpenAI' || 'UiPathChat' }}"
|
|
70
|
-
echo "USE_AZURE_CHAT: ${{ matrix.use_azure_chat }}"
|
|
71
70
|
|
|
72
71
|
# Execute the testcase run script directly
|
|
73
72
|
bash run.sh
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
name: Lint
|
|
2
2
|
|
|
3
|
-
on:
|
|
4
|
-
workflow_call
|
|
3
|
+
on: workflow_call
|
|
5
4
|
|
|
6
5
|
jobs:
|
|
7
6
|
# Job that runs when custom version testing is enabled - just completes successfully
|
|
@@ -40,7 +39,7 @@ jobs:
|
|
|
40
39
|
python-version-file: ".python-version"
|
|
41
40
|
|
|
42
41
|
- name: Install dependencies
|
|
43
|
-
run: uv sync --all-extras
|
|
42
|
+
run: uv sync --locked --all-extras
|
|
44
43
|
|
|
45
44
|
- name: Check static types
|
|
46
45
|
run: uv run mypy --config-file pyproject.toml .
|
|
@@ -50,4 +49,6 @@ jobs:
|
|
|
50
49
|
|
|
51
50
|
- name: Check formatting
|
|
52
51
|
run: uv run ruff format --check .
|
|
53
|
-
|
|
52
|
+
|
|
53
|
+
- name: Check httpx.Client() usage
|
|
54
|
+
run: uv run python scripts/lint_httpx_client.py
|
|
@@ -1,42 +1,50 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uipath-langchain
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: UiPath
|
|
3
|
+
Version: 0.1.39
|
|
4
|
+
Summary: Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform
|
|
5
5
|
Project-URL: Homepage, https://uipath.com
|
|
6
6
|
Project-URL: Repository, https://github.com/UiPath/uipath-langchain-python
|
|
7
7
|
Project-URL: Documentation, https://uipath.github.io/uipath-python/
|
|
8
8
|
Maintainer-email: Marius Cosareanu <marius.cosareanu@uipath.com>, Cristian Pufu <cristian.pufu@uipath.com>
|
|
9
9
|
License-File: LICENSE
|
|
10
|
-
Classifier: Development Status :: 3 - Alpha
|
|
11
10
|
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
13
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
14
|
Classifier: Topic :: Software Development :: Build Tools
|
|
16
|
-
Requires-Python: >=3.
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Requires-Dist: aiosqlite==0.21.0
|
|
17
17
|
Requires-Dist: httpx>=0.27.0
|
|
18
|
-
Requires-Dist:
|
|
19
|
-
Requires-Dist:
|
|
20
|
-
Requires-Dist: langchain-core
|
|
21
|
-
Requires-Dist: langchain-
|
|
22
|
-
Requires-Dist: langchain
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist: langgraph<0.
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
18
|
+
Requires-Dist: jsonpath-ng>=1.7.0
|
|
19
|
+
Requires-Dist: jsonschema-pydantic-converter>=0.1.5
|
|
20
|
+
Requires-Dist: langchain-core<2.0.0,>=1.0.0
|
|
21
|
+
Requires-Dist: langchain-mcp-adapters==0.2.1
|
|
22
|
+
Requires-Dist: langchain-openai<2.0.0,>=1.0.0
|
|
23
|
+
Requires-Dist: langchain<2.0.0,>=1.0.0
|
|
24
|
+
Requires-Dist: langgraph-checkpoint-sqlite<4.0.0,>=3.0.0
|
|
25
|
+
Requires-Dist: langgraph<2.0.0,>=1.0.0
|
|
26
|
+
Requires-Dist: mcp==1.24.0
|
|
27
|
+
Requires-Dist: openinference-instrumentation-langchain>=0.1.56
|
|
27
28
|
Requires-Dist: pydantic-settings>=2.6.0
|
|
28
29
|
Requires-Dist: python-dotenv>=1.0.1
|
|
29
|
-
Requires-Dist: uipath<2.
|
|
30
|
+
Requires-Dist: uipath<2.3.0,>=2.2.35
|
|
31
|
+
Provides-Extra: bedrock
|
|
32
|
+
Requires-Dist: boto3-stubs>=1.41.4; extra == 'bedrock'
|
|
33
|
+
Requires-Dist: langchain-aws>=0.2.35; extra == 'bedrock'
|
|
34
|
+
Provides-Extra: vertex
|
|
35
|
+
Requires-Dist: google-generativeai>=0.8.0; extra == 'vertex'
|
|
36
|
+
Requires-Dist: langchain-google-genai>=2.0.0; extra == 'vertex'
|
|
30
37
|
Description-Content-Type: text/markdown
|
|
31
38
|
|
|
32
39
|
# UiPath LangChain Python SDK
|
|
33
40
|
|
|
41
|
+
[](https://pypi.org/project/uipath-langchain/)
|
|
34
42
|
[](https://pypi.org/project/uipath-langchain/)
|
|
35
43
|
[](https://pypi.org/project/uipath-langchain/)
|
|
36
44
|
|
|
37
|
-
A Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform.
|
|
45
|
+
A Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform. It provides programmatic interaction with UiPath Cloud Platform services and human-in-the-loop (HITL) semantics through Action Center integration.
|
|
38
46
|
|
|
39
|
-
This package is an extension to the [UiPath Python SDK](https://github.com/UiPath/uipath-python).
|
|
47
|
+
This package is an extension to the [UiPath Python SDK](https://github.com/UiPath/uipath-python) and implements the [UiPath Runtime Protocol](https://github.com/UiPath/uipath-runtime-python).
|
|
40
48
|
|
|
41
49
|
This [quickstart guide](https://uipath.github.io/uipath-python/) walks you through deploying your first agent to UiPath Cloud Platform.
|
|
42
50
|
|
|
@@ -44,7 +52,7 @@ Check out these [sample projects](https://github.com/UiPath/uipath-langchain-pyt
|
|
|
44
52
|
|
|
45
53
|
## Requirements
|
|
46
54
|
|
|
47
|
-
- Python 3.
|
|
55
|
+
- Python 3.11 or higher
|
|
48
56
|
- UiPath Automation Cloud account
|
|
49
57
|
|
|
50
58
|
## Installation
|
|
@@ -77,10 +85,12 @@ The SDK provides a command-line interface for creating, packaging, and deploying
|
|
|
77
85
|
### Initialize a Project
|
|
78
86
|
|
|
79
87
|
```bash
|
|
80
|
-
uipath init
|
|
88
|
+
uipath init
|
|
81
89
|
```
|
|
82
90
|
|
|
83
|
-
|
|
91
|
+
Running `uipath init` will process the graph definitions in the `langgraph.json` file and create the corresponding `entry-points.json` file needed for deployment.
|
|
92
|
+
|
|
93
|
+
For more details on the configuration format, see the [UiPath configuration specifications](https://github.com/UiPath/uipath-python/blob/main/specs/README.md).
|
|
84
94
|
|
|
85
95
|
### Authentication
|
|
86
96
|
|
|
@@ -131,12 +141,26 @@ Publishes the most recently created package to your UiPath Orchestrator.
|
|
|
131
141
|
To properly use the CLI for packaging and publishing, your project should include:
|
|
132
142
|
|
|
133
143
|
- A `pyproject.toml` file with project metadata
|
|
134
|
-
- A `langgraph.json` file
|
|
135
|
-
- A `
|
|
144
|
+
- A `langgraph.json` file with your graph definitions (e.g., `"graphs": {"agent": "graph.py:graph"}`)
|
|
145
|
+
- A `entry-points.json` file (generated by `uipath init`)
|
|
146
|
+
- A `bindings.json` file (generated by `uipath init`) to configure resource overrides
|
|
136
147
|
- Any Python files needed for your automation
|
|
137
148
|
|
|
138
149
|
## Development
|
|
139
150
|
|
|
151
|
+
### Developer Tools
|
|
152
|
+
|
|
153
|
+
Check out [uipath-dev](https://github.com/uipath/uipath-dev-python) - an interactive terminal application for building, testing, and debugging UiPath Python runtimes, agents, and automation scripts.
|
|
154
|
+
|
|
140
155
|
### Setting Up a Development Environment
|
|
141
156
|
|
|
142
157
|
Please read our [contribution guidelines](https://github.com/UiPath/uipath-langchain-python/blob/main/CONTRIBUTING.md) before submitting a pull request.
|
|
158
|
+
|
|
159
|
+
### Special Thanks
|
|
160
|
+
|
|
161
|
+
A huge thank-you to the open-source community and the maintainers of the libraries that make this project possible:
|
|
162
|
+
|
|
163
|
+
- [LangChain](https://github.com/langchain-ai/langchain) for providing a powerful framework for building stateful LLM applications.
|
|
164
|
+
- [Pydantic](https://github.com/pydantic/pydantic) for reliable, typed configuration and validation.
|
|
165
|
+
- [OpenInference](https://github.com/Arize-ai/openinference) for observability and instrumentation support.
|
|
166
|
+
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# UiPath LangChain Python SDK
|
|
2
2
|
|
|
3
|
+
[](https://pypi.org/project/uipath-langchain/)
|
|
3
4
|
[](https://pypi.org/project/uipath-langchain/)
|
|
4
5
|
[](https://pypi.org/project/uipath-langchain/)
|
|
5
6
|
|
|
6
|
-
A Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform.
|
|
7
|
+
A Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform. It provides programmatic interaction with UiPath Cloud Platform services and human-in-the-loop (HITL) semantics through Action Center integration.
|
|
7
8
|
|
|
8
|
-
This package is an extension to the [UiPath Python SDK](https://github.com/UiPath/uipath-python).
|
|
9
|
+
This package is an extension to the [UiPath Python SDK](https://github.com/UiPath/uipath-python) and implements the [UiPath Runtime Protocol](https://github.com/UiPath/uipath-runtime-python).
|
|
9
10
|
|
|
10
11
|
This [quickstart guide](https://uipath.github.io/uipath-python/) walks you through deploying your first agent to UiPath Cloud Platform.
|
|
11
12
|
|
|
@@ -13,7 +14,7 @@ Check out these [sample projects](https://github.com/UiPath/uipath-langchain-pyt
|
|
|
13
14
|
|
|
14
15
|
## Requirements
|
|
15
16
|
|
|
16
|
-
- Python 3.
|
|
17
|
+
- Python 3.11 or higher
|
|
17
18
|
- UiPath Automation Cloud account
|
|
18
19
|
|
|
19
20
|
## Installation
|
|
@@ -46,10 +47,12 @@ The SDK provides a command-line interface for creating, packaging, and deploying
|
|
|
46
47
|
### Initialize a Project
|
|
47
48
|
|
|
48
49
|
```bash
|
|
49
|
-
uipath init
|
|
50
|
+
uipath init
|
|
50
51
|
```
|
|
51
52
|
|
|
52
|
-
|
|
53
|
+
Running `uipath init` will process the graph definitions in the `langgraph.json` file and create the corresponding `entry-points.json` file needed for deployment.
|
|
54
|
+
|
|
55
|
+
For more details on the configuration format, see the [UiPath configuration specifications](https://github.com/UiPath/uipath-python/blob/main/specs/README.md).
|
|
53
56
|
|
|
54
57
|
### Authentication
|
|
55
58
|
|
|
@@ -100,12 +103,26 @@ Publishes the most recently created package to your UiPath Orchestrator.
|
|
|
100
103
|
To properly use the CLI for packaging and publishing, your project should include:
|
|
101
104
|
|
|
102
105
|
- A `pyproject.toml` file with project metadata
|
|
103
|
-
- A `langgraph.json` file
|
|
104
|
-
- A `
|
|
106
|
+
- A `langgraph.json` file with your graph definitions (e.g., `"graphs": {"agent": "graph.py:graph"}`)
|
|
107
|
+
- A `entry-points.json` file (generated by `uipath init`)
|
|
108
|
+
- A `bindings.json` file (generated by `uipath init`) to configure resource overrides
|
|
105
109
|
- Any Python files needed for your automation
|
|
106
110
|
|
|
107
111
|
## Development
|
|
108
112
|
|
|
113
|
+
### Developer Tools
|
|
114
|
+
|
|
115
|
+
Check out [uipath-dev](https://github.com/uipath/uipath-dev-python) - an interactive terminal application for building, testing, and debugging UiPath Python runtimes, agents, and automation scripts.
|
|
116
|
+
|
|
109
117
|
### Setting Up a Development Environment
|
|
110
118
|
|
|
111
119
|
Please read our [contribution guidelines](https://github.com/UiPath/uipath-langchain-python/blob/main/CONTRIBUTING.md) before submitting a pull request.
|
|
120
|
+
|
|
121
|
+
### Special Thanks
|
|
122
|
+
|
|
123
|
+
A huge thank-you to the open-source community and the maintainers of the libraries that make this project possible:
|
|
124
|
+
|
|
125
|
+
- [LangChain](https://github.com/langchain-ai/langchain) for providing a powerful framework for building stateful LLM applications.
|
|
126
|
+
- [Pydantic](https://github.com/pydantic/pydantic) for reliable, typed configuration and validation.
|
|
127
|
+
- [OpenInference](https://github.com/Arize-ai/openinference) for observability and instrumentation support.
|
|
128
|
+
|
|
@@ -30,8 +30,8 @@ print(retriever.invoke("What is the company policy on remote work?"))
|
|
|
30
30
|
You can easily integrate the retriever with LangChain's tool system:
|
|
31
31
|
|
|
32
32
|
```python
|
|
33
|
-
from langchain.agents import
|
|
34
|
-
from
|
|
33
|
+
from langchain.agents import create_agent
|
|
34
|
+
from langchain_core.tools.retriever import create_retriever_tool
|
|
35
35
|
from uipath_langchain.retrievers import ContextGroundingRetriever
|
|
36
36
|
|
|
37
37
|
retriever = ContextGroundingRetriever(index_name = "Company Policy Context")
|
|
@@ -47,7 +47,7 @@ retriever_tool = create_retriever_tool(
|
|
|
47
47
|
# You can use the tool in your agents
|
|
48
48
|
model = OpenAI()
|
|
49
49
|
tools = [retriever_tool]
|
|
50
|
-
agent =
|
|
50
|
+
agent = create_agent(model, tools, system_prompt="Answer user questions as best as you can using the search tool.")
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
|
|
@@ -88,4 +88,4 @@ retrieval_chain = create_retrieval_chain(vectorstore=vectorstore, model=model)
|
|
|
88
88
|
|
|
89
89
|
query = "What is the ECCN for a laptop?"
|
|
90
90
|
result = retrieval_chain(query)
|
|
91
|
-
```
|
|
91
|
+
```
|
|
@@ -6,9 +6,9 @@ wait state within the LangGraph framework.
|
|
|
6
6
|
|
|
7
7
|
## Models Overview
|
|
8
8
|
|
|
9
|
-
### 1.
|
|
9
|
+
### 1. CreateTask
|
|
10
10
|
|
|
11
|
-
The `
|
|
11
|
+
The `CreateTask` model is utilized to create an escalation action within the UiPath Action Center as part of an interrupt context. The action will rely on a previously created UiPath app.
|
|
12
12
|
After addressing the escalation, the current agent will resume execution.
|
|
13
13
|
For more information on UiPath apps, refer to the [UiPath Apps User Guide](https://docs.uipath.com/apps/automation-cloud/latest/user-guide/introduction).
|
|
14
14
|
|
|
@@ -19,35 +19,40 @@ For more information on UiPath apps, refer to the [UiPath Apps User Guide](https
|
|
|
19
19
|
- **app_key** (Optional[str]): The key of the app.
|
|
20
20
|
- **title** (str): The title of the action to create.
|
|
21
21
|
- **data** (Optional[Dict[str, Any]]): Values that the action will be populated with.
|
|
22
|
-
- **app_version** (Optional[int]): The version of the app (defaults to 1).
|
|
23
22
|
- **assignee** (Optional[str]): The username or email of the person assigned to handle the escalation.
|
|
24
23
|
|
|
25
24
|
#### Example:
|
|
26
25
|
|
|
27
26
|
```python
|
|
28
|
-
from uipath.
|
|
29
|
-
|
|
27
|
+
from uipath.platform.common import CreateTask
|
|
28
|
+
task_output = interrupt(CreateTask(app_name="AppName", app_folder_path="MyFolderPath", title="Escalate Issue", data={"key": "value"}, assignee="user@example.com"))
|
|
30
29
|
```
|
|
30
|
+
/// info
|
|
31
|
+
The return value of the interrupt is the task output. If the task did not produce any output, the return value will be the task status, e.g., `{"status": "completed"}`.
|
|
32
|
+
///
|
|
31
33
|
|
|
32
|
-
For a practical implementation of the `
|
|
34
|
+
For a practical implementation of the `CreateTask` model, refer to the [ticket-classification sample](https://github.com/UiPath/uipath-langchain-python/tree/main/samples/ticket-classification). This sample demonstrates how to create an action with dynamic input.
|
|
33
35
|
|
|
34
36
|
---
|
|
35
37
|
|
|
36
|
-
### 2.
|
|
38
|
+
### 2. WaitTask
|
|
37
39
|
|
|
38
|
-
The `
|
|
40
|
+
The `WaitTask` model is used to wait for a task to be handled. This model is intended for scenarios where the task has already been created.
|
|
39
41
|
|
|
40
42
|
#### Attributes:
|
|
41
43
|
|
|
42
|
-
- **
|
|
44
|
+
- **task** (Task): The instance of the task to wait for.
|
|
43
45
|
- **app_folder_path** (Optional[str]): The folder path of the app.
|
|
44
46
|
|
|
45
47
|
#### Example:
|
|
46
48
|
|
|
47
49
|
```python
|
|
48
|
-
from uipath.
|
|
49
|
-
|
|
50
|
+
from uipath.platform.common import WaitTask
|
|
51
|
+
task_output = interrupt(WaitTask(task=my_task_instance, app_folder_path="MyFolderPath"))
|
|
50
52
|
```
|
|
53
|
+
/// info
|
|
54
|
+
The return value of the interrupt is the task output. If the task did not produce any output, the return value will be the task status, e.g., `{"status": "completed"}`.
|
|
55
|
+
///
|
|
51
56
|
|
|
52
57
|
---
|
|
53
58
|
|
|
@@ -69,10 +74,14 @@ Upon completion of the invoked process, the current agent will automatically res
|
|
|
69
74
|
#### Example:
|
|
70
75
|
|
|
71
76
|
```python
|
|
72
|
-
from uipath.
|
|
77
|
+
from uipath.platform.common import InvokeProcess
|
|
73
78
|
process_output = interrupt(InvokeProcess(name="MyProcess", process_folder_path="MyFolderPath", input_arguments={"arg1": "value1"}))
|
|
74
79
|
```
|
|
75
80
|
|
|
81
|
+
/// info
|
|
82
|
+
The return value of the interrupt is the job output. If the job did not produce any output, the return value will be the job state, e.g., `{"state": "successful"}`.
|
|
83
|
+
///
|
|
84
|
+
|
|
76
85
|
/// warning
|
|
77
86
|
An agent can invoke itself if needed, but this must be done with caution. Be mindful that using the same name for invocation may lead to unintentional loops. To prevent recursion issues, implement safeguards like exit conditions.
|
|
78
87
|
///
|
|
@@ -94,6 +103,10 @@ the job has already been created.
|
|
|
94
103
|
#### Example:
|
|
95
104
|
|
|
96
105
|
```python
|
|
97
|
-
from uipath.
|
|
106
|
+
from uipath.platform.common import WaitJob
|
|
98
107
|
job_output = interrupt(WaitJob(job=my_job_instance, process_folder_path="MyFolderPath"))
|
|
99
108
|
```
|
|
109
|
+
|
|
110
|
+
/// info
|
|
111
|
+
The return value of the interrupt is the job output. If the job did not produce any output, the return value will be the job state, e.g., `{"state": "successful"}`.
|
|
112
|
+
///
|
|
@@ -8,12 +8,17 @@ This guide provides step-by-step instructions for setting up, creating, publishi
|
|
|
8
8
|
|
|
9
9
|
Before proceeding, ensure you have the following installed:
|
|
10
10
|
|
|
11
|
-
- Python 3.
|
|
11
|
+
- Python 3.11 or higher
|
|
12
12
|
- `pip` or `uv` package manager
|
|
13
13
|
- A UiPath Automation Cloud account with appropriate permissions
|
|
14
|
-
- An Anthropic or OpenAI API key
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
|
|
16
|
+
By default, the quickstart agent uses UiPath LLM Gateway, which provides access to any LLM provider without requiring API keys. Alternatively, you can configure your agent to connect directly to the LLM provider of your choice (such as Anthropic or OpenAI) by providing the appropriate API key as an environment variable.
|
|
17
|
+
|
|
18
|
+
For more details, see the [Chat Models documentation](https://uipath.github.io/uipath-python/langchain/chat_models/#chat-models).
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
/// info | Optional: Using alternative LLM providers
|
|
17
22
|
|
|
18
23
|
1. **Anthropic** - Generate an Anthropic API key [here](https://console.anthropic.com/settings/keys).
|
|
19
24
|
|
|
@@ -53,12 +58,12 @@ We recommend using `uv` for package management. To create a new project:
|
|
|
53
58
|
|
|
54
59
|
```shell
|
|
55
60
|
# Initialize a new uv project in the current directory
|
|
56
|
-
> uv init . --python 3.
|
|
61
|
+
> uv init . --python 3.11
|
|
57
62
|
|
|
58
63
|
# Create a new virtual environment
|
|
59
64
|
# By default, uv creates a virtual environment in a directory called .venv
|
|
60
65
|
> uv venv
|
|
61
|
-
Using CPython 3.
|
|
66
|
+
Using CPython 3.11.16 interpreter at: [PATH]
|
|
62
67
|
Creating virtual environment at: .venv
|
|
63
68
|
Activate with: source .venv/bin/activate
|
|
64
69
|
|
|
@@ -67,15 +72,12 @@ Activate with: source .venv/bin/activate
|
|
|
67
72
|
# For Windows Bash: source .venv/Scripts/activate
|
|
68
73
|
> source .venv/bin/activate
|
|
69
74
|
|
|
70
|
-
# Install the langchain anthropic package
|
|
71
|
-
> uv add langchain-anthropic
|
|
72
|
-
|
|
73
75
|
# Install the uipath package
|
|
74
76
|
> uv add uipath-langchain
|
|
75
77
|
|
|
76
78
|
# Verify the uipath installation
|
|
77
79
|
> uipath -lv
|
|
78
|
-
uipath-langchain version 0.0
|
|
80
|
+
uipath-langchain version 0.1.0
|
|
79
81
|
```
|
|
80
82
|
|
|
81
83
|
////
|
|
@@ -96,15 +98,12 @@ uipath-langchain version 0.0.100
|
|
|
96
98
|
# Upgrade pip to the latest version
|
|
97
99
|
> python -m pip install --upgrade pip
|
|
98
100
|
|
|
99
|
-
# Install the langchain anthropic package
|
|
100
|
-
> pip install langchain-anthropic
|
|
101
|
-
|
|
102
101
|
# Install the uipath package
|
|
103
102
|
> pip install uipath-langchain
|
|
104
103
|
|
|
105
104
|
# Verify the uipath installation
|
|
106
105
|
> uipath -lv
|
|
107
|
-
uipath-langchain version 0.0
|
|
106
|
+
uipath-langchain version 0.1.0
|
|
108
107
|
```
|
|
109
108
|
|
|
110
109
|
////
|
|
@@ -159,16 +158,18 @@ Selected tenant: Tenant1
|
|
|
159
158
|
⠋ Initializing UiPath project ...
|
|
160
159
|
✓ Created '.env' file.
|
|
161
160
|
✓ Created 'agent.mermaid' file.
|
|
162
|
-
✓ Created '
|
|
161
|
+
✓ Created 'entry-points.json' file.
|
|
162
|
+
✓ Created 'bindings.json' file.
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
This command creates the following files:
|
|
166
166
|
|
|
167
167
|
| File Name | Description |
|
|
168
168
|
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------- |
|
|
169
|
-
| `.env`
|
|
170
|
-
| `
|
|
171
|
-
| `
|
|
169
|
+
| `.env` | Environment variables and secrets (this file will not be packed & published) |
|
|
170
|
+
| `entry-points.json` | Contains the input/output and graph schemas of your graphs |
|
|
171
|
+
| `bindings.json` | Allows you to configure overridable resource bindings |
|
|
172
|
+
| `agent.mermaid` | Graph visual representation |
|
|
172
173
|
|
|
173
174
|
## Set Up Environment Variables
|
|
174
175
|
|
|
@@ -1,40 +1,55 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "uipath-langchain"
|
|
3
|
-
version = "0.
|
|
4
|
-
description = "UiPath
|
|
3
|
+
version = "0.1.39"
|
|
4
|
+
description = "Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform"
|
|
5
5
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
6
|
-
requires-python = ">=3.
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
7
|
dependencies = [
|
|
8
|
-
"uipath>=2.
|
|
9
|
-
"langgraph>=0.
|
|
10
|
-
"langchain-core>=0.
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"langchain-openai>=0.
|
|
14
|
-
"langchain>=0.
|
|
8
|
+
"uipath>=2.2.35, <2.3.0",
|
|
9
|
+
"langgraph>=1.0.0, <2.0.0",
|
|
10
|
+
"langchain-core>=1.0.0, <2.0.0",
|
|
11
|
+
"aiosqlite==0.21.0",
|
|
12
|
+
"langgraph-checkpoint-sqlite>=3.0.0, <4.0.0",
|
|
13
|
+
"langchain-openai>=1.0.0, <2.0.0",
|
|
14
|
+
"langchain>=1.0.0, <2.0.0",
|
|
15
15
|
"pydantic-settings>=2.6.0",
|
|
16
16
|
"python-dotenv>=1.0.1",
|
|
17
17
|
"httpx>=0.27.0",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
18
|
+
"openinference-instrumentation-langchain>=0.1.56",
|
|
19
|
+
"jsonschema-pydantic-converter>=0.1.5",
|
|
20
|
+
"jsonpath-ng>=1.7.0",
|
|
21
|
+
"mcp==1.24.0",
|
|
22
|
+
"langchain-mcp-adapters==0.2.1",
|
|
21
23
|
]
|
|
24
|
+
|
|
22
25
|
classifiers = [
|
|
23
|
-
"Development Status :: 3 - Alpha",
|
|
24
26
|
"Intended Audience :: Developers",
|
|
25
27
|
"Topic :: Software Development :: Build Tools",
|
|
26
|
-
"Programming Language :: Python :: 3.10",
|
|
27
28
|
"Programming Language :: Python :: 3.11",
|
|
28
29
|
"Programming Language :: Python :: 3.12",
|
|
30
|
+
"Programming Language :: Python :: 3.13",
|
|
29
31
|
]
|
|
30
32
|
maintainers = [
|
|
31
33
|
{ name = "Marius Cosareanu", email = "marius.cosareanu@uipath.com" },
|
|
32
34
|
{ name = "Cristian Pufu", email = "cristian.pufu@uipath.com" }
|
|
33
35
|
]
|
|
34
36
|
|
|
37
|
+
[project.optional-dependencies]
|
|
38
|
+
vertex = [
|
|
39
|
+
"langchain-google-genai>=2.0.0",
|
|
40
|
+
"google-generativeai>=0.8.0",
|
|
41
|
+
]
|
|
42
|
+
bedrock = [
|
|
43
|
+
"langchain-aws>=0.2.35",
|
|
44
|
+
"boto3-stubs>=1.41.4",
|
|
45
|
+
]
|
|
46
|
+
|
|
35
47
|
[project.entry-points."uipath.middlewares"]
|
|
36
48
|
register = "uipath_langchain.middlewares:register_middleware"
|
|
37
49
|
|
|
50
|
+
[project.entry-points."uipath.runtime.factories"]
|
|
51
|
+
langgraph = "uipath_langchain.runtime:register_runtime_factory"
|
|
52
|
+
|
|
38
53
|
[project.urls]
|
|
39
54
|
Homepage = "https://uipath.com"
|
|
40
55
|
Repository = "https://github.com/UiPath/uipath-langchain-python"
|
|
@@ -70,6 +85,8 @@ select = ["E", "F", "B", "I"]
|
|
|
70
85
|
|
|
71
86
|
[tool.ruff.lint.per-file-ignores]
|
|
72
87
|
"*" = ["E501"]
|
|
88
|
+
"src/uipath_langchain/chat/bedrock.py" = ["E402"]
|
|
89
|
+
"src/uipath_langchain/chat/vertex.py" = ["E402"]
|
|
73
90
|
|
|
74
91
|
[tool.ruff.format]
|
|
75
92
|
quote-style = "double"
|