uipath-langchain 0.0.155__tar.gz → 0.1.20__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 (540) hide show
  1. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/integration_tests.yml +6 -9
  2. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/lint.yml +2 -4
  3. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/test.yml +1 -1
  4. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.gitignore +1 -0
  5. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/PKG-INFO +42 -21
  6. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/README.md +23 -7
  7. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/context_grounding.md +4 -4
  8. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/human_in_the_loop.md +26 -13
  9. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/quick_start.md +18 -17
  10. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/pyproject.toml +30 -14
  11. {uipath_langchain-0.0.155/samples/chat-agent → uipath_langchain-0.1.20/samples/RAG-quiz-generator}/.agent/CLI_REFERENCE.md +3 -8
  12. {uipath_langchain-0.0.155/samples/debug-agent → uipath_langchain-0.1.20/samples/RAG-quiz-generator}/.agent/SDK_REFERENCE.md +130 -105
  13. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/entry-points.json +212 -55
  14. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/pyproject.toml +12 -7
  15. uipath_langchain-0.1.20/samples/RAG-quiz-generator/quiz-generator-RAG-agent.mermaid +13 -0
  16. uipath_langchain-0.1.20/samples/RAG-quiz-generator/researcher-RAG-agent.mermaid +12 -0
  17. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/src/agents/quiz-generator-RAG-agent.py +4 -3
  18. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/src/agents/researcher-RAG-agent.py +6 -6
  19. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/uv.lock +208 -103
  20. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/.agent/CLI_REFERENCE.md +3 -8
  21. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/.agent/SDK_REFERENCE.md +169 -100
  22. uipath_langchain-0.1.20/samples/calculator-agent/agent.mermaid +6 -0
  23. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/entry-points.json +35 -1
  24. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/pyproject.toml +7 -2
  25. uipath_langchain-0.1.20/samples/calculator-agent/uv.lock +2555 -0
  26. {uipath_langchain-0.0.155/samples/company-research-agent → uipath_langchain-0.1.20/samples/chat-agent}/.agent/CLI_REFERENCE.md +3 -8
  27. uipath_langchain-0.1.20/samples/chat-agent/.agent/SDK_REFERENCE.md +565 -0
  28. uipath_langchain-0.1.20/samples/chat-agent/agent.mermaid +9 -0
  29. uipath_langchain-0.1.20/samples/chat-agent/entry-points.json +2204 -0
  30. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/graph.py +3 -3
  31. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/pyproject.toml +11 -6
  32. uipath_langchain-0.1.20/samples/chat-agent/uv.lock +2619 -0
  33. uipath_langchain-0.1.20/samples/chat-hitl-agent/.agent/CLI_REFERENCE.md +560 -0
  34. uipath_langchain-0.1.20/samples/chat-hitl-agent/.agent/SDK_REFERENCE.md +565 -0
  35. uipath_langchain-0.1.20/samples/chat-hitl-agent/README.md +80 -0
  36. uipath_langchain-0.1.20/samples/chat-hitl-agent/agent.mermaid +12 -0
  37. uipath_langchain-0.1.20/samples/chat-hitl-agent/entry-points.json +2221 -0
  38. uipath_langchain-0.1.20/samples/chat-hitl-agent/graph.py +35 -0
  39. uipath_langchain-0.1.20/samples/chat-hitl-agent/pyproject.toml +53 -0
  40. uipath_langchain-0.1.20/samples/chat-hitl-agent/uv.lock +2619 -0
  41. uipath_langchain-0.1.20/samples/company-research-agent/.agent/CLI_REFERENCE.md +560 -0
  42. {uipath_langchain-0.0.155/samples/chat-agent → uipath_langchain-0.1.20/samples/company-research-agent}/.agent/SDK_REFERENCE.md +169 -100
  43. uipath_langchain-0.1.20/samples/company-research-agent/agent.mermaid +13 -0
  44. uipath_langchain-0.1.20/samples/company-research-agent/entry-points.json +106 -0
  45. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/company-research-agent/graph.py +3 -3
  46. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/company-research-agent/pyproject.toml +11 -6
  47. uipath_langchain-0.1.20/samples/company-research-agent/uipath.json +14 -0
  48. uipath_langchain-0.1.20/samples/company-research-agent/uv.lock +2632 -0
  49. uipath_langchain-0.1.20/samples/debug-agent/.agent/CLI_REFERENCE.md +560 -0
  50. uipath_langchain-0.1.20/samples/debug-agent/.agent/SDK_REFERENCE.md +549 -0
  51. uipath_langchain-0.1.20/samples/debug-agent/agent.mermaid +25 -0
  52. uipath_langchain-0.1.20/samples/debug-agent/entry-points.json +222 -0
  53. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/debug-agent/pyproject.toml +14 -2
  54. uipath_langchain-0.1.20/samples/debug-agent/uv.lock +2553 -0
  55. uipath_langchain-0.1.20/samples/email-organizer-agent/.agent/CLI_REFERENCE.md +560 -0
  56. uipath_langchain-0.1.20/samples/email-organizer-agent/.agent/SDK_REFERENCE.md +549 -0
  57. uipath_langchain-0.1.20/samples/email-organizer-agent/agent.mermaid +19 -0
  58. uipath_langchain-0.1.20/samples/email-organizer-agent/entry-points.json +157 -0
  59. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/pyproject.toml +10 -5
  60. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/src/email_organizer/main.py +81 -82
  61. {uipath_langchain-0.0.155/samples/debug-agent → uipath_langchain-0.1.20/samples/email-organizer-agent}/uv.lock +252 -98
  62. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/.agent/REQUIRED_STRUCTURE.md +2 -2
  63. {uipath_langchain-0.0.155/samples/RAG-quiz-generator → uipath_langchain-0.1.20/samples/hitl-inbox-server}/.agent/SDK_REFERENCE.md +1 -1
  64. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/main.py +1 -1
  65. uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed/.agent/CLI_REFERENCE.md +560 -0
  66. uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed/.agent/SDK_REFERENCE.md +549 -0
  67. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-planner-researcher-coder-distributed/README.md +2 -2
  68. uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed/coder.mermaid +13 -0
  69. uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed/entry-points.json +2395 -0
  70. uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed/planner.mermaid +10 -0
  71. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-planner-researcher-coder-distributed/pyproject.toml +11 -6
  72. uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed/researcher.mermaid +13 -0
  73. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-planner-researcher-coder-distributed/src/multi-agent-distributed/coder.py +3 -3
  74. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-planner-researcher-coder-distributed/src/multi-agent-distributed/planner.py +2 -2
  75. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-planner-researcher-coder-distributed/src/multi-agent-distributed/researcher.py +4 -4
  76. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-planner-researcher-coder-distributed/uv.lock +207 -102
  77. uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder/.agent/CLI_REFERENCE.md +560 -0
  78. uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder/.agent/SDK_REFERENCE.md +549 -0
  79. uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder/agent.mermaid +28 -0
  80. uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder/entry-points.json +187 -0
  81. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-supervisor-researcher-coder/graph.py +5 -5
  82. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-supervisor-researcher-coder/pyproject.toml +12 -7
  83. {uipath_langchain-0.0.155/samples/calculator-agent → uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder}/uv.lock +300 -613
  84. uipath_langchain-0.1.20/samples/oauth-external-apps-agent/.agent/CLI_REFERENCE.md +560 -0
  85. uipath_langchain-0.1.20/samples/oauth-external-apps-agent/.agent/SDK_REFERENCE.md +549 -0
  86. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/oauth-external-apps-agent/README.md +1 -1
  87. uipath_langchain-0.1.20/samples/oauth-external-apps-agent/agent.mermaid +9 -0
  88. uipath_langchain-0.1.20/samples/oauth-external-apps-agent/entry-points.json +82 -0
  89. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/oauth-external-apps-agent/main.py +4 -4
  90. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/oauth-external-apps-agent/pyproject.toml +11 -6
  91. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/oauth-external-apps-agent/uv.lock +184 -704
  92. uipath_langchain-0.1.20/samples/retrieval-chain/.agent/CLI_REFERENCE.md +560 -0
  93. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/retrieval-chain/.agent/REQUIRED_STRUCTURE.md +2 -2
  94. uipath_langchain-0.1.20/samples/retrieval-chain/.agent/SDK_REFERENCE.md +549 -0
  95. uipath_langchain-0.1.20/samples/retrieval-chain/entry-points.json +5 -0
  96. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/retrieval-chain/pyproject.toml +7 -2
  97. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/retrieval-chain/uv.lock +349 -928
  98. uipath_langchain-0.1.20/samples/simple-deepagent/.agent/CLI_REFERENCE.md +560 -0
  99. uipath_langchain-0.1.20/samples/simple-deepagent/.agent/SDK_REFERENCE.md +549 -0
  100. uipath_langchain-0.1.20/samples/simple-deepagent/.env.example +4 -0
  101. uipath_langchain-0.1.20/samples/simple-deepagent/agent.mermaid +15 -0
  102. uipath_langchain-0.1.20/samples/simple-deepagent/entry-points.json +2221 -0
  103. uipath_langchain-0.1.20/samples/simple-deepagent/langgraph.json +7 -0
  104. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-deepagent/pyproject.toml +11 -6
  105. uipath_langchain-0.1.20/samples/simple-deepagent/uv.lock +2672 -0
  106. uipath_langchain-0.1.20/samples/simple-local-mcp/.agent/CLI_REFERENCE.md +560 -0
  107. uipath_langchain-0.1.20/samples/simple-local-mcp/.agent/SDK_REFERENCE.md +549 -0
  108. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-local-mcp/README.md +1 -1
  109. uipath_langchain-0.1.20/samples/simple-local-mcp/agent.mermaid +9 -0
  110. {uipath_langchain-0.0.155/samples/simple-remote-mcp → uipath_langchain-0.1.20/samples/simple-local-mcp}/entry-points.json +197 -107
  111. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-local-mcp/pyproject.toml +9 -4
  112. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-local-mcp/src/simple-local-mcp/graph.py +3 -3
  113. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-local-mcp/uv.lock +183 -712
  114. uipath_langchain-0.1.20/samples/simple-remote-mcp/.agent/CLI_REFERENCE.md +560 -0
  115. uipath_langchain-0.1.20/samples/simple-remote-mcp/.agent/SDK_REFERENCE.md +549 -0
  116. uipath_langchain-0.1.20/samples/simple-remote-mcp/CLAUDE.md +1 -0
  117. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-remote-mcp/README.md +1 -1
  118. uipath_langchain-0.1.20/samples/simple-remote-mcp/agent.mermaid +6 -0
  119. {uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.20/samples/simple-remote-mcp}/entry-points.json +178 -164
  120. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-remote-mcp/main.py +3 -3
  121. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-remote-mcp/pyproject.toml +11 -6
  122. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-remote-mcp/uv.lock +185 -714
  123. uipath_langchain-0.1.20/samples/ticket-classification/.agent/CLI_REFERENCE.md +560 -0
  124. uipath_langchain-0.1.20/samples/ticket-classification/.agent/REQUIRED_STRUCTURE.md +92 -0
  125. uipath_langchain-0.1.20/samples/ticket-classification/.agent/SDK_REFERENCE.md +549 -0
  126. uipath_langchain-0.1.20/samples/ticket-classification/AGENTS.md +21 -0
  127. uipath_langchain-0.1.20/samples/ticket-classification/CLAUDE.md +1 -0
  128. uipath_langchain-0.1.20/samples/ticket-classification/agent.mermaid +13 -0
  129. uipath_langchain-0.1.20/samples/ticket-classification/bindings.json +4 -0
  130. uipath_langchain-0.1.20/samples/ticket-classification/entry-points.json +115 -0
  131. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/ticket-classification/main.py +4 -4
  132. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/ticket-classification/pyproject.toml +11 -6
  133. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/ticket-classification/uv.lock +173 -857
  134. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_cli/cli_init.py +3 -143
  135. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_cli/cli_new.py +2 -3
  136. uipath_langchain-0.1.20/src/uipath_langchain/_resources/AGENTS.md +21 -0
  137. uipath_langchain-0.1.20/src/uipath_langchain/_resources/REQUIRED_STRUCTURE.md +92 -0
  138. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_tracing/_instrument_traceable.py +11 -12
  139. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_utils/_request_mixin.py +294 -42
  140. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_utils/_settings.py +2 -2
  141. uipath_langchain-0.1.20/src/uipath_langchain/agent/exceptions/__init__.py +6 -0
  142. {uipath_langchain-0.0.155/src/uipath_langchain/agent/react → uipath_langchain-0.1.20/src/uipath_langchain/agent/exceptions}/exceptions.py +1 -1
  143. uipath_langchain-0.1.20/src/uipath_langchain/agent/guardrails/__init__.py +21 -0
  144. uipath_langchain-0.1.20/src/uipath_langchain/agent/guardrails/actions/__init__.py +9 -0
  145. uipath_langchain-0.1.20/src/uipath_langchain/agent/guardrails/actions/base_action.py +23 -0
  146. uipath_langchain-0.1.20/src/uipath_langchain/agent/guardrails/actions/block_action.py +41 -0
  147. uipath_langchain-0.1.20/src/uipath_langchain/agent/guardrails/actions/log_action.py +57 -0
  148. uipath_langchain-0.1.20/src/uipath_langchain/agent/guardrails/guardrail_nodes.py +125 -0
  149. uipath_langchain-0.1.20/src/uipath_langchain/agent/guardrails/guardrails_factory.py +56 -0
  150. uipath_langchain-0.1.20/src/uipath_langchain/agent/guardrails/guardrails_subgraph.py +184 -0
  151. uipath_langchain-0.1.20/src/uipath_langchain/agent/guardrails/types.py +20 -0
  152. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/__init__.py +2 -1
  153. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/agent.py +16 -3
  154. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/router.py +1 -1
  155. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/terminate_node.py +2 -4
  156. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/types.py +1 -2
  157. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/utils.py +3 -3
  158. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/tools/__init__.py +2 -0
  159. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/tools/context_tool.py +21 -12
  160. uipath_langchain-0.1.20/src/uipath_langchain/agent/tools/integration_tool.py +179 -0
  161. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/tools/process_tool.py +19 -22
  162. uipath_langchain-0.1.20/src/uipath_langchain/agent/tools/static_args.py +138 -0
  163. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/tools/tool_factory.py +6 -5
  164. uipath_langchain-0.1.20/src/uipath_langchain/chat/__init__.py +10 -0
  165. uipath_langchain-0.1.20/src/uipath_langchain/chat/bedrock.py +188 -0
  166. uipath_langchain-0.1.20/src/uipath_langchain/chat/gemini.py +333 -0
  167. uipath_langchain-0.1.20/src/uipath_langchain/chat/mapper.py +297 -0
  168. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/chat/models.py +152 -86
  169. uipath_langchain-0.1.20/src/uipath_langchain/chat/openai.py +132 -0
  170. uipath_langchain-0.1.20/src/uipath_langchain/chat/supported_models.py +42 -0
  171. uipath_langchain-0.1.20/src/uipath_langchain/embeddings/embeddings.py +209 -0
  172. uipath_langchain-0.1.20/src/uipath_langchain/middlewares.py +10 -0
  173. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/retrievers/context_grounding_retriever.py +7 -9
  174. uipath_langchain-0.1.20/src/uipath_langchain/runtime/__init__.py +36 -0
  175. uipath_langchain-0.1.20/src/uipath_langchain/runtime/_serialize.py +46 -0
  176. uipath_langchain-0.1.20/src/uipath_langchain/runtime/config.py +61 -0
  177. uipath_langchain-0.0.155/src/uipath_langchain/_cli/_runtime/_exception.py → uipath_langchain-0.1.20/src/uipath_langchain/runtime/errors.py +3 -3
  178. uipath_langchain-0.1.20/src/uipath_langchain/runtime/factory.py +315 -0
  179. uipath_langchain-0.1.20/src/uipath_langchain/runtime/graph.py +159 -0
  180. uipath_langchain-0.0.155/src/uipath_langchain/_cli/_runtime/_runtime.py → uipath_langchain-0.1.20/src/uipath_langchain/runtime/runtime.py +129 -165
  181. uipath_langchain-0.1.20/src/uipath_langchain/runtime/schema.py +349 -0
  182. uipath_langchain-0.1.20/src/uipath_langchain/runtime/storage.py +115 -0
  183. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/vectorstores/context_grounding_vectorstore.py +2 -2
  184. uipath_langchain-0.1.20/testcases/chat-models/expected_traces.json +24 -0
  185. uipath_langchain-0.1.20/testcases/chat-models/input.json +3 -0
  186. uipath_langchain-0.1.20/testcases/chat-models/pyproject.toml +20 -0
  187. uipath_langchain-0.1.20/testcases/chat-models/run.sh +26 -0
  188. uipath_langchain-0.1.20/testcases/chat-models/src/assert.py +81 -0
  189. uipath_langchain-0.1.20/testcases/chat-models/src/main.py +358 -0
  190. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/common/trace_assert.py +20 -8
  191. uipath_langchain-0.1.20/testcases/company-research-agent/expected_traces.json +45 -0
  192. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/company-research-agent/pyproject.toml +3 -6
  193. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/company-research-agent/src/assert.py +5 -0
  194. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/company-research-agent/src/graph.py +10 -18
  195. uipath_langchain-0.1.20/testcases/init-flow/expected_traces.json +26 -0
  196. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/init-flow/pyproject.toml +1 -1
  197. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/init-flow/src/assert.py +5 -1
  198. uipath_langchain-0.1.20/testcases/simple-local-mcp/expected_traces.json +83 -0
  199. uipath_langchain-0.1.20/testcases/simple-local-mcp/input.json +12 -0
  200. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/simple-local-mcp/pyproject.toml +1 -1
  201. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/simple-local-mcp/src/simple-local-mcp/graph.py +3 -6
  202. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/simple-local-mcp/src/simple-local-mcp/weather_server.py +1 -1
  203. uipath_langchain-0.1.20/testcases/ticket-classification/expected_traces.json +26 -0
  204. uipath_langchain-0.1.20/testcases/ticket-classification/langgraph.json +9 -0
  205. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/ticket-classification/pyproject.toml +1 -1
  206. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/ticket-classification/src/assert.py +6 -0
  207. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/ticket-classification/src/main.py +18 -21
  208. uipath_langchain-0.1.20/tests/agent/guardrails/actions/test_block_action.py +36 -0
  209. uipath_langchain-0.1.20/tests/agent/guardrails/actions/test_log_action.py +78 -0
  210. uipath_langchain-0.1.20/tests/agent/guardrails/test_guardrail_nodes.py +104 -0
  211. uipath_langchain-0.1.20/tests/agent/guardrails/test_guardrails_factory.py +101 -0
  212. uipath_langchain-0.1.20/tests/agent/guardrails/test_guardrails_subgraph.py +135 -0
  213. uipath_langchain-0.1.20/tests/agent/tools/test_integration_tool.py +226 -0
  214. uipath_langchain-0.1.20/tests/agent/tools/test_static_args.py +416 -0
  215. uipath_langchain-0.1.20/tests/cli/test_run.py +130 -0
  216. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/cli/test_schema.py +15 -15
  217. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/hitl/mocks/action_trigger_hitl.py +7 -7
  218. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/hitl/mocks/job_trigger_hitl.py +4 -4
  219. uipath_langchain-0.1.20/tests/hitl/test_action_trigger.py +270 -0
  220. uipath_langchain-0.1.20/tests/hitl/test_hitl_api_trigger.py +151 -0
  221. uipath_langchain-0.1.20/tests/hitl/test_hitl_job_trigger.py +244 -0
  222. uipath_langchain-0.1.20/uv.lock +3871 -0
  223. uipath_langchain-0.0.155/samples/RAG-quiz-generator/quiz-generator-RAG-agent.mermaid +0 -21
  224. uipath_langchain-0.0.155/samples/RAG-quiz-generator/researcher-RAG-agent.mermaid +0 -20
  225. uipath_langchain-0.0.155/samples/calculator-agent/agent.mermaid +0 -14
  226. uipath_langchain-0.0.155/samples/chat-agent/agent.mermaid +0 -17
  227. uipath_langchain-0.0.155/samples/chat-agent/entry-points.json +0 -146
  228. uipath_langchain-0.0.155/samples/chat-agent/uv.lock +0 -3307
  229. uipath_langchain-0.0.155/samples/company-research-agent/.agent/SDK_REFERENCE.md +0 -480
  230. uipath_langchain-0.0.155/samples/company-research-agent/agent.mermaid +0 -23
  231. uipath_langchain-0.0.155/samples/company-research-agent/entry-points.json +0 -34
  232. uipath_langchain-0.0.155/samples/company-research-agent/uv.lock +0 -3307
  233. uipath_langchain-0.0.155/samples/debug-agent/.agent/CLI_REFERENCE.md +0 -565
  234. uipath_langchain-0.0.155/samples/debug-agent/agent.mermaid +0 -33
  235. uipath_langchain-0.0.155/samples/debug-agent/entry-points.json +0 -84
  236. uipath_langchain-0.0.155/samples/email-organizer-agent/.agent/CLI_REFERENCE.md +0 -565
  237. uipath_langchain-0.0.155/samples/email-organizer-agent/.agent/SDK_REFERENCE.md +0 -480
  238. uipath_langchain-0.0.155/samples/email-organizer-agent/agent.mermaid +0 -27
  239. uipath_langchain-0.0.155/samples/email-organizer-agent/entry-points.json +0 -52
  240. uipath_langchain-0.0.155/samples/email-organizer-agent/uv.lock +0 -3277
  241. uipath_langchain-0.0.155/samples/hitl-inbox-server/.agent/CLI_REFERENCE.md +0 -565
  242. uipath_langchain-0.0.155/samples/hitl-inbox-server/.agent/SDK_REFERENCE.md +0 -480
  243. uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed/.agent/CLI_REFERENCE.md +0 -565
  244. uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed/.agent/SDK_REFERENCE.md +0 -480
  245. uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed/coder.mermaid +0 -23
  246. uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed/planner.mermaid +0 -18
  247. uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed/researcher.mermaid +0 -23
  248. uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder/.agent/CLI_REFERENCE.md +0 -565
  249. uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder/.agent/SDK_REFERENCE.md +0 -480
  250. uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder/agent.mermaid +0 -40
  251. uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder/entry-points.json +0 -34
  252. uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder/uv.lock +0 -3322
  253. uipath_langchain-0.0.155/samples/oauth-external-apps-agent/.agent/CLI_REFERENCE.md +0 -565
  254. uipath_langchain-0.0.155/samples/oauth-external-apps-agent/.agent/SDK_REFERENCE.md +0 -480
  255. uipath_langchain-0.0.155/samples/oauth-external-apps-agent/agent.mermaid +0 -17
  256. uipath_langchain-0.0.155/samples/oauth-external-apps-agent/entry-points.json +0 -32
  257. uipath_langchain-0.0.155/samples/retrieval-chain/.agent/CLI_REFERENCE.md +0 -565
  258. uipath_langchain-0.0.155/samples/retrieval-chain/.agent/SDK_REFERENCE.md +0 -480
  259. uipath_langchain-0.0.155/samples/retrieval-chain/entry-points.json +0 -33
  260. uipath_langchain-0.0.155/samples/simple-deepagent/uv.lock +0 -3314
  261. uipath_langchain-0.0.155/samples/simple-local-mcp/.agent/CLI_REFERENCE.md +0 -565
  262. uipath_langchain-0.0.155/samples/simple-local-mcp/.agent/SDK_REFERENCE.md +0 -480
  263. uipath_langchain-0.0.155/samples/simple-local-mcp/agent.mermaid +0 -17
  264. uipath_langchain-0.0.155/samples/simple-local-mcp/entry-points.json +0 -146
  265. uipath_langchain-0.0.155/samples/simple-remote-mcp/.agent/CLI_REFERENCE.md +0 -565
  266. uipath_langchain-0.0.155/samples/simple-remote-mcp/.agent/SDK_REFERENCE.md +0 -480
  267. uipath_langchain-0.0.155/samples/simple-remote-mcp/agent.mermaid +0 -14
  268. uipath_langchain-0.0.155/samples/ticket-classification/.agent/CLI_REFERENCE.md +0 -565
  269. uipath_langchain-0.0.155/samples/ticket-classification/.agent/SDK_REFERENCE.md +0 -480
  270. uipath_langchain-0.0.155/samples/ticket-classification/agent.mermaid +0 -21
  271. uipath_langchain-0.0.155/samples/ticket-classification/entry-points.json +0 -43
  272. uipath_langchain-0.0.155/src/uipath_langchain/_cli/_runtime/_conversation.py +0 -306
  273. uipath_langchain-0.0.155/src/uipath_langchain/_cli/_runtime/_graph_resolver.py +0 -141
  274. uipath_langchain-0.0.155/src/uipath_langchain/_cli/_runtime/_input.py +0 -147
  275. uipath_langchain-0.0.155/src/uipath_langchain/_cli/_runtime/_memory.py +0 -26
  276. uipath_langchain-0.0.155/src/uipath_langchain/_cli/_runtime/_output.py +0 -150
  277. uipath_langchain-0.0.155/src/uipath_langchain/_cli/_utils/_graph.py +0 -199
  278. uipath_langchain-0.0.155/src/uipath_langchain/_cli/_utils/_schema.py +0 -137
  279. uipath_langchain-0.0.155/src/uipath_langchain/_cli/cli_debug.py +0 -90
  280. uipath_langchain-0.0.155/src/uipath_langchain/_cli/cli_dev.py +0 -63
  281. uipath_langchain-0.0.155/src/uipath_langchain/_cli/cli_eval.py +0 -100
  282. uipath_langchain-0.0.155/src/uipath_langchain/_cli/cli_run.py +0 -98
  283. uipath_langchain-0.0.155/src/uipath_langchain/_tracing/_utils.py +0 -28
  284. uipath_langchain-0.0.155/src/uipath_langchain/chat/__init__.py +0 -6
  285. uipath_langchain-0.0.155/src/uipath_langchain/embeddings/embeddings.py +0 -112
  286. uipath_langchain-0.0.155/src/uipath_langchain/middlewares.py +0 -18
  287. uipath_langchain-0.0.155/src/uipath_langchain/runtime_factories.py +0 -20
  288. uipath_langchain-0.0.155/testcases/company-research-agent/expected_traces.json +0 -41
  289. uipath_langchain-0.0.155/testcases/init-flow/expected_traces.json +0 -32
  290. uipath_langchain-0.0.155/testcases/simple-local-mcp/expected_traces.json +0 -42
  291. uipath_langchain-0.0.155/testcases/simple-local-mcp/input.json +0 -12
  292. uipath_langchain-0.0.155/testcases/ticket-classification/expected_traces.json +0 -32
  293. uipath_langchain-0.0.155/tests/cli/test_run.py +0 -95
  294. uipath_langchain-0.0.155/tests/hitl/test_action_trigger.py +0 -193
  295. uipath_langchain-0.0.155/tests/hitl/test_hitl_api_trigger.py +0 -89
  296. uipath_langchain-0.0.155/tests/hitl/test_hitl_default_escalation.py +0 -143
  297. uipath_langchain-0.0.155/tests/hitl/test_hitl_job_trigger.py +0 -159
  298. uipath_langchain-0.0.155/uv.lock +0 -3379
  299. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.cursorrules +0 -0
  300. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.editorconfig +0 -0
  301. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.gitattributes +0 -0
  302. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/cd.yml +0 -0
  303. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/ci.yml +0 -0
  304. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/commitlint.yml +0 -0
  305. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/lint-custom-version.yml +0 -0
  306. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/publish-dev.yml +0 -0
  307. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/publish-docs.yml +0 -0
  308. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/publish-prior-stable-version.yml +0 -0
  309. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/slack.yml +0 -0
  310. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.github/workflows/test-custom-version.yml +0 -0
  311. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.pipelines/security-scans.yml +0 -0
  312. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.pipelines/variables.yml +0 -0
  313. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.pre-commit-config.yaml +0 -0
  314. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.python-version +0 -0
  315. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.vscode/extensions.json +0 -0
  316. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/.vscode/settings.json +0 -0
  317. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/CONTRIBUTING.md +0 -0
  318. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/LICENSE +0 -0
  319. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/chat_models.md +0 -0
  320. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/quick_start_images/cloud_env_var_dark.png +0 -0
  321. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/quick_start_images/cloud_env_var_light.png +0 -0
  322. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/quick_start_images/invoke_output_dark.png +0 -0
  323. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/quick_start_images/invoke_output_light.png +0 -0
  324. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/click-storage-bucket.png +0 -0
  325. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/create-index-1.png +0 -0
  326. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/create-index-2.png +0 -0
  327. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/create-process.png +0 -0
  328. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/create-quiz-generator.png +0 -0
  329. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/create-storage-bucket-1.png +0 -0
  330. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/create-storage-bucket-2.png +0 -0
  331. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/folder-path.png +0 -0
  332. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/job-info.png +0 -0
  333. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/output.png +0 -0
  334. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/process-page.png +0 -0
  335. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/researcher-1.png +0 -0
  336. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/researcher-2.png +0 -0
  337. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/run-process-1.png +0 -0
  338. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/run-process-2.png +0 -0
  339. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/RAG/storage-bucket-content.png +0 -0
  340. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/multi-agent-distributed/coder-agent-package-overview.png +0 -0
  341. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/multi-agent-distributed/coder-agent-process-configuration.png +0 -0
  342. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/multi-agent-distributed/planner-agent-package-overview.png +0 -0
  343. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/multi-agent-distributed/planner-agent-process-configuration.png +0 -0
  344. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/multi-agent-distributed/researcher-agent-package-overview.png +0 -0
  345. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/multi-agent-distributed/researcher-agent-process-configuration.png +0 -0
  346. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/activate-apps.png +0 -0
  347. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/activate-deployment.png +0 -0
  348. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/copy-folder-path.png +0 -0
  349. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/deploy-solution-package-wizard.png +0 -0
  350. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/deploy-solution-package.png +0 -0
  351. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/monitor-agent.png +0 -0
  352. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/navigate-to-solution-folder.png +0 -0
  353. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/resume-condition.png +0 -0
  354. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/run-agent.png +0 -0
  355. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/solution-destination-folder.png +0 -0
  356. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/start-job.png +0 -0
  357. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/docs/sample_images/ticket-classification/upload-solution-package.png +0 -0
  358. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/.agent/REQUIRED_STRUCTURE.md +0 -0
  359. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/AGENTS.md +0 -0
  360. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/CLAUDE.md +0 -0
  361. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/README.md +0 -0
  362. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/bindings.json +0 -0
  363. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/env.example +0 -0
  364. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/input.example/quiz-generator-debug-input.json +0 -0
  365. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/input.example/researcher-debug-input.json +0 -0
  366. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/langgraph.json +0 -0
  367. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/RAG-quiz-generator/uipath.json +0 -0
  368. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/README.md +0 -0
  369. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/.agent/REQUIRED_STRUCTURE.md +0 -0
  370. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/AGENTS.md +0 -0
  371. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/CLAUDE.md +0 -0
  372. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/README.md +0 -0
  373. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/bindings.json +0 -0
  374. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/graph.py +0 -0
  375. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/langgraph.json +0 -0
  376. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/calculator-agent/uipath.json +0 -0
  377. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/.agent/REQUIRED_STRUCTURE.md +0 -0
  378. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/.env.example +0 -0
  379. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/AGENTS.md +0 -0
  380. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/CLAUDE.md +0 -0
  381. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/README.md +0 -0
  382. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/bindings.json +0 -0
  383. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/langgraph.json +0 -0
  384. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/chat-agent/uipath.json +0 -0
  385. {uipath_langchain-0.0.155/samples/company-research-agent → uipath_langchain-0.1.20/samples/chat-hitl-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  386. {uipath_langchain-0.0.155/samples/company-research-agent → uipath_langchain-0.1.20/samples/chat-hitl-agent}/.env.example +0 -0
  387. {uipath_langchain-0.0.155/samples/company-research-agent → uipath_langchain-0.1.20/samples/chat-hitl-agent}/AGENTS.md +0 -0
  388. {uipath_langchain-0.0.155/samples/company-research-agent → uipath_langchain-0.1.20/samples/chat-hitl-agent}/CLAUDE.md +0 -0
  389. {uipath_langchain-0.0.155/samples/company-research-agent → uipath_langchain-0.1.20/samples/chat-hitl-agent}/bindings.json +0 -0
  390. {uipath_langchain-0.0.155/samples/company-research-agent → uipath_langchain-0.1.20/samples/chat-hitl-agent}/langgraph.json +0 -0
  391. {uipath_langchain-0.0.155/samples/company-research-agent → uipath_langchain-0.1.20/samples/chat-hitl-agent}/uipath.json +0 -0
  392. {uipath_langchain-0.0.155/samples/debug-agent → uipath_langchain-0.1.20/samples/company-research-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  393. {uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.20/samples/company-research-agent}/.env.example +0 -0
  394. {uipath_langchain-0.0.155/samples/debug-agent → uipath_langchain-0.1.20/samples/company-research-agent}/AGENTS.md +0 -0
  395. {uipath_langchain-0.0.155/samples/debug-agent → uipath_langchain-0.1.20/samples/company-research-agent}/CLAUDE.md +0 -0
  396. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/company-research-agent/README.md +0 -0
  397. {uipath_langchain-0.0.155/samples/debug-agent → uipath_langchain-0.1.20/samples/company-research-agent}/bindings.json +0 -0
  398. {uipath_langchain-0.0.155/samples/debug-agent → uipath_langchain-0.1.20/samples/company-research-agent}/langgraph.json +0 -0
  399. {uipath_langchain-0.0.155/samples/email-organizer-agent → uipath_langchain-0.1.20/samples/debug-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  400. {uipath_langchain-0.0.155/samples/email-organizer-agent → uipath_langchain-0.1.20/samples/debug-agent}/AGENTS.md +0 -0
  401. {uipath_langchain-0.0.155/samples/email-organizer-agent → uipath_langchain-0.1.20/samples/debug-agent}/CLAUDE.md +0 -0
  402. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/debug-agent/README.md +0 -0
  403. {uipath_langchain-0.0.155/samples/email-organizer-agent → uipath_langchain-0.1.20/samples/debug-agent}/bindings.json +0 -0
  404. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/debug-agent/graph.py +0 -0
  405. {uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.20/samples/debug-agent}/langgraph.json +0 -0
  406. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/debug-agent/uipath.json +0 -0
  407. {uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.20/samples/email-organizer-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  408. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/.env.template +0 -0
  409. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/.python-version +0 -0
  410. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/.vscode/launch.json +0 -0
  411. {uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.20/samples/email-organizer-agent}/AGENTS.md +0 -0
  412. {uipath_langchain-0.0.155/samples/hitl-inbox-server → uipath_langchain-0.1.20/samples/email-organizer-agent}/CLAUDE.md +0 -0
  413. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/README.md +0 -0
  414. {uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.20/samples/email-organizer-agent}/bindings.json +0 -0
  415. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/input.json +0 -0
  416. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/langgraph.json +0 -0
  417. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/src/email_organizer/__init__.py +0 -0
  418. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/src/email_organizer/outlook_client.py +0 -0
  419. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/email-organizer-agent/uipath.json +0 -0
  420. {uipath_langchain-0.0.155/samples/RAG-quiz-generator → uipath_langchain-0.1.20/samples/hitl-inbox-server}/.agent/CLI_REFERENCE.md +0 -0
  421. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/AGENTS.md +0 -0
  422. {uipath_langchain-0.0.155/samples/multi-agent-planner-researcher-coder-distributed → uipath_langchain-0.1.20/samples/hitl-inbox-server}/CLAUDE.md +0 -0
  423. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/README.md +0 -0
  424. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/bindings.json +0 -0
  425. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/database.py +0 -0
  426. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/entry-points.json +0 -0
  427. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/models.py +0 -0
  428. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/pyproject.toml +0 -0
  429. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/schemas.py +0 -0
  430. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/templates/index.html +0 -0
  431. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/uipath.json +0 -0
  432. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/hitl-inbox-server/uv.lock +0 -0
  433. {uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed}/.agent/REQUIRED_STRUCTURE.md +0 -0
  434. {uipath_langchain-0.0.155/samples/simple-deepagent → uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed}/.env.example +0 -0
  435. {uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed}/AGENTS.md +0 -0
  436. {uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed}/CLAUDE.md +0 -0
  437. {uipath_langchain-0.0.155/samples/multi-agent-supervisor-researcher-coder → uipath_langchain-0.1.20/samples/multi-agent-planner-researcher-coder-distributed}/bindings.json +0 -0
  438. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-planner-researcher-coder-distributed/langgraph.json +0 -0
  439. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-planner-researcher-coder-distributed/uipath.json +0 -0
  440. {uipath_langchain-0.0.155/samples/oauth-external-apps-agent → uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder}/.agent/REQUIRED_STRUCTURE.md +0 -0
  441. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-supervisor-researcher-coder/.env.example +0 -0
  442. {uipath_langchain-0.0.155/samples/oauth-external-apps-agent → uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder}/AGENTS.md +0 -0
  443. {uipath_langchain-0.0.155/samples/oauth-external-apps-agent → uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder}/CLAUDE.md +0 -0
  444. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-supervisor-researcher-coder/README.md +0 -0
  445. {uipath_langchain-0.0.155/samples/oauth-external-apps-agent → uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder}/bindings.json +0 -0
  446. {uipath_langchain-0.0.155/samples/simple-deepagent → uipath_langchain-0.1.20/samples/multi-agent-supervisor-researcher-coder}/langgraph.json +0 -0
  447. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/multi-agent-supervisor-researcher-coder/uipath.json +0 -0
  448. {uipath_langchain-0.0.155/samples/simple-local-mcp → uipath_langchain-0.1.20/samples/oauth-external-apps-agent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  449. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/oauth-external-apps-agent/.env.example +0 -0
  450. {uipath_langchain-0.0.155/samples/simple-local-mcp → uipath_langchain-0.1.20/samples/oauth-external-apps-agent}/AGENTS.md +0 -0
  451. {uipath_langchain-0.0.155/samples/retrieval-chain → uipath_langchain-0.1.20/samples/oauth-external-apps-agent}/CLAUDE.md +0 -0
  452. {uipath_langchain-0.0.155/samples/retrieval-chain → uipath_langchain-0.1.20/samples/oauth-external-apps-agent}/bindings.json +0 -0
  453. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/oauth-external-apps-agent/input.json +0 -0
  454. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/oauth-external-apps-agent/langgraph.json +0 -0
  455. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/oauth-external-apps-agent/uipath.json +0 -0
  456. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/retrieval-chain/.env.example +0 -0
  457. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/retrieval-chain/AGENTS.md +0 -0
  458. {uipath_langchain-0.0.155/samples/simple-local-mcp → uipath_langchain-0.1.20/samples/retrieval-chain}/CLAUDE.md +0 -0
  459. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/retrieval-chain/README.md +0 -0
  460. {uipath_langchain-0.0.155/samples/simple-deepagent → uipath_langchain-0.1.20/samples/retrieval-chain}/bindings.json +0 -0
  461. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/retrieval-chain/main.py +0 -0
  462. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/retrieval-chain/uipath.json +0 -0
  463. {uipath_langchain-0.0.155/samples/simple-remote-mcp → uipath_langchain-0.1.20/samples/simple-deepagent}/.agent/REQUIRED_STRUCTURE.md +0 -0
  464. {uipath_langchain-0.0.155/samples/simple-remote-mcp → uipath_langchain-0.1.20/samples/simple-deepagent}/AGENTS.md +0 -0
  465. {uipath_langchain-0.0.155/samples/simple-remote-mcp → uipath_langchain-0.1.20/samples/simple-deepagent}/CLAUDE.md +0 -0
  466. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-deepagent/README.md +0 -0
  467. {uipath_langchain-0.0.155/samples/simple-local-mcp → uipath_langchain-0.1.20/samples/simple-deepagent}/bindings.json +0 -0
  468. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-deepagent/graph.py +0 -0
  469. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-deepagent/uipath.json +0 -0
  470. {uipath_langchain-0.0.155/samples/ticket-classification → uipath_langchain-0.1.20/samples/simple-local-mcp}/.agent/REQUIRED_STRUCTURE.md +0 -0
  471. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-local-mcp/.env.example +0 -0
  472. {uipath_langchain-0.0.155/samples/ticket-classification → uipath_langchain-0.1.20/samples/simple-local-mcp}/AGENTS.md +0 -0
  473. {uipath_langchain-0.0.155/samples/ticket-classification → uipath_langchain-0.1.20/samples/simple-local-mcp}/CLAUDE.md +0 -0
  474. {uipath_langchain-0.0.155/samples/simple-remote-mcp → uipath_langchain-0.1.20/samples/simple-local-mcp}/bindings.json +0 -0
  475. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-local-mcp/langgraph.json +0 -0
  476. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-local-mcp/src/simple-local-mcp/math_server.py +0 -0
  477. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-local-mcp/src/simple-local-mcp/weather_server.py +0 -0
  478. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-local-mcp/uipath.json +0 -0
  479. {uipath_langchain-0.0.155/src/uipath_langchain/_resources → uipath_langchain-0.1.20/samples/simple-remote-mcp/.agent}/REQUIRED_STRUCTURE.md +0 -0
  480. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-remote-mcp/.env.example +0 -0
  481. {uipath_langchain-0.0.155/src/uipath_langchain/_resources → uipath_langchain-0.1.20/samples/simple-remote-mcp}/AGENTS.md +0 -0
  482. {uipath_langchain-0.0.155/samples/ticket-classification → uipath_langchain-0.1.20/samples/simple-remote-mcp}/bindings.json +0 -0
  483. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-remote-mcp/langgraph.json +0 -0
  484. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/simple-remote-mcp/uipath.json +0 -0
  485. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/ticket-classification/.env.example +0 -0
  486. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/ticket-classification/README.md +0 -0
  487. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/ticket-classification/escalation_app_solution/generic-escalation-app-solution-1.0.0.zip +0 -0
  488. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/ticket-classification/langgraph.json +0 -0
  489. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/samples/ticket-classification/uipath.json +0 -0
  490. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/__init__.py +0 -0
  491. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_cli/__init__.py +0 -0
  492. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_cli/_templates/langgraph.json.template +0 -0
  493. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_cli/_templates/main.py.template +0 -0
  494. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_tracing/__init__.py +0 -0
  495. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_utils/__init__.py +0 -0
  496. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/_utils/_sleep_policy.py +0 -0
  497. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/constants.py +0 -0
  498. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/init_node.py +0 -0
  499. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/llm_node.py +0 -0
  500. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/tools/__init__.py +0 -0
  501. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/react/tools/tools.py +0 -0
  502. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/tools/tool_node.py +0 -0
  503. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/agent/tools/utils.py +0 -0
  504. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/embeddings/__init__.py +0 -0
  505. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/py.typed +0 -0
  506. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/retrievers/__init__.py +0 -0
  507. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/src/uipath_langchain/vectorstores/__init__.py +0 -0
  508. {uipath_langchain-0.0.155/testcases/ticket-classification → uipath_langchain-0.1.20/testcases/chat-models}/langgraph.json +0 -0
  509. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/common/validate_output.sh +0 -0
  510. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/company-research-agent/expected_raw.json +0 -0
  511. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/company-research-agent/input.json +0 -0
  512. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/company-research-agent/langgraph.json +0 -0
  513. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/company-research-agent/run.sh +0 -0
  514. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/company-research-agent/uv.lock +0 -0
  515. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/init-flow/input.json +0 -0
  516. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/init-flow/run.sh +0 -0
  517. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/simple-local-mcp/langgraph.json +0 -0
  518. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/simple-local-mcp/run.sh +0 -0
  519. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/simple-local-mcp/src/assert.py +0 -0
  520. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/simple-local-mcp/src/simple-local-mcp/math_server.py +0 -0
  521. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/simple-local-mcp/uv.lock +0 -0
  522. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/ticket-classification/input.json +0 -0
  523. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/ticket-classification/raw_traces.jsonl +0 -0
  524. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/ticket-classification/run.sh +0 -0
  525. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/testcases/ticket-classification/uv.lock +0 -0
  526. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/__init__.py +0 -0
  527. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/agent/react/__init__.py +0 -0
  528. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/agent/react/test_utils.py +0 -0
  529. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/cli/conftest.py +0 -0
  530. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/cli/mocks/langgraph.json +0 -0
  531. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/cli/mocks/simple_agent.py +0 -0
  532. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/cli/mocks/uipath.json +0 -0
  533. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/cli/test_init.py +0 -0
  534. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/hitl/__init__.py +0 -0
  535. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/hitl/conftest.py +0 -0
  536. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/hitl/mocks/api_trigger_hitl.py +0 -0
  537. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/hitl/mocks/langgraph.json +0 -0
  538. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/hitl/mocks/uipath-default-escalation.json +0 -0
  539. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/hitl/mocks/uipath.json +0 -0
  540. {uipath_langchain-0.0.155 → uipath_langchain-0.1.20}/tests/test_dummy.py +0 -0
@@ -44,10 +44,9 @@ jobs:
44
44
  fail-fast: false
45
45
  matrix:
46
46
  testcase: ${{ fromJson(needs.discover-testcases.outputs.testcases) }}
47
- environment: [alpha, staging] # temporary disable [cloud]
48
- use_azure_chat: [true, false]
47
+ environment: [alpha, cloud, staging]
49
48
 
50
- name: "${{ matrix.testcase }} / ${{ matrix.environment }} / ${{ matrix.use_azure_chat && 'UiPathAzureChatOpenAI' || 'UiPathChat' }}"
49
+ name: "${{ matrix.testcase }} / ${{ matrix.environment }}"
51
50
 
52
51
  steps:
53
52
  - name: Checkout code
@@ -58,16 +57,14 @@ jobs:
58
57
 
59
58
  - name: Run testcase
60
59
  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 }}
60
+ ENVIRONMENT: ${{ matrix.environment }}
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 }}
65
64
  working-directory: testcases/${{ matrix.testcase }}
66
65
  run: |
67
66
  echo "Running testcase: ${{ matrix.testcase }}"
68
67
  echo "Environment: ${{ matrix.environment }}"
69
- echo "LLM: ${{ matrix.use_azure_chat && 'UiPathAzureChatOpenAI' || 'UiPathChat' }}"
70
- echo "USE_AZURE_CHAT: ${{ matrix.use_azure_chat }}"
71
68
 
72
69
  # Execute the testcase run script directly
73
70
  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,3 @@ jobs:
50
49
 
51
50
  - name: Check formatting
52
51
  run: uv run ruff format --check .
53
-
@@ -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,4 @@ cython_debug/
179
179
  **/**.nupkg
180
180
  **/__uipath/
181
181
  **/.langgraph_api
182
+ **/testcases/**/uipath.json
@@ -1,32 +1,37 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uipath-langchain
3
- Version: 0.0.155
3
+ Version: 0.1.20
4
4
  Summary: UiPath Langchain
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
17
16
  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
17
+ Requires-Dist: jsonpath-ng>=1.7.0
18
+ Requires-Dist: jsonschema-pydantic-converter>=0.1.5
19
+ Requires-Dist: langchain-core<2.0.0,>=1.0.0
20
+ Requires-Dist: langchain-openai<2.0.0,>=1.0.0
21
+ Requires-Dist: langchain<2.0.0,>=1.0.0
22
+ Requires-Dist: langgraph-checkpoint-sqlite<4.0.0,>=3.0.0
23
+ Requires-Dist: langgraph<2.0.0,>=1.0.0
24
+ Requires-Dist: openinference-instrumentation-langchain>=0.1.56
27
25
  Requires-Dist: pydantic-settings>=2.6.0
28
26
  Requires-Dist: python-dotenv>=1.0.1
29
- Requires-Dist: uipath<2.2.0,>=2.1.172
27
+ Requires-Dist: uipath<2.3.0,>=2.2.16
28
+ Provides-Extra: bedrock
29
+ Requires-Dist: boto3-stubs>=1.41.4; extra == 'bedrock'
30
+ Requires-Dist: langchain-aws>=0.2.35; extra == 'bedrock'
31
+ Provides-Extra: vertex
32
+ Requires-Dist: langchain-community>=0.4.1; extra == 'vertex'
33
+ Requires-Dist: langchain-google-vertexai>=2.1.2; extra == 'vertex'
34
+ Requires-Dist: types-protobuf>=6.32.1.20251105; extra == 'vertex'
30
35
  Description-Content-Type: text/markdown
31
36
 
32
37
  # UiPath LangChain Python SDK
@@ -34,9 +39,9 @@ Description-Content-Type: text/markdown
34
39
  [![PyPI downloads](https://img.shields.io/pypi/dm/uipath-langchain.svg)](https://pypi.org/project/uipath-langchain/)
35
40
  [![Python versions](https://img.shields.io/pypi/pyversions/uipath-langchain.svg)](https://pypi.org/project/uipath-langchain/)
36
41
 
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.
42
+ 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
43
 
39
- This package is an extension to the [UiPath Python SDK](https://github.com/UiPath/uipath-python).
44
+ 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
45
 
41
46
  This [quickstart guide](https://uipath.github.io/uipath-python/) walks you through deploying your first agent to UiPath Cloud Platform.
42
47
 
@@ -44,7 +49,7 @@ Check out these [sample projects](https://github.com/UiPath/uipath-langchain-pyt
44
49
 
45
50
  ## Requirements
46
51
 
47
- - Python 3.10 or higher
52
+ - Python 3.11 or higher
48
53
  - UiPath Automation Cloud account
49
54
 
50
55
  ## Installation
@@ -77,10 +82,12 @@ The SDK provides a command-line interface for creating, packaging, and deploying
77
82
  ### Initialize a Project
78
83
 
79
84
  ```bash
80
- uipath init [GRAPH]
85
+ uipath init
81
86
  ```
82
87
 
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.
88
+ Running `uipath init` will process the graph definitions in the `langgraph.json` file and create the corresponding `entry-points.json` file needed for deployment.
89
+
90
+ For more details on the configuration format, see the [UiPath configuration specifications](https://github.com/UiPath/uipath-python/blob/main/specs/README.md).
84
91
 
85
92
  ### Authentication
86
93
 
@@ -131,12 +138,26 @@ Publishes the most recently created package to your UiPath Orchestrator.
131
138
  To properly use the CLI for packaging and publishing, your project should include:
132
139
 
133
140
  - A `pyproject.toml` file with project metadata
134
- - A `langgraph.json` file
135
- - A `uipath.json` file (generated by `uipath init`)
141
+ - A `langgraph.json` file with your graph definitions (e.g., `"graphs": {"agent": "graph.py:graph"}`)
142
+ - A `entry-points.json` file (generated by `uipath init`)
143
+ - A `bindings.json` file (generated by `uipath init`) to configure resource overrides
136
144
  - Any Python files needed for your automation
137
145
 
138
146
  ## Development
139
147
 
148
+ ### Developer Tools
149
+
150
+ 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.
151
+
140
152
  ### Setting Up a Development Environment
141
153
 
142
154
  Please read our [contribution guidelines](https://github.com/UiPath/uipath-langchain-python/blob/main/CONTRIBUTING.md) before submitting a pull request.
155
+
156
+ ### Special Thanks
157
+
158
+ A huge thank-you to the open-source community and the maintainers of the libraries that make this project possible:
159
+
160
+ - [LangChain](https://github.com/langchain-ai/langchain) for providing a powerful framework for building stateful LLM applications.
161
+ - [Pydantic](https://github.com/pydantic/pydantic) for reliable, typed configuration and validation.
162
+ - [OpenInference](https://github.com/Arize-ai/openinference) for observability and instrumentation support.
163
+
@@ -3,9 +3,9 @@
3
3
  [![PyPI downloads](https://img.shields.io/pypi/dm/uipath-langchain.svg)](https://pypi.org/project/uipath-langchain/)
4
4
  [![Python versions](https://img.shields.io/pypi/pyversions/uipath-langchain.svg)](https://pypi.org/project/uipath-langchain/)
5
5
 
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.
6
+ 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
7
 
8
- This package is an extension to the [UiPath Python SDK](https://github.com/UiPath/uipath-python).
8
+ 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
9
 
10
10
  This [quickstart guide](https://uipath.github.io/uipath-python/) walks you through deploying your first agent to UiPath Cloud Platform.
11
11
 
@@ -13,7 +13,7 @@ Check out these [sample projects](https://github.com/UiPath/uipath-langchain-pyt
13
13
 
14
14
  ## Requirements
15
15
 
16
- - Python 3.10 or higher
16
+ - Python 3.11 or higher
17
17
  - UiPath Automation Cloud account
18
18
 
19
19
  ## Installation
@@ -46,10 +46,12 @@ The SDK provides a command-line interface for creating, packaging, and deploying
46
46
  ### Initialize a Project
47
47
 
48
48
  ```bash
49
- uipath init [GRAPH]
49
+ uipath init
50
50
  ```
51
51
 
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.
52
+ Running `uipath init` will process the graph definitions in the `langgraph.json` file and create the corresponding `entry-points.json` file needed for deployment.
53
+
54
+ For more details on the configuration format, see the [UiPath configuration specifications](https://github.com/UiPath/uipath-python/blob/main/specs/README.md).
53
55
 
54
56
  ### Authentication
55
57
 
@@ -100,12 +102,26 @@ Publishes the most recently created package to your UiPath Orchestrator.
100
102
  To properly use the CLI for packaging and publishing, your project should include:
101
103
 
102
104
  - A `pyproject.toml` file with project metadata
103
- - A `langgraph.json` file
104
- - A `uipath.json` file (generated by `uipath init`)
105
+ - A `langgraph.json` file with your graph definitions (e.g., `"graphs": {"agent": "graph.py:graph"}`)
106
+ - A `entry-points.json` file (generated by `uipath init`)
107
+ - A `bindings.json` file (generated by `uipath init`) to configure resource overrides
105
108
  - Any Python files needed for your automation
106
109
 
107
110
  ## Development
108
111
 
112
+ ### Developer Tools
113
+
114
+ 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.
115
+
109
116
  ### Setting Up a Development Environment
110
117
 
111
118
  Please read our [contribution guidelines](https://github.com/UiPath/uipath-langchain-python/blob/main/CONTRIBUTING.md) before submitting a pull request.
119
+
120
+ ### Special Thanks
121
+
122
+ A huge thank-you to the open-source community and the maintainers of the libraries that make this project possible:
123
+
124
+ - [LangChain](https://github.com/langchain-ai/langchain) for providing a powerful framework for building stateful LLM applications.
125
+ - [Pydantic](https://github.com/pydantic/pydantic) for reliable, typed configuration and validation.
126
+ - [OpenInference](https://github.com/Arize-ai/openinference) for observability and instrumentation support.
127
+
@@ -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,53 @@
1
1
  [project]
2
2
  name = "uipath-langchain"
3
- version = "0.0.155"
3
+ version = "0.1.20"
4
4
  description = "UiPath Langchain"
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.172, <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.16, <2.3.0",
9
+ "langgraph>=1.0.0, <2.0.0",
10
+ "langchain-core>=1.0.0, <2.0.0",
11
+ "langgraph-checkpoint-sqlite>=3.0.0, <4.0.0",
12
+ "langchain-openai>=1.0.0, <2.0.0",
13
+ "langchain>=1.0.0, <2.0.0",
15
14
  "pydantic-settings>=2.6.0",
16
15
  "python-dotenv>=1.0.1",
17
16
  "httpx>=0.27.0",
18
- "openai>=1.65.5",
19
- "openinference-instrumentation-langchain>=0.1.50",
20
- "jsonschema-pydantic>=0.6",
17
+ "openinference-instrumentation-langchain>=0.1.56",
18
+ "jsonschema-pydantic-converter>=0.1.5",
19
+ "jsonpath-ng>=1.7.0",
21
20
  ]
21
+
22
22
  classifiers = [
23
- "Development Status :: 3 - Alpha",
24
23
  "Intended Audience :: Developers",
25
24
  "Topic :: Software Development :: Build Tools",
26
- "Programming Language :: Python :: 3.10",
27
25
  "Programming Language :: Python :: 3.11",
28
26
  "Programming Language :: Python :: 3.12",
27
+ "Programming Language :: Python :: 3.13",
29
28
  ]
30
29
  maintainers = [
31
30
  { name = "Marius Cosareanu", email = "marius.cosareanu@uipath.com" },
32
31
  { name = "Cristian Pufu", email = "cristian.pufu@uipath.com" }
33
32
  ]
34
33
 
34
+ [project.optional-dependencies]
35
+ vertex = [
36
+ "langchain-google-vertexai>=2.1.2",
37
+ "langchain-community>=0.4.1",
38
+ "types-protobuf>=6.32.1.20251105",
39
+ ]
40
+ bedrock = [
41
+ "langchain-aws>=0.2.35",
42
+ "boto3-stubs>=1.41.4",
43
+ ]
44
+
35
45
  [project.entry-points."uipath.middlewares"]
36
46
  register = "uipath_langchain.middlewares:register_middleware"
37
47
 
48
+ [project.entry-points."uipath.runtime.factories"]
49
+ langgraph = "uipath_langchain.runtime:register_runtime_factory"
50
+
38
51
  [project.urls]
39
52
  Homepage = "https://uipath.com"
40
53
  Repository = "https://github.com/UiPath/uipath-langchain-python"
@@ -70,6 +83,8 @@ select = ["E", "F", "B", "I"]
70
83
 
71
84
  [tool.ruff.lint.per-file-ignores]
72
85
  "*" = ["E501"]
86
+ "src/uipath_langchain/chat/bedrock.py" = ["E402"]
87
+ "src/uipath_langchain/chat/gemini.py" = ["E402"]
73
88
 
74
89
  [tool.ruff.format]
75
90
  quote-style = "double"
@@ -107,3 +122,4 @@ name = "testpypi"
107
122
  url = "https://test.pypi.org/simple/"
108
123
  publish-url = "https://test.pypi.org/legacy/"
109
124
  explicit = true
125
+
@@ -14,19 +14,12 @@ The UiPath Python SDK provides a comprehensive CLI for managing coded agents and
14
14
 
15
15
  ### `uipath init`
16
16
 
17
- **Description:** Create uipath.json with input/output schemas and bindings.
18
-
19
- **Arguments:**
20
-
21
- | Argument | Required | Description |
22
- |----------|----------|-------------|
23
- | `entrypoint` | No | N/A |
17
+ **Description:** Initialize the project.
24
18
 
25
19
  **Options:**
26
20
 
27
21
  | Option | Type | Default | Description |
28
22
  |--------|------|---------|-------------|
29
- | `--infer-bindings` | flag | false | Infer bindings from the script. |
30
23
  | `--no-agents-md-override` | flag | false | Won't override existing .agent files and AGENTS.md file. |
31
24
 
32
25
  **Usage Examples:**
@@ -104,6 +97,7 @@ uv run uipath run --resume
104
97
  workers: Number of parallel workers for running evaluations
105
98
  no_report: Do not report the evaluation results
106
99
  enable_mocker_cache: Enable caching for LLM mocker responses
100
+ report_coverage: Report evaluation coverage
107
101
 
108
102
 
109
103
  **Arguments:**
@@ -122,6 +116,7 @@ uv run uipath run --resume
122
116
  | `--workers` | value | `1` | Number of parallel workers for running evaluations (default: 1) |
123
117
  | `--output-file` | value | `Sentinel.UNSET` | File path where the output will be written |
124
118
  | `--enable-mocker-cache` | flag | false | Enable caching for LLM mocker responses |
119
+ | `--report-coverage` | flag | false | Report evaluation coverage |
125
120
 
126
121
  **Usage Examples:**
127
122