uipath-llm-client 1.0.0__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 (1299) hide show
  1. uipath_llm_client-1.0.0/.env.example +60 -0
  2. uipath_llm_client-1.0.0/.gitattributes +1 -0
  3. uipath_llm_client-1.0.0/.github/workflows/cd-langchain.yml +51 -0
  4. uipath_llm_client-1.0.0/.github/workflows/cd.yml +51 -0
  5. uipath_llm_client-1.0.0/.github/workflows/ci_change_version.yml +88 -0
  6. uipath_llm_client-1.0.0/.github/workflows/ci_run_tests.yml +33 -0
  7. uipath_llm_client-1.0.0/.github/workflows/ci_type_check.yml +35 -0
  8. uipath_llm_client-1.0.0/.github/workflows/publish-dev.yml +213 -0
  9. uipath_llm_client-1.0.0/.gitignore +211 -0
  10. uipath_llm_client-1.0.0/.python-version +1 -0
  11. uipath_llm_client-1.0.0/CHANGELOG.md +69 -0
  12. uipath_llm_client-1.0.0/CODEOWNERS +1 -0
  13. uipath_llm_client-1.0.0/LICENSE +3 -0
  14. uipath_llm_client-1.0.0/PKG-INFO +664 -0
  15. uipath_llm_client-1.0.0/README.md +640 -0
  16. uipath_llm_client-1.0.0/packages/uipath_langchain_client/CHANGELOG.md +90 -0
  17. uipath_llm_client-1.0.0/packages/uipath_langchain_client/README.md +248 -0
  18. uipath_llm_client-1.0.0/packages/uipath_langchain_client/demo.py +278 -0
  19. uipath_llm_client-1.0.0/packages/uipath_langchain_client/pyproject.toml +43 -0
  20. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/__init__.py +50 -0
  21. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py +3 -0
  22. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/base_client.py +277 -0
  23. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/anthropic/__init__.py +3 -0
  24. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/anthropic/chat_models.py +157 -0
  25. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/azure/__init__.py +4 -0
  26. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/azure/chat_models.py +46 -0
  27. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/azure/embeddings.py +46 -0
  28. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/__init__.py +7 -0
  29. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/chat_models.py +63 -0
  30. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/embeddings.py +33 -0
  31. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/utils.py +90 -0
  32. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/google/__init__.py +4 -0
  33. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/google/chat_models.py +203 -0
  34. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/google/embeddings.py +45 -0
  35. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/__init__.py +4 -0
  36. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/chat_models.py +419 -0
  37. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/embeddings.py +31 -0
  38. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/openai/__init__.py +15 -0
  39. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/openai/chat_models.py +102 -0
  40. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/openai/embeddings.py +82 -0
  41. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/vertexai/__init__.py +3 -0
  42. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/clients/vertexai/chat_models.py +48 -0
  43. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/factory.py +217 -0
  44. uipath_llm_client-1.0.0/packages/uipath_langchain_client/src/uipath_langchain_client/settings.py +32 -0
  45. uipath_llm_client-1.0.0/packages/uipath_llamaindex_client/CHANGELOG.md +0 -0
  46. uipath_llm_client-1.0.0/packages/uipath_llamaindex_client/README.md +59 -0
  47. uipath_llm_client-1.0.0/packages/uipath_llamaindex_client/demo.py +29 -0
  48. uipath_llm_client-1.0.0/packages/uipath_llamaindex_client/pyproject.toml +22 -0
  49. uipath_llm_client-1.0.0/packages/uipath_llamaindex_client/src/uipath_llamaindex_client/__version__.py +1 -0
  50. uipath_llm_client-1.0.0/pyproject.toml +94 -0
  51. uipath_llm_client-1.0.0/src/uipath_llm_client/__init__.py +80 -0
  52. uipath_llm_client-1.0.0/src/uipath_llm_client/__version__.py +3 -0
  53. uipath_llm_client-1.0.0/src/uipath_llm_client/clients/anthropic/__init__.py +21 -0
  54. uipath_llm_client-1.0.0/src/uipath_llm_client/clients/anthropic/client.py +469 -0
  55. uipath_llm_client-1.0.0/src/uipath_llm_client/clients/google/__init__.py +5 -0
  56. uipath_llm_client-1.0.0/src/uipath_llm_client/clients/google/client.py +82 -0
  57. uipath_llm_client-1.0.0/src/uipath_llm_client/clients/openai/__init__.py +13 -0
  58. uipath_llm_client-1.0.0/src/uipath_llm_client/clients/openai/client.py +180 -0
  59. uipath_llm_client-1.0.0/src/uipath_llm_client/clients/openai/utils.py +75 -0
  60. uipath_llm_client-1.0.0/src/uipath_llm_client/httpx_client.py +319 -0
  61. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/__init__.py +89 -0
  62. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/agenthub/__init__.py +48 -0
  63. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/agenthub/auth.py +43 -0
  64. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/agenthub/settings.py +135 -0
  65. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/agenthub/utils.py +14 -0
  66. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/base.py +140 -0
  67. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/llmgateway/__init__.py +45 -0
  68. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/llmgateway/auth.py +56 -0
  69. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/llmgateway/settings.py +98 -0
  70. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/llmgateway/utils.py +14 -0
  71. uipath_llm_client-1.0.0/src/uipath_llm_client/settings/utils.py +14 -0
  72. uipath_llm_client-1.0.0/src/uipath_llm_client/utils/exceptions.py +212 -0
  73. uipath_llm_client-1.0.0/src/uipath_llm_client/utils/logging.py +144 -0
  74. uipath_llm_client-1.0.0/src/uipath_llm_client/utils/retry.py +265 -0
  75. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[anthropic.claude-haiku-4-5-20251001-v1-0].yaml +3 -0
  76. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[anthropic.claude-opus-4-5-20251101-v1-0].yaml +3 -0
  77. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[anthropic.claude-sonnet-4-5-20250929-v1-0].yaml +3 -0
  78. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[claude-haiku-4-5@20251001].yaml +3 -0
  79. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[claude-opus-4-5@20251101].yaml +3 -0
  80. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[claude-sonnet-4-5@20250929].yaml +3 -0
  81. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-2.5-flash].yaml +3 -0
  82. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-2.5-pro].yaml +3 -0
  83. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-3-flash-preview].yaml +3 -0
  84. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-3-pro-preview].yaml +3 -0
  85. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-4.1-2025-04-14].yaml +3 -0
  86. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-4o-2024-11-20].yaml +3 -0
  87. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-5-2025-08-07].yaml +3 -0
  88. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-5.1-2025-11-13].yaml +3 -0
  89. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-5.2-2025-12-11].yaml +3 -0
  90. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_embedding_model[gemini-embedding-001].yaml +3 -0
  91. uipath_llm_client-1.0.0/tests/cassettes/TestFactoryFunction.test_get_embedding_model[text-embedding-3-large].yaml +3 -0
  92. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  93. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  94. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  95. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  96. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  97. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  98. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  99. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  100. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  101. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  102. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  103. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  104. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  105. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  106. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  107. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  108. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  109. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  110. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  111. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  112. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  113. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  114. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  115. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  116. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  117. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  118. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  119. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  120. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  121. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  122. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  123. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  124. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  125. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  126. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  127. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  128. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  129. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  130. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  131. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  132. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  133. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  134. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  135. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  136. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  137. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  138. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  139. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  140. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  141. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  142. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
  143. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
  144. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  145. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  146. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
  147. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
  148. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  149. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  150. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  151. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  152. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  153. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  154. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
  155. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
  156. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  157. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  158. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
  159. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
  160. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  161. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  162. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  163. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  164. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  165. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  166. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
  167. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
  168. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  169. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  170. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
  171. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
  172. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  173. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  174. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  175. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  176. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  177. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  178. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw-model0].yaml +3 -0
  179. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw-model1].yaml +3 -0
  180. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  181. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  182. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model0].yaml +3 -0
  183. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model1].yaml +3 -0
  184. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  185. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  186. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw-model0].yaml +3 -0
  187. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw-model1].yaml +3 -0
  188. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  189. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  190. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model0].yaml +3 -0
  191. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model1].yaml +3 -0
  192. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  193. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  194. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw-model0].yaml +3 -0
  195. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw-model1].yaml +3 -0
  196. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  197. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  198. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model0].yaml +3 -0
  199. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model1].yaml +3 -0
  200. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  201. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  202. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  203. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  204. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  205. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  206. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  207. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  208. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  209. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  210. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  211. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  212. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  213. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  214. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  215. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  216. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
  217. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
  218. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
  219. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
  220. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
  221. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
  222. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
  223. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
  224. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  225. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  226. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  227. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  228. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  229. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  230. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  231. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  232. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  233. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  234. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  235. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  236. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  237. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  238. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  239. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  240. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  241. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  242. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  243. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  244. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  245. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  246. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  247. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  248. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  249. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  250. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  251. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  252. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  253. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  254. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  255. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  256. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  257. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  258. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  259. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  260. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  261. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  262. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  263. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  264. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  265. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  266. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  267. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  268. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  269. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  270. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  271. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  272. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  273. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  274. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  275. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  276. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  277. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  278. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  279. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  280. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  281. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  282. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  283. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  284. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  285. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  286. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
  287. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
  288. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  289. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  290. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
  291. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
  292. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  293. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  294. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  295. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  296. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  297. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  298. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
  299. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
  300. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  301. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  302. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
  303. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
  304. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  305. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  306. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  307. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  308. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  309. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  310. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
  311. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
  312. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  313. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  314. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
  315. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
  316. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  317. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  318. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  319. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  320. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  321. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  322. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  323. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  324. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  325. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  326. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  327. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  328. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  329. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  330. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  331. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  332. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  333. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  334. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  335. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  336. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
  337. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
  338. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
  339. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
  340. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
  341. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
  342. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
  343. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
  344. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  345. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  346. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  347. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  348. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  349. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  350. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  351. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  352. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  353. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  354. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  355. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  356. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  357. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  358. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  359. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  360. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  361. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  362. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  363. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  364. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  365. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  366. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  367. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  368. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  369. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  370. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  371. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  372. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  373. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  374. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  375. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  376. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  377. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  378. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  379. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  380. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  381. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  382. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  383. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  384. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  385. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  386. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  387. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  388. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  389. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  390. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  391. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  392. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  393. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  394. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  395. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  396. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  397. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  398. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  399. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  400. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  401. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  402. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  403. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  404. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  405. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  406. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  407. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  408. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  409. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  410. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  411. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  412. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  413. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  414. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  415. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  416. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  417. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  418. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  419. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  420. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  421. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  422. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  423. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  424. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  425. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  426. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  427. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  428. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  429. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  430. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  431. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  432. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  433. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  434. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  435. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  436. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  437. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  438. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  439. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  440. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  441. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  442. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  443. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  444. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  445. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  446. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  447. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  448. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  449. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  450. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  451. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  452. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  453. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  454. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  455. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  456. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  457. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  458. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  459. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  460. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  461. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  462. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  463. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  464. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  465. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  466. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  467. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  468. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  469. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  470. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  471. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  472. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  473. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  474. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  475. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  476. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  477. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  478. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  479. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  480. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  481. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  482. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  483. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  484. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  485. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  486. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  487. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  488. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  489. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  490. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  491. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  492. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  493. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  494. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  495. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  496. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  497. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  498. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  499. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  500. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  501. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  502. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  503. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  504. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  505. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  506. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  507. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  508. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  509. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  510. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  511. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  512. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  513. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  514. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  515. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  516. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  517. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  518. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  519. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  520. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  521. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  522. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  523. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  524. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  525. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  526. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  527. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  528. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  529. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  530. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  531. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  532. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  533. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  534. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  535. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  536. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  537. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  538. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  539. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  540. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  541. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  542. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  543. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  544. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  545. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  546. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  547. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  548. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  549. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  550. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  551. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  552. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  553. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  554. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  555. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  556. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  557. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  558. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  559. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  560. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  561. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  562. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  563. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  564. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  565. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  566. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  567. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  568. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  569. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  570. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  571. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  572. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  573. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  574. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  575. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  576. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  577. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  578. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  579. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  580. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  581. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  582. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  583. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  584. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  585. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  586. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  587. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  588. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  589. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  590. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  591. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  592. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  593. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  594. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  595. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  596. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  597. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  598. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  599. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  600. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  601. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  602. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  603. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  604. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  605. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  606. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  607. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  608. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  609. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  610. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  611. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  612. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  613. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  614. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  615. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  616. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  617. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  618. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  619. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  620. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  621. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  622. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  623. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  624. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  625. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  626. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  627. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  628. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  629. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  630. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  631. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  632. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  633. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  634. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  635. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  636. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  637. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  638. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  639. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  640. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  641. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  642. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  643. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  644. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  645. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  646. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  647. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  648. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  649. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  650. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  651. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  652. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  653. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  654. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  655. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  656. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  657. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  658. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  659. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  660. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  661. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  662. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  663. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  664. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  665. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  666. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  667. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  668. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  669. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  670. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  671. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  672. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  673. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  674. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  675. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  676. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  677. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  678. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  679. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  680. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  681. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  682. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  683. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  684. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  685. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  686. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  687. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  688. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  689. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  690. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  691. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  692. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  693. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  694. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  695. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  696. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  697. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  698. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  699. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  700. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  701. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  702. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  703. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  704. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  705. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  706. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  707. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  708. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  709. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  710. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  711. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  712. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  713. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  714. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  715. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  716. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  717. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  718. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  719. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  720. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  721. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  722. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
  723. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
  724. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  725. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  726. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
  727. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
  728. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  729. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  730. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  731. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  732. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  733. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  734. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
  735. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
  736. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  737. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  738. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
  739. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
  740. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  741. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  742. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  743. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  744. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  745. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  746. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
  747. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
  748. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  749. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  750. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
  751. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
  752. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
  753. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
  754. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  755. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  756. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  757. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  758. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  759. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  760. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  761. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  762. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  763. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  764. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  765. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  766. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  767. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  768. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  769. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  770. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  771. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  772. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
  773. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
  774. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
  775. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
  776. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
  777. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
  778. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
  779. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
  780. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  781. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  782. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  783. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  784. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  785. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  786. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  787. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  788. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  789. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  790. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  791. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  792. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  793. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  794. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  795. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  796. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  797. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  798. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  799. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  800. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  801. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  802. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  803. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  804. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  805. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  806. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  807. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  808. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  809. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  810. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  811. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  812. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  813. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  814. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  815. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  816. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  817. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  818. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  819. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  820. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  821. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  822. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
  823. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
  824. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
  825. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
  826. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
  827. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
  828. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
  829. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
  830. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
  831. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
  832. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
  833. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
  834. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
  835. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
  836. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
  837. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
  838. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
  839. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
  840. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
  841. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
  842. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
  843. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
  844. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
  845. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
  846. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
  847. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
  848. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
  849. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +3 -0
  850. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +3 -0
  851. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +3 -0
  852. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +3 -0
  853. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +3 -0
  854. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +3 -0
  855. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +3 -0
  856. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +3 -0
  857. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +3 -0
  858. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +3 -0
  859. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +3 -0
  860. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +3 -0
  861. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
  862. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
  863. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
  864. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
  865. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
  866. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
  867. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
  868. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
  869. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
  870. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
  871. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
  872. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
  873. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
  874. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
  875. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
  876. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
  877. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
  878. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
  879. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
  880. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
  881. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
  882. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
  883. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
  884. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
  885. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
  886. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
  887. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
  888. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
  889. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
  890. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
  891. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
  892. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
  893. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
  894. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
  895. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
  896. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
  897. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
  898. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
  899. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
  900. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
  901. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
  902. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
  903. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
  904. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
  905. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
  906. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
  907. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
  908. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
  909. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
  910. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
  911. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
  912. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +3 -0
  913. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +3 -0
  914. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +3 -0
  915. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +3 -0
  916. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +3 -0
  917. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +3 -0
  918. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +3 -0
  919. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +3 -0
  920. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +3 -0
  921. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +3 -0
  922. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +3 -0
  923. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +3 -0
  924. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
  925. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
  926. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
  927. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
  928. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
  929. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
  930. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
  931. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
  932. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
  933. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
  934. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
  935. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
  936. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
  937. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
  938. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
  939. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
  940. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
  941. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
  942. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  943. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  944. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  945. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  946. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  947. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  948. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  949. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  950. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  951. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  952. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  953. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  954. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  955. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  956. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  957. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  958. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  959. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  960. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  961. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  962. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  963. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  964. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  965. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  966. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  967. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  968. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  969. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  970. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  971. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  972. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  973. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  974. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  975. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  976. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  977. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  978. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  979. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  980. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  981. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  982. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  983. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  984. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  985. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  986. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  987. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  988. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  989. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  990. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  991. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  992. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
  993. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
  994. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  995. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  996. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  997. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  998. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  999. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  1000. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  1001. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  1002. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  1003. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  1004. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  1005. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  1006. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
  1007. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
  1008. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
  1009. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
  1010. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
  1011. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
  1012. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
  1013. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
  1014. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
  1015. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
  1016. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
  1017. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
  1018. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  1019. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  1020. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  1021. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  1022. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  1023. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  1024. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  1025. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  1026. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
  1027. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
  1028. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
  1029. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
  1030. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1031. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1032. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1033. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1034. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1035. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1036. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1037. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1038. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1039. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1040. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1041. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1042. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1043. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1044. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1045. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1046. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1047. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1048. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1049. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1050. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1051. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1052. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1053. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1054. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1055. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1056. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1057. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1058. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1059. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1060. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1061. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1062. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1063. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1064. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1065. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1066. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1067. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1068. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1069. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1070. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1071. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1072. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1073. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1074. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1075. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1076. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1077. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1078. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1079. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1080. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1081. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1082. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1083. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1084. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1085. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1086. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1087. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1088. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1089. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1090. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1091. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1092. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1093. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1094. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1095. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1096. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1097. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1098. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1099. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1100. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1101. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1102. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1103. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1104. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1105. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1106. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1107. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1108. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1109. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1110. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1111. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1112. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1113. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1114. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1115. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1116. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1117. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1118. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1119. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1120. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1121. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1122. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1123. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1124. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1125. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1126. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1127. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1128. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1129. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1130. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1131. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1132. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1133. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1134. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1135. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1136. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1137. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1138. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1139. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1140. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1141. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1142. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1143. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1144. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1145. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1146. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1147. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1148. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1149. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1150. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1151. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1152. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1153. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1154. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1155. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1156. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1157. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1158. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1159. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1160. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1161. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1162. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1163. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1164. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1165. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1166. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1167. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1168. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1169. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1170. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1171. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1172. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1173. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1174. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1175. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1176. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1177. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1178. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1179. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1180. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1181. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1182. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1183. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1184. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1185. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1186. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1187. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1188. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1189. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1190. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1191. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1192. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1193. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1194. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1195. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1196. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1197. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1198. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1199. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1200. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1201. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1202. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1203. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1204. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1205. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1206. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1207. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1208. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1209. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1210. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1211. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1212. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1213. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1214. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1215. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1216. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1217. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1218. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1219. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1220. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1221. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1222. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
  1223. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1224. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
  1225. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1226. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1227. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1228. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1229. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1230. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1231. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1232. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1233. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1234. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1235. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1236. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1237. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1238. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1239. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1240. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1241. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1242. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1243. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1244. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1245. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1246. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1247. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1248. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1249. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1250. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1251. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1252. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1253. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1254. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1255. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1256. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
  1257. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1258. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
  1259. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
  1260. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
  1261. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1262. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1263. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
  1264. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
  1265. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1266. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1267. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
  1268. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
  1269. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1270. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1271. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
  1272. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
  1273. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1274. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1275. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1276. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1277. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
  1278. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
  1279. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationEmbeddings.test_aembed_documents[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +3 -0
  1280. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationEmbeddings.test_aembed_documents[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +3 -0
  1281. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationEmbeddings.test_aembed_query[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +3 -0
  1282. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationEmbeddings.test_aembed_query[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +3 -0
  1283. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationEmbeddings.test_embed_documents[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +3 -0
  1284. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationEmbeddings.test_embed_documents[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +3 -0
  1285. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationEmbeddings.test_embed_query[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +3 -0
  1286. uipath_llm_client-1.0.0/tests/cassettes/TestIntegrationEmbeddings.test_embed_query[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +3 -0
  1287. uipath_llm_client-1.0.0/tests/conftest.py +58 -0
  1288. uipath_llm_client-1.0.0/tests/core/core_smoke_test.py +494 -0
  1289. uipath_llm_client-1.0.0/tests/core/test_anthropic_client.py +0 -0
  1290. uipath_llm_client-1.0.0/tests/core/test_base_client.py +876 -0
  1291. uipath_llm_client-1.0.0/tests/core/test_google_client.py +0 -0
  1292. uipath_llm_client-1.0.0/tests/core/test_openai_client.py +0 -0
  1293. uipath_llm_client-1.0.0/tests/langchain/conftest.py +251 -0
  1294. uipath_llm_client-1.0.0/tests/langchain/langchain_smoke_test.py +499 -0
  1295. uipath_llm_client-1.0.0/tests/langchain/test_factory_function.py +17 -0
  1296. uipath_llm_client-1.0.0/tests/langchain/test_langchain_functionality.py +48 -0
  1297. uipath_llm_client-1.0.0/tests/langchain/test_provider_integrations.py +376 -0
  1298. uipath_llm_client-1.0.0/tests/langchain/utils.py +19 -0
  1299. uipath_llm_client-1.0.0/uv.lock +3788 -0
@@ -0,0 +1,60 @@
1
+ # =============================================================================
2
+ # UiPath LLM Client Configuration
3
+ # =============================================================================
4
+ # Copy this file to .env and fill in your values.
5
+ # The client supports two backends: AgentHub (default) and LLMGateway.
6
+
7
+ # -----------------------------------------------------------------------------
8
+ # Backend Selection
9
+ # -----------------------------------------------------------------------------
10
+ # Choose which backend to use: "agenthub" (default) or "llmgateway"
11
+ UIPATH_LLM_BACKEND="agenthub"
12
+
13
+ # =============================================================================
14
+ # AGENTHUB BACKEND SETTINGS
15
+ # =============================================================================
16
+ # AgentHub uses the UiPath CLI for authentication by default.
17
+ # Run `uv run uipath auth login` to authenticate interactively.
18
+ # Alternatively, set the environment variables below.
19
+
20
+ # Environment selection: "cloud", "staging", or "alpha" (default: None)
21
+ UIPATH_ENVIRONMENT=""
22
+
23
+ # Core settings (populated automatically by CLI auth, or set manually)
24
+ UIPATH_URL=""
25
+ UIPATH_ORGANIZATION_ID=""
26
+ UIPATH_TENANT_ID=""
27
+
28
+ # Access token (short-lived, populated by CLI auth)
29
+ # If not using CLI auth, provide this directly or use S2S credentials below
30
+ UIPATH_ACCESS_TOKEN=""
31
+
32
+ # S2S Authentication for AgentHub (alternative to CLI/access token)
33
+ UIPATH_CLIENT_ID=""
34
+ UIPATH_CLIENT_SECRET=""
35
+ UIPATH_CLIENT_SCOPE="" # Optional: custom OAuth scope
36
+
37
+ # =============================================================================
38
+ # LLMGATEWAY BACKEND SETTINGS
39
+ # =============================================================================
40
+ # To use LLMGateway, set UIPATH_LLM_BACKEND="llmgateway" above.
41
+
42
+ # Required settings
43
+ LLMGW_URL=""
44
+ LLMGW_SEMANTIC_ORG_ID=""
45
+ LLMGW_SEMANTIC_TENANT_ID=""
46
+ LLMGW_REQUESTING_PRODUCT=""
47
+ LLMGW_REQUESTING_FEATURE=""
48
+
49
+ # Authentication (choose one method)
50
+ # Option 1: Access token (short-lived)
51
+ LLMGW_ACCESS_TOKEN=""
52
+
53
+ # Option 2: S2S Authentication (recommended for production)
54
+ LLMGW_CLIENT_ID=""
55
+ LLMGW_CLIENT_SECRET=""
56
+
57
+ # Optional tracking and tracing
58
+ LLMGW_SEMANTIC_USER_ID=""
59
+ LLMGW_ACTION_ID=""
60
+ LLMGW_ADDITIONAL_HEADERS=""
@@ -0,0 +1 @@
1
+ tests/cassettes/** filter=lfs diff=lfs merge=lfs -text
@@ -0,0 +1,51 @@
1
+ name: Publish uipath-langchain-client to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ # Publish on any tag starting with `langchain-v`, e.g., langchain-v1.0.0
7
+ - langchain-v*
8
+ workflow_dispatch:
9
+
10
+ jobs:
11
+ build:
12
+ name: Build package
13
+ runs-on: ubuntu-latest
14
+ environment: pypi
15
+ permissions:
16
+ contents: read
17
+ id-token: write
18
+
19
+ steps:
20
+ - uses: actions/checkout@v6
21
+
22
+ - name: Setup uv
23
+ uses: astral-sh/setup-uv@v7
24
+ with:
25
+ version: "0.9.27"
26
+ enable-cache: true
27
+
28
+ - name: "Set up Python"
29
+ uses: actions/setup-python@v6
30
+ with:
31
+ python-version-file: ".python-version"
32
+
33
+ - name: "Install dependencies"
34
+ run: uv sync --dev --all-extras --locked
35
+
36
+ - name: Build package
37
+ run: uv build --package uipath-langchain-client
38
+
39
+ - name: Smoke test (wheel with all extras)
40
+ run: |
41
+ WHEEL=$(ls dist/*.whl)
42
+ uv run --isolated --no-project --with "${WHEEL}[all]" tests/langchain/langchain_smoke_test.py
43
+
44
+ - name: Smoke test (source distribution with all extras)
45
+ run: |
46
+ SDIST=$(ls dist/*.tar.gz)
47
+ uv run --isolated --no-project --with "${SDIST}[all]" tests/langchain/langchain_smoke_test.py
48
+
49
+ - name: Publish package
50
+ run: uv publish
51
+
@@ -0,0 +1,51 @@
1
+ name: Publish uipath-llm-client to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ # Publish on any tag starting with a `v`, e.g., v1.0.0
7
+ - v*
8
+ workflow_dispatch:
9
+
10
+ jobs:
11
+ build:
12
+ name: Build package
13
+ runs-on: ubuntu-latest
14
+ environment: pypi
15
+ permissions:
16
+ contents: read
17
+ id-token: write
18
+
19
+ steps:
20
+ - uses: actions/checkout@v6
21
+
22
+ - name: Setup uv
23
+ uses: astral-sh/setup-uv@v7
24
+ with:
25
+ version: "0.9.27"
26
+ enable-cache: true
27
+
28
+ - name: "Set up Python"
29
+ uses: actions/setup-python@v6
30
+ with:
31
+ python-version-file: ".python-version"
32
+
33
+ - name: "Install dependencies"
34
+ run: uv sync --dev --all-extras --locked
35
+
36
+ - name: Build package
37
+ run: uv build --package uipath-llm-client
38
+
39
+ - name: Smoke test (wheel with all extras)
40
+ run: |
41
+ WHEEL=$(ls dist/*.whl)
42
+ uv run --isolated --no-project --with "${WHEEL}[all]" tests/core/core_smoke_test.py
43
+
44
+ - name: Smoke test (source distribution with all extras)
45
+ run: |
46
+ SDIST=$(ls dist/*.tar.gz)
47
+ uv run --isolated --no-project --with "${SDIST}[all]" tests/core/core_smoke_test.py
48
+
49
+ - name: Publish package
50
+ run: uv publish
51
+
@@ -0,0 +1,88 @@
1
+ name: Validate Version and Changelog
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ validate-version:
10
+ name: Validate version updates
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+ with:
15
+ fetch-depth: 0
16
+
17
+ - name: Get changed files
18
+ id: changes
19
+ run: |
20
+ git diff origin/main...HEAD --name-only > changes.txt
21
+ echo "Changed files:"
22
+ cat changes.txt
23
+
24
+ - name: Validate version updates for changed packages
25
+ run: |
26
+ VALIDATION_FAILED=0
27
+
28
+ # Core package: src/uipath_llm_client/ -> src/uipath_llm_client/__version__.py
29
+ core_changes=$(grep -E '^src/uipath_llm_client/' changes.txt | grep -v '__version__.py' || true)
30
+ core_version=$(grep -E '^src/uipath_llm_client/__version__.py' changes.txt || true)
31
+ if [ -n "$core_changes" ] && [ -z "$core_version" ]; then
32
+ echo "::error::Core package (src/uipath_llm_client/) changes detected but no version update in src/uipath_llm_client/__version__.py"
33
+ VALIDATION_FAILED=1
34
+ fi
35
+
36
+ # Langchain package: packages/uipath_langchain_client/ -> packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py
37
+ langchain_changes=$(grep -E '^packages/uipath_langchain_client/' changes.txt | grep -v '__version__.py' || true)
38
+ langchain_version=$(grep -E '^packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py' changes.txt || true)
39
+ if [ -n "$langchain_changes" ] && [ -z "$langchain_version" ]; then
40
+ echo "::error::Langchain package (packages/uipath_langchain_client/) changes detected but no version update in packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py"
41
+ VALIDATION_FAILED=1
42
+ fi
43
+
44
+ # LlamaIndex package: packages/uipath_llamaindex_client/ -> packages/uipath_llamaindex_client/src/uipath_llamaindex_client/__version__.py
45
+ llamaindex_changes=$(grep -E '^packages/uipath_llamaindex_client/' changes.txt | grep -v '__version__.py' || true)
46
+ llamaindex_version=$(grep -E '^packages/uipath_llamaindex_client/src/uipath_llamaindex_client/__version__.py' changes.txt || true)
47
+ if [ -n "$llamaindex_changes" ] && [ -z "$llamaindex_version" ]; then
48
+ echo "::error::LlamaIndex package (packages/uipath_llamaindex_client/) changes detected but no version update in packages/uipath_llamaindex_client/src/uipath_llamaindex_client/__version__.py"
49
+ VALIDATION_FAILED=1
50
+ fi
51
+
52
+ if [ $VALIDATION_FAILED -eq 1 ]; then
53
+ exit 1
54
+ fi
55
+ echo "✓ All package versions are consistent with changes."
56
+
57
+ - name: Validate changelog updates for version changes
58
+ run: |
59
+ VALIDATION_FAILED=0
60
+
61
+ # Core package: src/uipath_llm_client/__version__.py -> CHANGELOG.md (root)
62
+ core_version=$(grep -E '^src/uipath_llm_client/__version__.py' changes.txt || true)
63
+ core_changelog=$(grep -E '^CHANGELOG.md' changes.txt || true)
64
+ if [ -n "$core_version" ] && [ -z "$core_changelog" ]; then
65
+ echo "::error::Core package version changed but no changelog update in CHANGELOG.md"
66
+ VALIDATION_FAILED=1
67
+ fi
68
+
69
+ # Langchain package: packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py -> packages/uipath_langchain_client/CHANGELOG.md
70
+ langchain_version=$(grep -E '^packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py' changes.txt || true)
71
+ langchain_changelog=$(grep -E '^packages/uipath_langchain_client/CHANGELOG.md' changes.txt || true)
72
+ if [ -n "$langchain_version" ] && [ -z "$langchain_changelog" ]; then
73
+ echo "::error::Langchain package version changed but no changelog update in packages/uipath_langchain_client/CHANGELOG.md"
74
+ VALIDATION_FAILED=1
75
+ fi
76
+
77
+ # LlamaIndex package: packages/uipath_llamaindex_client/src/uipath_llamaindex_client/__version__.py -> packages/uipath_llamaindex_client/CHANGELOG.md
78
+ llamaindex_version=$(grep -E '^packages/uipath_llamaindex_client/src/uipath_llamaindex_client/__version__.py' changes.txt || true)
79
+ llamaindex_changelog=$(grep -E '^packages/uipath_llamaindex_client/CHANGELOG.md' changes.txt || true)
80
+ if [ -n "$llamaindex_version" ] && [ -z "$llamaindex_changelog" ]; then
81
+ echo "::error::LlamaIndex package version changed but no changelog update in packages/uipath_llamaindex_client/CHANGELOG.md"
82
+ VALIDATION_FAILED=1
83
+ fi
84
+
85
+ if [ $VALIDATION_FAILED -eq 1 ]; then
86
+ exit 1
87
+ fi
88
+ echo "✓ All changelogs are consistent with version changes."
@@ -0,0 +1,33 @@
1
+ name: Run Tests
2
+
3
+ on:
4
+ workflow_run:
5
+ workflows: ["Type Check & Lint"]
6
+ types:
7
+ - completed
8
+
9
+ jobs:
10
+ test:
11
+ name: Test
12
+ runs-on: ubuntu-latest
13
+ # Only run if the type check workflow succeeded
14
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
15
+ steps:
16
+ - uses: actions/checkout@v6
17
+
18
+ - name: Install uv
19
+ uses: astral-sh/setup-uv@v7
20
+ with:
21
+ version: "0.9.27"
22
+ enable-cache: true
23
+
24
+ - name: Set up Python
25
+ uses: actions/setup-python@v6
26
+ with:
27
+ python-version-file: ".python-version"
28
+
29
+ - name: Install dependencies
30
+ run: uv sync --dev --all-extras
31
+
32
+ - name: Run tests
33
+ run: uv run pytest tests
@@ -0,0 +1,35 @@
1
+ name: Type Check & Lint
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ lint-and-typecheck:
10
+ name: Lint & Type Check
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+
15
+ - name: Install uv
16
+ uses: astral-sh/setup-uv@v7
17
+ with:
18
+ version: "0.9.27"
19
+ enable-cache: true
20
+
21
+ - name: Set up Python
22
+ uses: actions/setup-python@v6
23
+ with:
24
+ python-version-file: ".python-version"
25
+
26
+ - name: Install dependencies
27
+ run: uv sync --dev --all-extras
28
+
29
+ - name: Ruff check
30
+ run: |
31
+ uv run ruff check || exit 1
32
+ uv run ruff format --check || exit 1
33
+
34
+ - name: Pyright
35
+ run: uv run pyright .
@@ -0,0 +1,213 @@
1
+ name: Publish Dev Build
2
+
3
+ on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened, labeled]
6
+
7
+ jobs:
8
+ detect-changes:
9
+ runs-on: ubuntu-latest
10
+ if: contains(github.event.pull_request.labels.*.name, 'build:dev')
11
+ outputs:
12
+ core-changed: ${{ steps.changes.outputs.core }}
13
+ langchain-changed: ${{ steps.changes.outputs.langchain }}
14
+ steps:
15
+ - uses: actions/checkout@v6
16
+ with:
17
+ fetch-depth: 0
18
+
19
+ - name: Detect changed packages
20
+ id: changes
21
+ run: |
22
+ # Get list of changed files
23
+ git diff origin/main...HEAD --name-only > changes.txt
24
+ echo "Changed files:"
25
+ cat changes.txt
26
+
27
+ # Check if core package changed
28
+ if grep -qE '^src/uipath_llm_client/' changes.txt; then
29
+ echo "core=true" >> $GITHUB_OUTPUT
30
+ echo "Core package has changes"
31
+ else
32
+ echo "core=false" >> $GITHUB_OUTPUT
33
+ echo "Core package has no changes"
34
+ fi
35
+
36
+ # Check if langchain package changed
37
+ if grep -qE '^packages/uipath_langchain_client/' changes.txt; then
38
+ echo "langchain=true" >> $GITHUB_OUTPUT
39
+ echo "Langchain package has changes"
40
+ else
41
+ echo "langchain=false" >> $GITHUB_OUTPUT
42
+ echo "Langchain package has no changes"
43
+ fi
44
+
45
+ publish-dev:
46
+ needs: detect-changes
47
+ runs-on: ubuntu-latest
48
+ if: needs.detect-changes.outputs.core-changed == 'true' || needs.detect-changes.outputs.langchain-changed == 'true'
49
+ permissions:
50
+ contents: read
51
+ pull-requests: write
52
+
53
+ steps:
54
+ - uses: actions/checkout@v6
55
+
56
+ - name: Install uv
57
+ uses: astral-sh/setup-uv@v7
58
+ with:
59
+ version: "0.9.27"
60
+ enable-cache: true
61
+
62
+ - name: Set up Python
63
+ uses: actions/setup-python@v6
64
+ with:
65
+ python-version-file: ".python-version"
66
+
67
+ - name: Install dependencies
68
+ run: uv sync --dev --all-extras
69
+
70
+ - name: Set development versions and update PR
71
+ env:
72
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73
+ CORE_CHANGED: ${{ needs.detect-changes.outputs.core-changed }}
74
+ LANGCHAIN_CHANGED: ${{ needs.detect-changes.outputs.langchain-changed }}
75
+ run: |
76
+ # Get PR number and run number with proper padding
77
+ PR_NUM="${{ github.event.pull_request.number }}"
78
+ PADDED_PR=$(printf "%05d" $PR_NUM)
79
+ PADDED_RUN=$(printf "%04d" ${{ github.run_number }})
80
+ NEXT_PR=$((PR_NUM + 1))
81
+ PADDED_NEXT_PR=$(printf "%05d" $NEXT_PR)
82
+
83
+ # Initialize arrays for changed packages
84
+ PACKAGES_INFO=""
85
+ DEPENDENCIES_EXACT=""
86
+ DEPENDENCIES_RANGE=""
87
+ SOURCES=""
88
+ OVERRIDES=""
89
+
90
+ # Process core package if changed
91
+ if [ "$CORE_CHANGED" == "true" ]; then
92
+ # Read current version from __version__.py
93
+ CORE_VERSION=$(grep -oP '__version__\s*=\s*"\K[^"]+' src/uipath_llm_client/__version__.py)
94
+ DEV_VERSION="${CORE_VERSION}.dev1${PADDED_PR}${PADDED_RUN}"
95
+ MIN_VERSION="${CORE_VERSION}.dev1${PADDED_PR}0000"
96
+ MAX_VERSION="${CORE_VERSION}.dev1${PADDED_NEXT_PR}0000"
97
+
98
+ # Update __version__.py
99
+ sed -i "s/__version__ = \".*\"/__version__ = \"${DEV_VERSION}\"/" src/uipath_llm_client/__version__.py
100
+ echo "Core package version set to $DEV_VERSION"
101
+
102
+ DEPENDENCIES_EXACT="${DEPENDENCIES_EXACT} \"uipath-llm-client==${DEV_VERSION}\",\n"
103
+ DEPENDENCIES_RANGE="${DEPENDENCIES_RANGE} \"uipath-llm-client>=${MIN_VERSION},<${MAX_VERSION}\",\n"
104
+ SOURCES="${SOURCES}uipath-llm-client = { index = \"testpypi\" }\n"
105
+ OVERRIDES="${OVERRIDES} \"uipath-llm-client>=${MIN_VERSION},<${MAX_VERSION}\",\n"
106
+ fi
107
+
108
+ # Process langchain package if changed
109
+ if [ "$LANGCHAIN_CHANGED" == "true" ]; then
110
+ # Read current version from __version__.py
111
+ LC_VERSION=$(grep -oP '__version__\s*=\s*"\K[^"]+' packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py)
112
+ DEV_VERSION="${LC_VERSION}.dev1${PADDED_PR}${PADDED_RUN}"
113
+ MIN_VERSION="${LC_VERSION}.dev1${PADDED_PR}0000"
114
+ MAX_VERSION="${LC_VERSION}.dev1${PADDED_NEXT_PR}0000"
115
+
116
+ # Update __version__.py
117
+ sed -i "s/__version__ = \".*\"/__version__ = \"${DEV_VERSION}\"/" packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py
118
+ echo "Langchain package version set to $DEV_VERSION"
119
+
120
+ DEPENDENCIES_EXACT="${DEPENDENCIES_EXACT} \"uipath-langchain-client==${DEV_VERSION}\",\n"
121
+ DEPENDENCIES_RANGE="${DEPENDENCIES_RANGE} \"uipath-langchain-client>=${MIN_VERSION},<${MAX_VERSION}\",\n"
122
+ SOURCES="${SOURCES}uipath-langchain-client = { index = \"testpypi\" }\n"
123
+ OVERRIDES="${OVERRIDES} \"uipath-langchain-client>=${MIN_VERSION},<${MAX_VERSION}\",\n"
124
+ fi
125
+
126
+ # Build PR description
127
+ cat > /tmp/pr_update.md << 'HEREDOC_END'
128
+ <!-- DEV_PACKAGE_START -->
129
+ ## Development Package
130
+
131
+ Add these packages as dependencies in your pyproject.toml:
132
+
133
+ ```toml
134
+ [project]
135
+ dependencies = [
136
+ # Exact versions:
137
+ HEREDOC_END
138
+
139
+ echo -e "${DEPENDENCIES_EXACT}" >> /tmp/pr_update.md
140
+
141
+ cat >> /tmp/pr_update.md << 'HEREDOC_END'
142
+ # Or use version ranges for any build from this PR:
143
+ HEREDOC_END
144
+
145
+ echo -e "${DEPENDENCIES_RANGE}" >> /tmp/pr_update.md
146
+
147
+ cat >> /tmp/pr_update.md << 'HEREDOC_END'
148
+ ]
149
+
150
+ [[tool.uv.index]]
151
+ name = "testpypi"
152
+ url = "https://test.pypi.org/simple/"
153
+ publish-url = "https://test.pypi.org/legacy/"
154
+ explicit = true
155
+
156
+ [tool.uv.sources]
157
+ HEREDOC_END
158
+
159
+ echo -e "${SOURCES}" >> /tmp/pr_update.md
160
+
161
+ cat >> /tmp/pr_update.md << 'HEREDOC_END'
162
+
163
+ [tool.uv]
164
+ override-dependencies = [
165
+ HEREDOC_END
166
+
167
+ echo -e "${OVERRIDES}" >> /tmp/pr_update.md
168
+
169
+ cat >> /tmp/pr_update.md << 'HEREDOC_END'
170
+ ]
171
+ ```
172
+ <!-- DEV_PACKAGE_END -->
173
+ HEREDOC_END
174
+
175
+ DEV_MESSAGE=$(cat /tmp/pr_update.md)
176
+
177
+ # Update PR description using GitHub API
178
+ PR_URL="https://api.github.com/repos/${{ github.repository }}/pulls/${PR_NUM}"
179
+ CURRENT_BODY=$(gh pr view ${PR_NUM} --json body -q '.body' || echo "")
180
+
181
+ # Check if markers exist and replace or append
182
+ if echo "$CURRENT_BODY" | grep -q "<!-- DEV_PACKAGE_START -->"; then
183
+ # Replace content between markers
184
+ NEW_BODY=$(echo "$CURRENT_BODY" | sed '/<!-- DEV_PACKAGE_START -->/,/<!-- DEV_PACKAGE_END -->/d')
185
+ NEW_BODY="${NEW_BODY}
186
+
187
+ ${DEV_MESSAGE}"
188
+ else
189
+ # Append to end
190
+ NEW_BODY="${CURRENT_BODY}
191
+
192
+ ${DEV_MESSAGE}"
193
+ fi
194
+
195
+ # Update PR
196
+ gh pr edit ${PR_NUM} --body "$NEW_BODY"
197
+ echo "Updated PR description with development package information"
198
+
199
+ - name: Build core package
200
+ if: needs.detect-changes.outputs.core-changed == 'true'
201
+ run: uv build --package uipath-llm-client
202
+
203
+ - name: Build langchain package
204
+ if: needs.detect-changes.outputs.langchain-changed == 'true'
205
+ run: uv build --package uipath-langchain-client
206
+
207
+ - name: Publish core package
208
+ if: needs.detect-changes.outputs.core-changed == 'true'
209
+ run: uv publish dist/uipath_llm_client* --index testpypi --token ${{ secrets.UV_PUBLISH_TOKEN_UIPATH_LLM_CLIENT }}
210
+
211
+ - name: Publish langchain package
212
+ if: needs.detect-changes.outputs.langchain-changed == 'true'
213
+ run: uv publish dist/uipath_langchain_client* --index testpypi --token ${{ secrets.UV_PUBLISH_TOKEN_UIPATH_LANGCHAIN_CLIENT }}