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.
Files changed (595) hide show
  1. uipath_langchain-0.1.39/.github/copilot-instructions.md +40 -0
  2. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/integration_tests.yml +8 -9
  3. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/lint.yml +5 -4
  4. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/test.yml +1 -1
  5. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.gitignore +4 -0
  6. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.pipelines/security-scans.yml +1 -1
  7. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/PKG-INFO +46 -22
  8. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/README.md +24 -7
  9. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/context_grounding.md +4 -4
  10. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/human_in_the_loop.md +26 -13
  11. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start.md +18 -17
  12. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/pyproject.toml +32 -15
  13. {uipath_langchain-0.0.157/samples/chat-agent → uipath_langchain-0.1.39/samples/RAG-quiz-generator}/.agent/CLI_REFERENCE.md +3 -8
  14. {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/RAG-quiz-generator}/.agent/SDK_REFERENCE.md +130 -105
  15. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/entry-points.json +212 -55
  16. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/pyproject.toml +12 -7
  17. uipath_langchain-0.1.39/samples/RAG-quiz-generator/quiz-generator-RAG-agent.mermaid +13 -0
  18. uipath_langchain-0.1.39/samples/RAG-quiz-generator/researcher-RAG-agent.mermaid +12 -0
  19. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/src/agents/quiz-generator-RAG-agent.py +4 -3
  20. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/src/agents/researcher-RAG-agent.py +6 -6
  21. {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
  22. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/.agent/CLI_REFERENCE.md +3 -8
  23. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/.agent/SDK_REFERENCE.md +169 -100
  24. uipath_langchain-0.1.39/samples/calculator-agent/agent.mermaid +6 -0
  25. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/entry-points.json +35 -1
  26. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/pyproject.toml +7 -2
  27. uipath_langchain-0.1.39/samples/calculator-agent/uv.lock +2555 -0
  28. {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-agent}/.agent/CLI_REFERENCE.md +3 -8
  29. uipath_langchain-0.1.39/samples/chat-agent/.agent/SDK_REFERENCE.md +565 -0
  30. uipath_langchain-0.1.39/samples/chat-agent/agent.mermaid +9 -0
  31. {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/chat-agent}/entry-points.json +209 -107
  32. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/graph.py +3 -3
  33. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/pyproject.toml +12 -16
  34. uipath_langchain-0.1.39/samples/chat-agent/uipath.json +5 -0
  35. uipath_langchain-0.1.39/samples/chat-agent/uv.lock +2679 -0
  36. uipath_langchain-0.1.39/samples/chat-hitl-agent/.agent/CLI_REFERENCE.md +560 -0
  37. uipath_langchain-0.1.39/samples/chat-hitl-agent/.agent/SDK_REFERENCE.md +565 -0
  38. uipath_langchain-0.1.39/samples/chat-hitl-agent/README.md +80 -0
  39. uipath_langchain-0.1.39/samples/chat-hitl-agent/agent.mermaid +12 -0
  40. uipath_langchain-0.1.39/samples/chat-hitl-agent/entry-points.json +2221 -0
  41. uipath_langchain-0.1.39/samples/chat-hitl-agent/graph.py +35 -0
  42. uipath_langchain-0.1.39/samples/chat-hitl-agent/pyproject.toml +43 -0
  43. uipath_langchain-0.1.39/samples/chat-hitl-agent/uipath.json +5 -0
  44. uipath_langchain-0.1.39/samples/chat-hitl-agent/uv.lock +2679 -0
  45. uipath_langchain-0.1.39/samples/company-research-agent/.agent/CLI_REFERENCE.md +560 -0
  46. {uipath_langchain-0.0.157/samples/chat-agent → uipath_langchain-0.1.39/samples/company-research-agent}/.agent/SDK_REFERENCE.md +169 -100
  47. uipath_langchain-0.1.39/samples/company-research-agent/agent.mermaid +13 -0
  48. uipath_langchain-0.1.39/samples/company-research-agent/entry-points.json +106 -0
  49. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/company-research-agent/graph.py +3 -3
  50. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/company-research-agent/pyproject.toml +11 -6
  51. uipath_langchain-0.1.39/samples/company-research-agent/uipath.json +14 -0
  52. uipath_langchain-0.1.39/samples/company-research-agent/uv.lock +2632 -0
  53. uipath_langchain-0.1.39/samples/debug-agent/.agent/CLI_REFERENCE.md +560 -0
  54. uipath_langchain-0.1.39/samples/debug-agent/.agent/SDK_REFERENCE.md +549 -0
  55. uipath_langchain-0.1.39/samples/debug-agent/agent.mermaid +25 -0
  56. uipath_langchain-0.1.39/samples/debug-agent/entry-points.json +222 -0
  57. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/debug-agent/pyproject.toml +14 -2
  58. uipath_langchain-0.1.39/samples/debug-agent/uv.lock +2553 -0
  59. uipath_langchain-0.1.39/samples/email-organizer-agent/.agent/CLI_REFERENCE.md +560 -0
  60. uipath_langchain-0.1.39/samples/email-organizer-agent/.agent/SDK_REFERENCE.md +549 -0
  61. uipath_langchain-0.1.39/samples/email-organizer-agent/agent.mermaid +19 -0
  62. uipath_langchain-0.1.39/samples/email-organizer-agent/entry-points.json +157 -0
  63. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/pyproject.toml +10 -5
  64. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/src/email_organizer/main.py +81 -82
  65. {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/email-organizer-agent}/uv.lock +252 -98
  66. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/.agent/REQUIRED_STRUCTURE.md +2 -2
  67. {uipath_langchain-0.0.157/samples/RAG-quiz-generator → uipath_langchain-0.1.39/samples/hitl-inbox-server}/.agent/SDK_REFERENCE.md +1 -1
  68. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/main.py +1 -1
  69. uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/.agent/CLI_REFERENCE.md +560 -0
  70. uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/.agent/SDK_REFERENCE.md +619 -0
  71. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-planner-researcher-coder-distributed/README.md +2 -2
  72. uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/coder.mermaid +16 -0
  73. uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/entry-points.json +2488 -0
  74. uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/planner.mermaid +16 -0
  75. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-planner-researcher-coder-distributed/pyproject.toml +11 -6
  76. uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/researcher.mermaid +16 -0
  77. {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
  78. uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed/src/multi-agent-distributed/planner.py +235 -0
  79. {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
  80. {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
  81. uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/.agent/CLI_REFERENCE.md +560 -0
  82. uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/.agent/SDK_REFERENCE.md +619 -0
  83. uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/agent.mermaid +36 -0
  84. uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/entry-points.json +254 -0
  85. uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder/graph.py +193 -0
  86. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-supervisor-researcher-coder/pyproject.toml +12 -7
  87. {uipath_langchain-0.0.157/samples/calculator-agent → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/uv.lock +406 -671
  88. uipath_langchain-0.1.39/samples/oauth-external-apps-agent/.agent/CLI_REFERENCE.md +560 -0
  89. uipath_langchain-0.1.39/samples/oauth-external-apps-agent/.agent/SDK_REFERENCE.md +549 -0
  90. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/README.md +1 -1
  91. uipath_langchain-0.1.39/samples/oauth-external-apps-agent/agent.mermaid +9 -0
  92. uipath_langchain-0.1.39/samples/oauth-external-apps-agent/entry-points.json +82 -0
  93. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/main.py +4 -4
  94. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/pyproject.toml +11 -6
  95. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/uv.lock +184 -704
  96. uipath_langchain-0.1.39/samples/retrieval-chain/.agent/CLI_REFERENCE.md +560 -0
  97. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/.agent/REQUIRED_STRUCTURE.md +2 -2
  98. uipath_langchain-0.1.39/samples/retrieval-chain/.agent/SDK_REFERENCE.md +549 -0
  99. uipath_langchain-0.1.39/samples/retrieval-chain/entry-points.json +5 -0
  100. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/pyproject.toml +7 -2
  101. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/uv.lock +349 -928
  102. uipath_langchain-0.1.39/samples/simple-deepagent/.agent/CLI_REFERENCE.md +560 -0
  103. uipath_langchain-0.1.39/samples/simple-deepagent/.agent/SDK_REFERENCE.md +619 -0
  104. uipath_langchain-0.1.39/samples/simple-deepagent/.env.example +4 -0
  105. uipath_langchain-0.1.39/samples/simple-deepagent/agent.mermaid +20 -0
  106. uipath_langchain-0.1.39/samples/simple-deepagent/entry-points.json +2269 -0
  107. uipath_langchain-0.1.39/samples/simple-deepagent/langgraph.json +7 -0
  108. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-deepagent/pyproject.toml +11 -14
  109. uipath_langchain-0.1.39/samples/simple-deepagent/uipath.json +5 -0
  110. uipath_langchain-0.1.39/samples/simple-deepagent/uv.lock +2747 -0
  111. uipath_langchain-0.1.39/samples/simple-local-mcp/.agent/CLI_REFERENCE.md +560 -0
  112. uipath_langchain-0.1.39/samples/simple-local-mcp/.agent/SDK_REFERENCE.md +549 -0
  113. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/README.md +1 -1
  114. uipath_langchain-0.1.39/samples/simple-local-mcp/agent.mermaid +9 -0
  115. {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
  116. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/pyproject.toml +9 -4
  117. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/src/simple-local-mcp/graph.py +3 -3
  118. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/uv.lock +183 -712
  119. uipath_langchain-0.1.39/samples/simple-remote-mcp/.agent/CLI_REFERENCE.md +560 -0
  120. uipath_langchain-0.1.39/samples/simple-remote-mcp/.agent/SDK_REFERENCE.md +549 -0
  121. uipath_langchain-0.1.39/samples/simple-remote-mcp/CLAUDE.md +1 -0
  122. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/README.md +1 -1
  123. uipath_langchain-0.1.39/samples/simple-remote-mcp/agent.mermaid +6 -0
  124. uipath_langchain-0.0.157/samples/simple-deepagent/uipath.json → uipath_langchain-0.1.39/samples/simple-remote-mcp/entry-points.json +49 -13
  125. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/main.py +3 -3
  126. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/pyproject.toml +11 -6
  127. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/uv.lock +185 -714
  128. uipath_langchain-0.1.39/samples/ticket-classification/.agent/CLI_REFERENCE.md +560 -0
  129. uipath_langchain-0.1.39/samples/ticket-classification/.agent/REQUIRED_STRUCTURE.md +92 -0
  130. uipath_langchain-0.1.39/samples/ticket-classification/.agent/SDK_REFERENCE.md +549 -0
  131. uipath_langchain-0.1.39/samples/ticket-classification/AGENTS.md +21 -0
  132. uipath_langchain-0.1.39/samples/ticket-classification/CLAUDE.md +1 -0
  133. uipath_langchain-0.1.39/samples/ticket-classification/agent.mermaid +13 -0
  134. uipath_langchain-0.1.39/samples/ticket-classification/bindings.json +4 -0
  135. uipath_langchain-0.1.39/samples/ticket-classification/entry-points.json +115 -0
  136. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/main.py +4 -4
  137. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/pyproject.toml +11 -6
  138. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/uv.lock +173 -857
  139. uipath_langchain-0.1.39/scripts/lint_httpx_client.py +237 -0
  140. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/cli_init.py +3 -143
  141. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/cli_new.py +2 -3
  142. uipath_langchain-0.1.39/src/uipath_langchain/_resources/AGENTS.md +21 -0
  143. uipath_langchain-0.1.39/src/uipath_langchain/_resources/REQUIRED_STRUCTURE.md +92 -0
  144. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_tracing/_instrument_traceable.py +11 -12
  145. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_utils/_request_mixin.py +303 -43
  146. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_utils/_settings.py +5 -4
  147. uipath_langchain-0.1.39/src/uipath_langchain/agent/exceptions/__init__.py +6 -0
  148. {uipath_langchain-0.0.157/src/uipath_langchain/agent/react → uipath_langchain-0.1.39/src/uipath_langchain/agent/exceptions}/exceptions.py +1 -1
  149. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/__init__.py +5 -0
  150. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/__init__.py +13 -0
  151. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/base_action.py +24 -0
  152. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/block_action.py +42 -0
  153. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/escalate_action.py +557 -0
  154. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/filter_action.py +290 -0
  155. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/actions/log_action.py +58 -0
  156. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/guardrail_nodes.py +299 -0
  157. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/guardrails_factory.py +289 -0
  158. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/types.py +8 -0
  159. uipath_langchain-0.1.39/src/uipath_langchain/agent/guardrails/utils.py +181 -0
  160. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/__init__.py +2 -1
  161. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/agent.py +38 -8
  162. uipath_langchain-0.1.39/src/uipath_langchain/agent/react/constants.py +1 -0
  163. uipath_langchain-0.1.39/src/uipath_langchain/agent/react/guardrails/guardrails_subgraph.py +326 -0
  164. uipath_langchain-0.1.39/src/uipath_langchain/agent/react/llm_node.py +74 -0
  165. uipath_langchain-0.1.39/src/uipath_langchain/agent/react/router.py +108 -0
  166. uipath_langchain-0.1.39/src/uipath_langchain/agent/react/terminate_node.py +82 -0
  167. uipath_langchain-0.1.39/src/uipath_langchain/agent/react/types.py +53 -0
  168. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/utils.py +2 -2
  169. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/tools/__init__.py +5 -1
  170. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/tools/context_tool.py +24 -13
  171. uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/escalation_tool.py +111 -0
  172. uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/integration_tool.py +181 -0
  173. uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/mcp_tool.py +86 -0
  174. uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/process_tool.py +49 -0
  175. uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/static_args.py +116 -0
  176. uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/structured_tool_with_output_type.py +14 -0
  177. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/tools/tool_factory.py +6 -5
  178. uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/tool_node.py +150 -0
  179. uipath_langchain-0.1.39/src/uipath_langchain/agent/tools/utils.py +42 -0
  180. uipath_langchain-0.1.39/src/uipath_langchain/agent/wrappers/__init__.py +5 -0
  181. uipath_langchain-0.1.39/src/uipath_langchain/agent/wrappers/static_args_wrapper.py +34 -0
  182. uipath_langchain-0.1.39/src/uipath_langchain/chat/__init__.py +14 -0
  183. uipath_langchain-0.1.39/src/uipath_langchain/chat/bedrock.py +203 -0
  184. uipath_langchain-0.1.39/src/uipath_langchain/chat/mapper.py +327 -0
  185. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/chat/models.py +152 -86
  186. uipath_langchain-0.1.39/src/uipath_langchain/chat/openai.py +163 -0
  187. uipath_langchain-0.1.39/src/uipath_langchain/chat/supported_models.py +51 -0
  188. uipath_langchain-0.1.39/src/uipath_langchain/chat/vertex.py +271 -0
  189. uipath_langchain-0.1.39/src/uipath_langchain/embeddings/embeddings.py +215 -0
  190. uipath_langchain-0.1.39/src/uipath_langchain/middlewares.py +10 -0
  191. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/retrievers/context_grounding_retriever.py +7 -9
  192. uipath_langchain-0.1.39/src/uipath_langchain/runtime/__init__.py +36 -0
  193. uipath_langchain-0.1.39/src/uipath_langchain/runtime/_serialize.py +46 -0
  194. uipath_langchain-0.1.39/src/uipath_langchain/runtime/config.py +61 -0
  195. 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
  196. uipath_langchain-0.1.39/src/uipath_langchain/runtime/factory.py +315 -0
  197. uipath_langchain-0.1.39/src/uipath_langchain/runtime/graph.py +159 -0
  198. 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
  199. uipath_langchain-0.1.39/src/uipath_langchain/runtime/schema.py +442 -0
  200. uipath_langchain-0.1.39/src/uipath_langchain/runtime/storage.py +115 -0
  201. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/vectorstores/context_grounding_vectorstore.py +2 -2
  202. uipath_langchain-0.1.39/testcases/chat-models/expected_traces.json +24 -0
  203. uipath_langchain-0.1.39/testcases/chat-models/input.json +3 -0
  204. uipath_langchain-0.1.39/testcases/chat-models/pyproject.toml +20 -0
  205. uipath_langchain-0.1.39/testcases/chat-models/run.sh +26 -0
  206. uipath_langchain-0.1.39/testcases/chat-models/src/assert.py +72 -0
  207. uipath_langchain-0.1.39/testcases/chat-models/src/main.py +340 -0
  208. uipath_langchain-0.1.39/testcases/common/__init__.py +15 -0
  209. uipath_langchain-0.1.39/testcases/common/console.py +444 -0
  210. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/common/trace_assert.py +20 -8
  211. uipath_langchain-0.1.39/testcases/company-research-agent/expected_traces.json +45 -0
  212. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/pyproject.toml +3 -6
  213. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/src/assert.py +5 -0
  214. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/src/graph.py +10 -18
  215. uipath_langchain-0.1.39/testcases/debug-breakpoints/bindings.json +4 -0
  216. uipath_langchain-0.1.39/testcases/debug-breakpoints/entry-points.json +144 -0
  217. uipath_langchain-0.1.39/testcases/debug-breakpoints/expected_traces.json +11 -0
  218. uipath_langchain-0.1.39/testcases/debug-breakpoints/input.json +1 -0
  219. uipath_langchain-0.1.39/testcases/debug-breakpoints/langgraph.json +9 -0
  220. uipath_langchain-0.1.39/testcases/debug-breakpoints/pyproject.toml +26 -0
  221. uipath_langchain-0.1.39/testcases/debug-breakpoints/run.sh +20 -0
  222. uipath_langchain-0.1.39/testcases/debug-breakpoints/src/assert.py +16 -0
  223. uipath_langchain-0.1.39/testcases/debug-breakpoints/src/main.py +191 -0
  224. uipath_langchain-0.1.39/testcases/debug-breakpoints/src/test_debug.py +260 -0
  225. uipath_langchain-0.1.39/testcases/dev-console/bindings.json +4 -0
  226. uipath_langchain-0.1.39/testcases/dev-console/input.json +5 -0
  227. uipath_langchain-0.1.39/testcases/dev-console/langgraph.json +7 -0
  228. uipath_langchain-0.1.39/testcases/dev-console/pyproject.toml +26 -0
  229. uipath_langchain-0.1.39/testcases/dev-console/run.sh +20 -0
  230. uipath_langchain-0.1.39/testcases/dev-console/src/assert.py +16 -0
  231. uipath_langchain-0.1.39/testcases/dev-console/src/graph.py +60 -0
  232. uipath_langchain-0.1.39/testcases/dev-console/src/test_dev.py +392 -0
  233. uipath_langchain-0.1.39/testcases/init-flow/expected_traces.json +26 -0
  234. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/init-flow/pyproject.toml +1 -1
  235. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/init-flow/src/assert.py +5 -1
  236. uipath_langchain-0.1.39/testcases/simple-local-mcp/expected_traces.json +83 -0
  237. uipath_langchain-0.1.39/testcases/simple-local-mcp/input.json +12 -0
  238. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/pyproject.toml +1 -1
  239. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/src/simple-local-mcp/graph.py +3 -6
  240. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/src/simple-local-mcp/weather_server.py +1 -1
  241. uipath_langchain-0.1.39/testcases/ticket-classification/expected_traces.json +26 -0
  242. uipath_langchain-0.1.39/testcases/ticket-classification/langgraph.json +9 -0
  243. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/pyproject.toml +1 -1
  244. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/src/assert.py +6 -0
  245. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/src/main.py +18 -21
  246. uipath_langchain-0.1.39/tests/agent/guardrails/actions/test_block_action.py +76 -0
  247. uipath_langchain-0.1.39/tests/agent/guardrails/actions/test_escalate_action.py +1437 -0
  248. uipath_langchain-0.1.39/tests/agent/guardrails/actions/test_filter_action.py +499 -0
  249. uipath_langchain-0.1.39/tests/agent/guardrails/actions/test_log_action.py +98 -0
  250. uipath_langchain-0.1.39/tests/agent/guardrails/test_agent_init_guardrails_subgraph.py +105 -0
  251. uipath_langchain-0.1.39/tests/agent/guardrails/test_agent_terminate_guardrails_subgraph.py +128 -0
  252. uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrail_nodes.py +511 -0
  253. uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrail_stage_filtering.py +59 -0
  254. uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrail_utils.py +105 -0
  255. uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrails_factory.py +746 -0
  256. uipath_langchain-0.1.39/tests/agent/guardrails/test_guardrails_utils.py +113 -0
  257. uipath_langchain-0.1.39/tests/agent/guardrails/test_llm_guardrails_subgraph.py +113 -0
  258. uipath_langchain-0.1.39/tests/agent/guardrails/test_tool_guardrails_subgraph.py +131 -0
  259. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/agent/react/test_utils.py +14 -14
  260. uipath_langchain-0.1.39/tests/agent/tools/test_integration_tool.py +226 -0
  261. uipath_langchain-0.1.39/tests/agent/tools/test_static_args.py +416 -0
  262. uipath_langchain-0.1.39/tests/agent/tools/test_tool_node.py +319 -0
  263. uipath_langchain-0.1.39/tests/agent/tools/test_utils.py +124 -0
  264. uipath_langchain-0.1.39/tests/chat/__init__.py +0 -0
  265. uipath_langchain-0.1.39/tests/chat/test_openai_url_rewrite.py +82 -0
  266. uipath_langchain-0.1.39/tests/cli/test_graph.py +296 -0
  267. uipath_langchain-0.1.39/tests/cli/test_run.py +130 -0
  268. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/test_schema.py +15 -15
  269. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/action_trigger_hitl.py +7 -7
  270. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/job_trigger_hitl.py +4 -4
  271. uipath_langchain-0.1.39/tests/hitl/test_action_trigger.py +270 -0
  272. uipath_langchain-0.1.39/tests/hitl/test_hitl_api_trigger.py +151 -0
  273. uipath_langchain-0.1.39/tests/hitl/test_hitl_job_trigger.py +244 -0
  274. {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39}/uv.lock +1421 -907
  275. uipath_langchain-0.0.157/samples/RAG-quiz-generator/quiz-generator-RAG-agent.mermaid +0 -21
  276. uipath_langchain-0.0.157/samples/RAG-quiz-generator/researcher-RAG-agent.mermaid +0 -20
  277. uipath_langchain-0.0.157/samples/calculator-agent/agent.mermaid +0 -14
  278. uipath_langchain-0.0.157/samples/chat-agent/agent.mermaid +0 -17
  279. uipath_langchain-0.0.157/samples/chat-agent/entry-points.json +0 -146
  280. uipath_langchain-0.0.157/samples/chat-agent/uv.lock +0 -3307
  281. uipath_langchain-0.0.157/samples/company-research-agent/.agent/SDK_REFERENCE.md +0 -480
  282. uipath_langchain-0.0.157/samples/company-research-agent/agent.mermaid +0 -23
  283. uipath_langchain-0.0.157/samples/company-research-agent/entry-points.json +0 -34
  284. uipath_langchain-0.0.157/samples/company-research-agent/uv.lock +0 -3307
  285. uipath_langchain-0.0.157/samples/debug-agent/.agent/CLI_REFERENCE.md +0 -565
  286. uipath_langchain-0.0.157/samples/debug-agent/agent.mermaid +0 -33
  287. uipath_langchain-0.0.157/samples/debug-agent/entry-points.json +0 -84
  288. uipath_langchain-0.0.157/samples/email-organizer-agent/.agent/CLI_REFERENCE.md +0 -565
  289. uipath_langchain-0.0.157/samples/email-organizer-agent/.agent/SDK_REFERENCE.md +0 -480
  290. uipath_langchain-0.0.157/samples/email-organizer-agent/agent.mermaid +0 -27
  291. uipath_langchain-0.0.157/samples/email-organizer-agent/entry-points.json +0 -52
  292. uipath_langchain-0.0.157/samples/email-organizer-agent/uv.lock +0 -3277
  293. uipath_langchain-0.0.157/samples/hitl-inbox-server/.agent/CLI_REFERENCE.md +0 -565
  294. uipath_langchain-0.0.157/samples/hitl-inbox-server/.agent/SDK_REFERENCE.md +0 -480
  295. uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/.agent/CLI_REFERENCE.md +0 -565
  296. uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/.agent/SDK_REFERENCE.md +0 -480
  297. uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/coder.mermaid +0 -23
  298. uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/planner.mermaid +0 -18
  299. uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/researcher.mermaid +0 -23
  300. uipath_langchain-0.0.157/samples/multi-agent-planner-researcher-coder-distributed/src/multi-agent-distributed/planner.py +0 -212
  301. uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/.agent/CLI_REFERENCE.md +0 -565
  302. uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/.agent/SDK_REFERENCE.md +0 -480
  303. uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/agent.mermaid +0 -40
  304. uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/entry-points.json +0 -34
  305. uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder/graph.py +0 -133
  306. uipath_langchain-0.0.157/samples/oauth-external-apps-agent/.agent/CLI_REFERENCE.md +0 -565
  307. uipath_langchain-0.0.157/samples/oauth-external-apps-agent/.agent/SDK_REFERENCE.md +0 -480
  308. uipath_langchain-0.0.157/samples/oauth-external-apps-agent/agent.mermaid +0 -17
  309. uipath_langchain-0.0.157/samples/oauth-external-apps-agent/entry-points.json +0 -32
  310. uipath_langchain-0.0.157/samples/retrieval-chain/.agent/CLI_REFERENCE.md +0 -565
  311. uipath_langchain-0.0.157/samples/retrieval-chain/.agent/SDK_REFERENCE.md +0 -480
  312. uipath_langchain-0.0.157/samples/retrieval-chain/entry-points.json +0 -33
  313. uipath_langchain-0.0.157/samples/simple-deepagent/uv.lock +0 -3314
  314. uipath_langchain-0.0.157/samples/simple-local-mcp/.agent/CLI_REFERENCE.md +0 -565
  315. uipath_langchain-0.0.157/samples/simple-local-mcp/.agent/SDK_REFERENCE.md +0 -480
  316. uipath_langchain-0.0.157/samples/simple-local-mcp/agent.mermaid +0 -17
  317. uipath_langchain-0.0.157/samples/simple-local-mcp/entry-points.json +0 -146
  318. uipath_langchain-0.0.157/samples/simple-remote-mcp/.agent/CLI_REFERENCE.md +0 -565
  319. uipath_langchain-0.0.157/samples/simple-remote-mcp/.agent/SDK_REFERENCE.md +0 -480
  320. uipath_langchain-0.0.157/samples/simple-remote-mcp/agent.mermaid +0 -14
  321. uipath_langchain-0.0.157/samples/simple-remote-mcp/uipath.json +0 -1
  322. uipath_langchain-0.0.157/samples/ticket-classification/.agent/CLI_REFERENCE.md +0 -565
  323. uipath_langchain-0.0.157/samples/ticket-classification/.agent/SDK_REFERENCE.md +0 -480
  324. uipath_langchain-0.0.157/samples/ticket-classification/agent.mermaid +0 -21
  325. uipath_langchain-0.0.157/samples/ticket-classification/entry-points.json +0 -43
  326. uipath_langchain-0.0.157/samples/ticket-classification/uipath.json +0 -1
  327. uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_conversation.py +0 -306
  328. uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_graph_resolver.py +0 -141
  329. uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_input.py +0 -147
  330. uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_memory.py +0 -26
  331. uipath_langchain-0.0.157/src/uipath_langchain/_cli/_runtime/_output.py +0 -150
  332. uipath_langchain-0.0.157/src/uipath_langchain/_cli/_utils/_graph.py +0 -199
  333. uipath_langchain-0.0.157/src/uipath_langchain/_cli/_utils/_schema.py +0 -137
  334. uipath_langchain-0.0.157/src/uipath_langchain/_cli/cli_debug.py +0 -90
  335. uipath_langchain-0.0.157/src/uipath_langchain/_cli/cli_dev.py +0 -63
  336. uipath_langchain-0.0.157/src/uipath_langchain/_cli/cli_eval.py +0 -100
  337. uipath_langchain-0.0.157/src/uipath_langchain/_cli/cli_run.py +0 -98
  338. uipath_langchain-0.0.157/src/uipath_langchain/_tracing/_utils.py +0 -28
  339. uipath_langchain-0.0.157/src/uipath_langchain/agent/react/constants.py +0 -2
  340. uipath_langchain-0.0.157/src/uipath_langchain/agent/react/llm_node.py +0 -43
  341. uipath_langchain-0.0.157/src/uipath_langchain/agent/react/router.py +0 -97
  342. uipath_langchain-0.0.157/src/uipath_langchain/agent/react/terminate_node.py +0 -53
  343. uipath_langchain-0.0.157/src/uipath_langchain/agent/react/types.py +0 -27
  344. uipath_langchain-0.0.157/src/uipath_langchain/agent/tools/integration_tool.py +0 -104
  345. uipath_langchain-0.0.157/src/uipath_langchain/agent/tools/process_tool.py +0 -50
  346. uipath_langchain-0.0.157/src/uipath_langchain/agent/tools/tool_node.py +0 -22
  347. uipath_langchain-0.0.157/src/uipath_langchain/agent/tools/utils.py +0 -11
  348. uipath_langchain-0.0.157/src/uipath_langchain/chat/__init__.py +0 -6
  349. uipath_langchain-0.0.157/src/uipath_langchain/embeddings/embeddings.py +0 -112
  350. uipath_langchain-0.0.157/src/uipath_langchain/middlewares.py +0 -18
  351. uipath_langchain-0.0.157/src/uipath_langchain/runtime_factories.py +0 -20
  352. uipath_langchain-0.0.157/testcases/company-research-agent/expected_traces.json +0 -41
  353. uipath_langchain-0.0.157/testcases/init-flow/expected_traces.json +0 -32
  354. uipath_langchain-0.0.157/testcases/simple-local-mcp/expected_traces.json +0 -42
  355. uipath_langchain-0.0.157/testcases/simple-local-mcp/input.json +0 -12
  356. uipath_langchain-0.0.157/testcases/ticket-classification/expected_traces.json +0 -32
  357. uipath_langchain-0.0.157/tests/cli/test_run.py +0 -95
  358. uipath_langchain-0.0.157/tests/hitl/test_action_trigger.py +0 -193
  359. uipath_langchain-0.0.157/tests/hitl/test_hitl_api_trigger.py +0 -89
  360. uipath_langchain-0.0.157/tests/hitl/test_hitl_default_escalation.py +0 -143
  361. uipath_langchain-0.0.157/tests/hitl/test_hitl_job_trigger.py +0 -159
  362. uipath_langchain-0.0.157/uv.lock +0 -3383
  363. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.cursorrules +0 -0
  364. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.editorconfig +0 -0
  365. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.gitattributes +0 -0
  366. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/cd.yml +0 -0
  367. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/ci.yml +0 -0
  368. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/commitlint.yml +0 -0
  369. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/lint-custom-version.yml +0 -0
  370. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/publish-dev.yml +0 -0
  371. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/publish-docs.yml +0 -0
  372. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/publish-prior-stable-version.yml +0 -0
  373. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/slack.yml +0 -0
  374. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.github/workflows/test-custom-version.yml +0 -0
  375. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.pipelines/variables.yml +0 -0
  376. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.pre-commit-config.yaml +0 -0
  377. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.python-version +0 -0
  378. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.vscode/extensions.json +0 -0
  379. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/.vscode/settings.json +0 -0
  380. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/CONTRIBUTING.md +0 -0
  381. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/LICENSE +0 -0
  382. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/chat_models.md +0 -0
  383. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start_images/cloud_env_var_dark.png +0 -0
  384. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start_images/cloud_env_var_light.png +0 -0
  385. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start_images/invoke_output_dark.png +0 -0
  386. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/quick_start_images/invoke_output_light.png +0 -0
  387. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/click-storage-bucket.png +0 -0
  388. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-index-1.png +0 -0
  389. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-index-2.png +0 -0
  390. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-process.png +0 -0
  391. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-quiz-generator.png +0 -0
  392. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-storage-bucket-1.png +0 -0
  393. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/create-storage-bucket-2.png +0 -0
  394. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/folder-path.png +0 -0
  395. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/job-info.png +0 -0
  396. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/output.png +0 -0
  397. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/process-page.png +0 -0
  398. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/researcher-1.png +0 -0
  399. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/researcher-2.png +0 -0
  400. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/run-process-1.png +0 -0
  401. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/run-process-2.png +0 -0
  402. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/RAG/storage-bucket-content.png +0 -0
  403. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/coder-agent-package-overview.png +0 -0
  404. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/coder-agent-process-configuration.png +0 -0
  405. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/planner-agent-package-overview.png +0 -0
  406. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/planner-agent-process-configuration.png +0 -0
  407. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/researcher-agent-package-overview.png +0 -0
  408. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/multi-agent-distributed/researcher-agent-process-configuration.png +0 -0
  409. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/activate-apps.png +0 -0
  410. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/activate-deployment.png +0 -0
  411. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/copy-folder-path.png +0 -0
  412. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/deploy-solution-package-wizard.png +0 -0
  413. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/deploy-solution-package.png +0 -0
  414. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/monitor-agent.png +0 -0
  415. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/navigate-to-solution-folder.png +0 -0
  416. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/resume-condition.png +0 -0
  417. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/run-agent.png +0 -0
  418. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/solution-destination-folder.png +0 -0
  419. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/start-job.png +0 -0
  420. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/docs/sample_images/ticket-classification/upload-solution-package.png +0 -0
  421. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/.agent/REQUIRED_STRUCTURE.md +0 -0
  422. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/AGENTS.md +0 -0
  423. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/CLAUDE.md +0 -0
  424. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/README.md +0 -0
  425. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/bindings.json +0 -0
  426. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/env.example +0 -0
  427. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/input.example/quiz-generator-debug-input.json +0 -0
  428. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/input.example/researcher-debug-input.json +0 -0
  429. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/langgraph.json +0 -0
  430. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/RAG-quiz-generator/uipath.json +0 -0
  431. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/README.md +0 -0
  432. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/.agent/REQUIRED_STRUCTURE.md +0 -0
  433. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/AGENTS.md +0 -0
  434. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/CLAUDE.md +0 -0
  435. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/README.md +0 -0
  436. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/bindings.json +0 -0
  437. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/graph.py +0 -0
  438. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/langgraph.json +0 -0
  439. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/calculator-agent/uipath.json +0 -0
  440. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/.agent/REQUIRED_STRUCTURE.md +0 -0
  441. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/.env.example +0 -0
  442. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/AGENTS.md +0 -0
  443. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/CLAUDE.md +0 -0
  444. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/README.md +0 -0
  445. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/bindings.json +0 -0
  446. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/chat-agent/langgraph.json +0 -0
  447. {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  448. {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/.env.example +0 -0
  449. {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/AGENTS.md +0 -0
  450. {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/CLAUDE.md +0 -0
  451. {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/bindings.json +0 -0
  452. {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/chat-hitl-agent}/langgraph.json +0 -0
  453. {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  454. {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
  455. {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/AGENTS.md +0 -0
  456. {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/CLAUDE.md +0 -0
  457. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/company-research-agent/README.md +0 -0
  458. {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/bindings.json +0 -0
  459. {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/company-research-agent}/langgraph.json +0 -0
  460. {uipath_langchain-0.0.157/samples/email-organizer-agent → uipath_langchain-0.1.39/samples/debug-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  461. {uipath_langchain-0.0.157/samples/email-organizer-agent → uipath_langchain-0.1.39/samples/debug-agent}/AGENTS.md +0 -0
  462. {uipath_langchain-0.0.157/samples/email-organizer-agent → uipath_langchain-0.1.39/samples/debug-agent}/CLAUDE.md +0 -0
  463. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/debug-agent/README.md +0 -0
  464. {uipath_langchain-0.0.157/samples/email-organizer-agent → uipath_langchain-0.1.39/samples/debug-agent}/bindings.json +0 -0
  465. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/debug-agent/graph.py +0 -0
  466. {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39/samples/debug-agent}/langgraph.json +0 -0
  467. {uipath_langchain-0.0.157/samples/chat-agent → uipath_langchain-0.1.39/samples/debug-agent}/uipath.json +0 -0
  468. {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
  469. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/.env.template +0 -0
  470. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/.python-version +0 -0
  471. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/.vscode/launch.json +0 -0
  472. {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
  473. {uipath_langchain-0.0.157/samples/hitl-inbox-server → uipath_langchain-0.1.39/samples/email-organizer-agent}/CLAUDE.md +0 -0
  474. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/README.md +0 -0
  475. {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
  476. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/input.json +0 -0
  477. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/langgraph.json +0 -0
  478. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/src/email_organizer/__init__.py +0 -0
  479. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/email-organizer-agent/src/email_organizer/outlook_client.py +0 -0
  480. {uipath_langchain-0.0.157/samples/company-research-agent → uipath_langchain-0.1.39/samples/email-organizer-agent}/uipath.json +0 -0
  481. {uipath_langchain-0.0.157/samples/RAG-quiz-generator → uipath_langchain-0.1.39/samples/hitl-inbox-server}/.agent/CLI_REFERENCE.md +0 -0
  482. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/AGENTS.md +0 -0
  483. {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
  484. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/README.md +0 -0
  485. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/bindings.json +0 -0
  486. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/database.py +0 -0
  487. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/entry-points.json +0 -0
  488. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/models.py +0 -0
  489. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/pyproject.toml +0 -0
  490. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/schemas.py +0 -0
  491. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/templates/index.html +0 -0
  492. {uipath_langchain-0.0.157/samples/debug-agent → uipath_langchain-0.1.39/samples/hitl-inbox-server}/uipath.json +0 -0
  493. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/hitl-inbox-server/uv.lock +0 -0
  494. {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
  495. {uipath_langchain-0.0.157/samples/simple-deepagent → uipath_langchain-0.1.39/samples/multi-agent-planner-researcher-coder-distributed}/.env.example +0 -0
  496. {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
  497. {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
  498. {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
  499. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-planner-researcher-coder-distributed/langgraph.json +0 -0
  500. {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
  501. {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
  502. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-supervisor-researcher-coder/.env.example +0 -0
  503. {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
  504. {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
  505. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/multi-agent-supervisor-researcher-coder/README.md +0 -0
  506. {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
  507. {uipath_langchain-0.0.157/samples/simple-deepagent → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/langgraph.json +0 -0
  508. {uipath_langchain-0.0.157/samples/hitl-inbox-server → uipath_langchain-0.1.39/samples/multi-agent-supervisor-researcher-coder}/uipath.json +0 -0
  509. {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
  510. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/.env.example +0 -0
  511. {uipath_langchain-0.0.157/samples/simple-local-mcp → uipath_langchain-0.1.39/samples/oauth-external-apps-agent}/AGENTS.md +0 -0
  512. {uipath_langchain-0.0.157/samples/retrieval-chain → uipath_langchain-0.1.39/samples/oauth-external-apps-agent}/CLAUDE.md +0 -0
  513. {uipath_langchain-0.0.157/samples/retrieval-chain → uipath_langchain-0.1.39/samples/oauth-external-apps-agent}/bindings.json +0 -0
  514. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/input.json +0 -0
  515. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/oauth-external-apps-agent/langgraph.json +0 -0
  516. {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
  517. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/.env.example +0 -0
  518. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/AGENTS.md +0 -0
  519. {uipath_langchain-0.0.157/samples/simple-local-mcp → uipath_langchain-0.1.39/samples/retrieval-chain}/CLAUDE.md +0 -0
  520. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/README.md +0 -0
  521. {uipath_langchain-0.0.157/samples/simple-deepagent → uipath_langchain-0.1.39/samples/retrieval-chain}/bindings.json +0 -0
  522. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/retrieval-chain/main.py +0 -0
  523. {uipath_langchain-0.0.157/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.39/samples/retrieval-chain}/uipath.json +0 -0
  524. {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/simple-deepagent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  525. {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/simple-deepagent}/AGENTS.md +0 -0
  526. {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/simple-deepagent}/CLAUDE.md +0 -0
  527. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-deepagent/README.md +0 -0
  528. {uipath_langchain-0.0.157/samples/simple-local-mcp → uipath_langchain-0.1.39/samples/simple-deepagent}/bindings.json +0 -0
  529. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-deepagent/graph.py +0 -0
  530. {uipath_langchain-0.0.157/samples/ticket-classification → uipath_langchain-0.1.39/samples/simple-local-mcp}/.agent/REQUIRED_STRUCTURE.md +0 -0
  531. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/.env.example +0 -0
  532. {uipath_langchain-0.0.157/samples/ticket-classification → uipath_langchain-0.1.39/samples/simple-local-mcp}/AGENTS.md +0 -0
  533. {uipath_langchain-0.0.157/samples/ticket-classification → uipath_langchain-0.1.39/samples/simple-local-mcp}/CLAUDE.md +0 -0
  534. {uipath_langchain-0.0.157/samples/simple-remote-mcp → uipath_langchain-0.1.39/samples/simple-local-mcp}/bindings.json +0 -0
  535. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/langgraph.json +0 -0
  536. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/src/simple-local-mcp/math_server.py +0 -0
  537. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-local-mcp/src/simple-local-mcp/weather_server.py +0 -0
  538. {uipath_langchain-0.0.157/samples/oauth-external-apps-agent → uipath_langchain-0.1.39/samples/simple-local-mcp}/uipath.json +0 -0
  539. {uipath_langchain-0.0.157/src/uipath_langchain/_resources → uipath_langchain-0.1.39/samples/simple-remote-mcp/.agent}/REQUIRED_STRUCTURE.md +0 -0
  540. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/.env.example +0 -0
  541. {uipath_langchain-0.0.157/src/uipath_langchain/_resources → uipath_langchain-0.1.39/samples/simple-remote-mcp}/AGENTS.md +0 -0
  542. {uipath_langchain-0.0.157/samples/ticket-classification → uipath_langchain-0.1.39/samples/simple-remote-mcp}/bindings.json +0 -0
  543. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/simple-remote-mcp/langgraph.json +0 -0
  544. {uipath_langchain-0.0.157/samples/retrieval-chain → uipath_langchain-0.1.39/samples/simple-remote-mcp}/uipath.json +0 -0
  545. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/.env.example +0 -0
  546. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/README.md +0 -0
  547. {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
  548. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/samples/ticket-classification/langgraph.json +0 -0
  549. {uipath_langchain-0.0.157/samples/simple-local-mcp → uipath_langchain-0.1.39/samples/ticket-classification}/uipath.json +0 -0
  550. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/__init__.py +0 -0
  551. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/__init__.py +0 -0
  552. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/_templates/langgraph.json.template +0 -0
  553. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_cli/_templates/main.py.template +0 -0
  554. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_tracing/__init__.py +0 -0
  555. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_utils/__init__.py +0 -0
  556. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/_utils/_sleep_policy.py +0 -0
  557. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/init_node.py +0 -0
  558. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/tools/__init__.py +0 -0
  559. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/agent/react/tools/tools.py +0 -0
  560. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/embeddings/__init__.py +0 -0
  561. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/py.typed +0 -0
  562. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/retrievers/__init__.py +0 -0
  563. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/src/uipath_langchain/vectorstores/__init__.py +0 -0
  564. {uipath_langchain-0.0.157/testcases/ticket-classification → uipath_langchain-0.1.39/testcases/chat-models}/langgraph.json +0 -0
  565. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/common/validate_output.sh +0 -0
  566. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/expected_raw.json +0 -0
  567. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/input.json +0 -0
  568. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/langgraph.json +0 -0
  569. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/run.sh +0 -0
  570. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/company-research-agent/uv.lock +0 -0
  571. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/init-flow/input.json +0 -0
  572. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/init-flow/run.sh +0 -0
  573. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/langgraph.json +0 -0
  574. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/run.sh +0 -0
  575. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/src/assert.py +0 -0
  576. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/src/simple-local-mcp/math_server.py +0 -0
  577. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/simple-local-mcp/uv.lock +0 -0
  578. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/input.json +0 -0
  579. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/raw_traces.jsonl +0 -0
  580. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/run.sh +0 -0
  581. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/testcases/ticket-classification/uv.lock +0 -0
  582. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/__init__.py +0 -0
  583. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/agent/react/__init__.py +0 -0
  584. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/conftest.py +0 -0
  585. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/mocks/langgraph.json +0 -0
  586. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/mocks/simple_agent.py +0 -0
  587. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/mocks/uipath.json +0 -0
  588. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/cli/test_init.py +0 -0
  589. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/__init__.py +0 -0
  590. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/conftest.py +0 -0
  591. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/api_trigger_hitl.py +0 -0
  592. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/langgraph.json +0 -0
  593. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/uipath-default-escalation.json +0 -0
  594. {uipath_langchain-0.0.157 → uipath_langchain-0.1.39}/tests/hitl/mocks/uipath.json +0 -0
  595. {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)
@@ -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] # temporary disable [cloud]
48
- use_azure_chat: [true, false]
49
+ environment: [alpha, cloud, staging]
49
50
 
50
- name: "${{ matrix.testcase }} / ${{ matrix.environment }} / ${{ matrix.use_azure_chat && 'UiPathAzureChatOpenAI' || 'UiPathChat' }}"
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
- 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 }}
62
- 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 }}
63
- BASE_URL: ${{ matrix.environment == 'alpha' && secrets.ALPHA_BASE_URL || matrix.environment == 'staging' && secrets.STAGING_BASE_URL || matrix.environment == 'cloud' && secrets.CLOUD_BASE_URL }}
64
- USE_AZURE_CHAT: ${{ matrix.use_azure_chat }}
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
@@ -16,7 +16,7 @@ jobs:
16
16
  runs-on: ${{ matrix.os }}
17
17
  strategy:
18
18
  matrix:
19
- python-version: ["3.10", "3.11", "3.12", "3.13"]
19
+ python-version: ["3.11", "3.12", "3.13"]
20
20
  os: [ubuntu-latest, windows-latest]
21
21
 
22
22
  permissions:
@@ -179,3 +179,7 @@ cython_debug/
179
179
  **/**.nupkg
180
180
  **/__uipath/
181
181
  **/.langgraph_api
182
+ **/testcases/**/uipath.json
183
+
184
+ /playground.py
185
+ /.claude/settings.local.json
@@ -19,7 +19,7 @@ resources:
19
19
  - repository: fossa
20
20
  type: github
21
21
  name: UiPath/AzurePipelinesTemplates
22
- ref: refs/tags/uipath.security.fossa.3.0.13
22
+ ref: refs/tags/uipath.security.fossa.3.0.15
23
23
  endpoint: UiPath
24
24
 
25
25
  variables:
@@ -1,42 +1,50 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uipath-langchain
3
- Version: 0.0.157
4
- Summary: UiPath Langchain
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.10
15
+ Requires-Python: >=3.11
16
+ Requires-Dist: aiosqlite==0.21.0
17
17
  Requires-Dist: httpx>=0.27.0
18
- Requires-Dist: jsonschema-pydantic>=0.6
19
- Requires-Dist: langchain-community>=0.3.21
20
- Requires-Dist: langchain-core>=0.3.34
21
- Requires-Dist: langchain-openai>=0.3.3
22
- Requires-Dist: langchain>=0.3.4
23
- Requires-Dist: langgraph-checkpoint-sqlite>=2.0.3
24
- Requires-Dist: langgraph<0.7.0,>=0.5.0
25
- Requires-Dist: openai>=1.65.5
26
- Requires-Dist: openinference-instrumentation-langchain>=0.1.50
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.2.0,>=2.1.173
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
+ [![PyPI - Version](https://img.shields.io/pypi/v/uipath-langchain)](https://pypi.org/project/uipath-langchain/)
34
42
  [![PyPI downloads](https://img.shields.io/pypi/dm/uipath-langchain.svg)](https://pypi.org/project/uipath-langchain/)
35
43
  [![Python versions](https://img.shields.io/pypi/pyversions/uipath-langchain.svg)](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. This package provides programmatic interaction with UiPath Cloud Platform services and human-in-the-loop (HITL) semantics through Action Center integration.
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.10 or higher
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 [GRAPH]
88
+ uipath init
81
89
  ```
82
90
 
83
- Creates 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.
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 `uipath.json` file (generated by `uipath init`)
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
+ [![PyPI - Version](https://img.shields.io/pypi/v/uipath-langchain)](https://pypi.org/project/uipath-langchain/)
3
4
  [![PyPI downloads](https://img.shields.io/pypi/dm/uipath-langchain.svg)](https://pypi.org/project/uipath-langchain/)
4
5
  [![Python versions](https://img.shields.io/pypi/pyversions/uipath-langchain.svg)](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. This package provides programmatic interaction with UiPath Cloud Platform services and human-in-the-loop (HITL) semantics through Action Center integration.
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.10 or higher
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 [GRAPH]
50
+ uipath init
50
51
  ```
51
52
 
52
- Creates 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.
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 `uipath.json` file (generated by `uipath init`)
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 create_react_agent
34
- from langchain.tools.retriever import create_retriever_tool
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 = create_react_agent(model, tools, prompt="Answer user questions as best as you can using the search tool.")
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. CreateAction
9
+ ### 1. CreateTask
10
10
 
11
- The `CreateAction` 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.
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.models import CreateAction
29
- action_output = interrupt(CreateAction(app_name="AppName", app_folder_path="MyFolderPath", title="Escalate Issue", data={"key": "value"}, app_version=1, assignee="user@example.com"))
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 `CreateAction` 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.
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. WaitAction
38
+ ### 2. WaitTask
37
39
 
38
- The `WaitAction` model is used to wait for an action to be handled. This model is intended for scenarios where the action has already been created.
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
- - **action** (Action): The instance of the action to wait for.
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.models import WaitAction
49
- action_output = interrupt(WaitAction(action=my_action_instance, app_folder_path="MyFolderPath"))
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.models import InvokeProcess
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.models import WaitJob
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.10 or higher
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
- /// info
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.10
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.10.16 interpreter at: [PATH]
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.100
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.100
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 'uipath.json' file.
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` | Environment variables and secrets (this file will not be packed & published). |
170
- | `uipath.json` | Input/output JSON schemas and bindings. |
171
- | `agent.mermaid` | Graph visual representation. |
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.0.157"
4
- description = "UiPath Langchain"
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.10"
6
+ requires-python = ">=3.11"
7
7
  dependencies = [
8
- "uipath>=2.1.173,<2.2.0",
9
- "langgraph>=0.5.0, <0.7.0",
10
- "langchain-core>=0.3.34",
11
- "langgraph-checkpoint-sqlite>=2.0.3",
12
- "langchain-community>=0.3.21",
13
- "langchain-openai>=0.3.3",
14
- "langchain>=0.3.4",
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
- "openai>=1.65.5",
19
- "openinference-instrumentation-langchain>=0.1.50",
20
- "jsonschema-pydantic>=0.6",
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"