uipath-llm-client 1.0.3__tar.gz → 1.0.5__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 (1298) hide show
  1. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/.github/workflows/publish-dev.yml +1 -1
  2. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/CHANGELOG.md +10 -0
  3. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/PKG-INFO +7 -7
  4. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/README.md +6 -6
  5. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/CHANGELOG.md +22 -1
  6. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/README.md +5 -5
  7. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/demo.py +2 -2
  8. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/pyproject.toml +3 -2
  9. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/__init__.py +2 -2
  10. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py +1 -1
  11. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/base_client.py +7 -4
  12. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/anthropic/chat_models.py +8 -8
  13. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/chat_models.py +1 -1
  14. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/chat_models.py +2 -2
  15. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/openai/chat_models.py +4 -4
  16. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/openai/embeddings.py +4 -4
  17. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/vertexai/chat_models.py +2 -2
  18. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/factory.py +13 -13
  19. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_llamaindex_client/README.md +4 -4
  20. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/pyproject.toml +6 -0
  21. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/__init__.py +1 -1
  22. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/__version__.py +1 -1
  23. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/clients/openai/client.py +4 -4
  24. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/httpx_client.py +2 -2
  25. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/utils/retry.py +3 -3
  26. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/core/test_base_client.py +16 -6
  27. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/langchain/langchain_smoke_test.py +1 -1
  28. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/langchain/test_factory_function.py +2 -2
  29. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/uv.lock +19 -6
  30. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/.env.example +0 -0
  31. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/.gitattributes +0 -0
  32. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/.github/workflows/cd-langchain.yml +0 -0
  33. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/.github/workflows/cd.yml +0 -0
  34. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/.github/workflows/ci.yml +0 -0
  35. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/.github/workflows/ci_change_version.yml +0 -0
  36. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/.gitignore +0 -0
  37. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/.python-version +0 -0
  38. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/CODEOWNERS +0 -0
  39. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/LICENSE +0 -0
  40. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/anthropic/__init__.py +0 -0
  41. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/azure/__init__.py +0 -0
  42. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/azure/chat_models.py +0 -0
  43. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/azure/embeddings.py +0 -0
  44. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/__init__.py +0 -0
  45. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/embeddings.py +0 -0
  46. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/utils.py +0 -0
  47. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/google/__init__.py +0 -0
  48. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/google/chat_models.py +0 -0
  49. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/google/embeddings.py +0 -0
  50. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/__init__.py +0 -0
  51. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/embeddings.py +0 -0
  52. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/openai/__init__.py +0 -0
  53. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/clients/vertexai/__init__.py +0 -0
  54. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_langchain_client/src/uipath_langchain_client/settings.py +0 -0
  55. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_llamaindex_client/CHANGELOG.md +0 -0
  56. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_llamaindex_client/demo.py +0 -0
  57. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_llamaindex_client/pyproject.toml +0 -0
  58. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/packages/uipath_llamaindex_client/src/uipath_llamaindex_client/__version__.py +0 -0
  59. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/clients/anthropic/__init__.py +0 -0
  60. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/clients/anthropic/client.py +0 -0
  61. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/clients/google/__init__.py +0 -0
  62. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/clients/google/client.py +0 -0
  63. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/clients/openai/__init__.py +0 -0
  64. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/clients/openai/utils.py +0 -0
  65. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/__init__.py +0 -0
  66. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/agenthub/__init__.py +0 -0
  67. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/agenthub/auth.py +0 -0
  68. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/agenthub/settings.py +0 -0
  69. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/base.py +0 -0
  70. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/llmgateway/__init__.py +0 -0
  71. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/llmgateway/auth.py +0 -0
  72. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/llmgateway/settings.py +0 -0
  73. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/llmgateway/utils.py +0 -0
  74. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/settings/utils.py +0 -0
  75. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/utils/exceptions.py +0 -0
  76. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/utils/logging.py +0 -0
  77. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/src/uipath_llm_client/utils/ssl_config.py +0 -0
  78. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[anthropic.claude-haiku-4-5-20251001-v1-0].yaml +0 -0
  79. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[anthropic.claude-opus-4-5-20251101-v1-0].yaml +0 -0
  80. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[anthropic.claude-sonnet-4-5-20250929-v1-0].yaml +0 -0
  81. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[claude-haiku-4-5@20251001].yaml +0 -0
  82. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[claude-opus-4-5@20251101].yaml +0 -0
  83. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[claude-sonnet-4-5@20250929].yaml +0 -0
  84. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-2.5-flash].yaml +0 -0
  85. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-2.5-pro].yaml +0 -0
  86. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-3-flash-preview].yaml +0 -0
  87. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-3-pro-preview].yaml +0 -0
  88. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-4.1-2025-04-14].yaml +0 -0
  89. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-4o-2024-11-20].yaml +0 -0
  90. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-5-2025-08-07].yaml +0 -0
  91. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-5.1-2025-11-13].yaml +0 -0
  92. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-5.2-2025-12-11].yaml +0 -0
  93. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_embedding_model[gemini-embedding-001].yaml +0 -0
  94. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestFactoryFunction.test_get_embedding_model[text-embedding-3-large].yaml +0 -0
  95. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  96. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  97. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  98. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  99. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  100. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  101. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  102. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  103. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  104. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  105. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  106. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  107. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  108. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  109. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  110. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  111. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  112. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  113. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  114. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  115. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  116. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  117. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  118. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  119. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  120. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  121. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  122. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  123. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  124. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  125. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  126. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  127. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  128. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  129. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  130. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  131. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  132. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  133. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  134. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  135. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  136. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  137. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  138. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  139. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  140. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  141. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  142. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  143. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  144. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  145. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +0 -0
  146. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +0 -0
  147. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  148. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  149. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +0 -0
  150. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +0 -0
  151. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  152. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  153. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  154. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  155. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  156. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  157. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +0 -0
  158. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +0 -0
  159. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  160. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  161. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +0 -0
  162. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +0 -0
  163. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  164. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  165. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  166. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  167. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  168. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  169. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +0 -0
  170. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +0 -0
  171. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  172. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  173. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +0 -0
  174. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +0 -0
  175. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  176. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  177. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  178. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  179. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +0 -0
  180. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +0 -0
  181. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw-model0].yaml +0 -0
  182. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw-model1].yaml +0 -0
  183. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  184. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  185. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model0].yaml +0 -0
  186. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model1].yaml +0 -0
  187. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +0 -0
  188. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +0 -0
  189. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw-model0].yaml +0 -0
  190. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw-model1].yaml +0 -0
  191. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  192. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  193. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model0].yaml +0 -0
  194. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model1].yaml +0 -0
  195. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +0 -0
  196. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +0 -0
  197. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw-model0].yaml +0 -0
  198. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw-model1].yaml +0 -0
  199. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  200. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  201. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model0].yaml +0 -0
  202. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model1].yaml +0 -0
  203. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  204. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  205. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  206. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  207. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  208. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  209. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  210. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  211. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  212. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  213. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  214. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  215. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  216. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  217. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  218. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  219. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +0 -0
  220. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +0 -0
  221. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +0 -0
  222. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +0 -0
  223. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +0 -0
  224. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +0 -0
  225. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +0 -0
  226. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +0 -0
  227. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  228. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  229. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  230. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  231. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  232. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  233. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  234. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  235. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  236. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  237. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  238. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  239. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  240. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  241. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  242. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  243. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  244. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  245. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  246. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  247. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  248. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  249. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  250. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  251. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  252. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  253. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  254. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  255. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  256. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  257. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  258. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  259. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  260. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  261. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  262. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  263. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  264. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  265. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  266. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  267. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  268. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  269. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  270. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  271. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  272. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  273. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  274. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  275. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  276. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  277. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  278. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  279. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  280. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  281. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  282. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  283. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  284. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  285. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  286. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  287. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  288. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  289. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +0 -0
  290. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +0 -0
  291. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  292. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  293. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +0 -0
  294. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +0 -0
  295. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  296. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  297. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  298. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  299. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  300. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  301. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +0 -0
  302. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +0 -0
  303. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  304. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  305. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +0 -0
  306. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +0 -0
  307. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  308. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  309. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  310. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  311. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  312. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  313. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +0 -0
  314. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +0 -0
  315. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  316. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  317. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +0 -0
  318. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +0 -0
  319. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  320. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  321. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  322. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  323. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  324. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  325. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  326. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  327. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  328. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  329. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  330. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  331. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  332. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  333. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  334. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  335. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  336. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  337. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  338. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  339. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +0 -0
  340. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +0 -0
  341. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +0 -0
  342. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +0 -0
  343. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +0 -0
  344. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +0 -0
  345. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +0 -0
  346. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +0 -0
  347. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  348. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  349. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  350. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  351. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  352. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  353. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  354. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  355. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  356. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  357. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  358. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  359. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  360. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  361. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  362. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  363. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  364. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  365. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  366. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  367. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  368. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  369. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  370. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  371. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  372. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  373. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  374. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  375. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  376. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  377. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  378. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  379. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  380. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  381. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  382. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  383. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  384. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  385. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  386. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  387. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  388. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  389. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  390. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  391. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  392. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  393. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  394. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  395. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  396. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  397. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  398. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  399. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  400. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  401. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  402. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  403. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  404. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  405. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  406. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  407. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  408. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  409. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  410. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  411. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  412. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  413. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  414. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  415. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  416. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  417. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  418. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  419. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  420. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  421. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  422. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  423. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  424. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  425. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  426. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  427. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  428. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  429. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  430. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  431. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  432. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  433. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  434. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  435. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  436. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  437. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  438. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  439. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  440. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  441. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  442. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  443. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  444. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  445. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  446. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  447. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  448. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  449. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  450. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  451. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  452. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  453. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  454. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  455. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  456. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  457. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  458. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  459. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  460. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  461. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  462. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  463. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  464. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  465. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  466. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  467. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  468. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  469. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  470. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  471. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  472. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  473. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  474. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  475. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  476. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  477. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  478. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  479. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  480. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  481. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  482. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  483. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  484. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  485. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  486. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  487. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  488. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  489. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  490. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  491. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  492. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  493. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  494. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  495. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  496. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  497. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  498. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  499. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  500. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  501. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  502. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  503. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  504. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  505. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  506. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  507. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  508. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  509. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  510. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  511. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  512. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  513. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  514. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  515. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  516. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  517. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  518. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  519. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  520. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  521. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  522. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  523. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  524. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  525. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  526. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  527. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  528. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  529. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  530. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  531. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  532. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  533. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  534. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  535. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  536. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  537. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  538. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  539. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  540. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  541. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  542. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  543. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  544. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  545. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  546. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  547. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  548. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  549. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  550. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  551. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  552. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  553. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  554. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  555. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  556. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  557. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  558. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  559. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  560. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  561. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  562. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  563. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  564. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  565. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  566. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  567. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  568. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  569. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  570. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  571. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  572. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  573. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  574. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  575. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  576. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  577. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  578. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  579. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  580. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  581. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  582. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  583. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  584. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  585. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  586. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  587. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  588. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  589. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  590. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  591. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  592. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  593. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  594. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  595. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  596. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  597. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  598. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  599. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  600. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  601. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  602. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  603. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  604. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  605. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  606. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  607. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  608. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  609. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  610. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  611. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  612. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  613. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  614. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  615. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  616. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  617. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  618. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  619. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  620. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  621. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  622. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  623. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  624. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  625. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  626. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  627. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  628. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  629. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  630. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  631. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  632. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  633. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  634. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  635. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  636. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  637. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  638. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  639. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  640. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  641. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  642. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  643. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  644. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  645. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  646. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  647. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  648. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  649. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  650. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  651. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  652. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  653. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  654. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  655. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  656. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  657. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  658. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  659. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  660. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  661. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  662. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  663. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  664. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  665. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  666. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  667. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  668. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  669. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  670. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  671. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  672. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  673. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  674. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  675. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  676. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  677. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  678. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  679. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  680. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  681. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  682. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  683. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  684. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  685. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  686. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  687. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  688. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  689. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  690. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  691. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  692. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  693. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  694. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  695. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  696. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  697. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  698. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  699. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  700. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  701. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  702. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  703. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  704. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  705. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  706. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  707. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  708. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  709. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  710. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  711. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  712. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  713. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  714. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  715. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  716. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  717. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  718. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  719. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  720. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  721. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  722. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  723. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  724. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  725. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +0 -0
  726. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +0 -0
  727. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  728. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  729. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +0 -0
  730. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +0 -0
  731. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  732. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  733. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  734. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  735. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  736. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  737. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +0 -0
  738. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +0 -0
  739. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  740. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  741. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +0 -0
  742. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +0 -0
  743. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  744. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  745. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  746. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  747. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  748. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  749. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +0 -0
  750. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +0 -0
  751. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  752. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  753. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +0 -0
  754. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +0 -0
  755. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  756. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  757. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  758. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  759. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  760. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  761. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  762. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  763. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  764. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  765. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  766. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  767. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  768. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  769. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  770. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  771. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  772. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  773. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  774. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  775. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +0 -0
  776. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +0 -0
  777. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +0 -0
  778. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +0 -0
  779. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +0 -0
  780. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +0 -0
  781. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +0 -0
  782. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +0 -0
  783. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  784. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  785. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  786. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  787. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  788. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  789. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  790. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  791. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  792. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  793. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  794. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  795. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  796. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  797. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  798. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  799. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  800. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  801. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  802. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  803. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  804. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  805. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  806. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  807. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  808. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  809. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  810. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  811. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  812. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  813. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  814. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  815. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  816. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  817. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  818. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  819. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  820. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  821. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  822. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  823. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  824. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  825. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +0 -0
  826. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +0 -0
  827. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +0 -0
  828. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +0 -0
  829. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +0 -0
  830. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +0 -0
  831. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +0 -0
  832. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +0 -0
  833. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +0 -0
  834. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +0 -0
  835. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +0 -0
  836. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +0 -0
  837. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +0 -0
  838. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +0 -0
  839. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +0 -0
  840. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +0 -0
  841. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +0 -0
  842. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +0 -0
  843. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +0 -0
  844. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +0 -0
  845. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +0 -0
  846. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-json_schema].yaml +0 -0
  847. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-pydantic].yaml +0 -0
  848. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-typeddict].yaml +0 -0
  849. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-json_schema].yaml +0 -0
  850. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-pydantic].yaml +0 -0
  851. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-typeddict].yaml +0 -0
  852. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +0 -0
  853. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +0 -0
  854. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +0 -0
  855. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +0 -0
  856. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +0 -0
  857. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +0 -0
  858. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +0 -0
  859. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +0 -0
  860. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +0 -0
  861. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +0 -0
  862. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +0 -0
  863. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +0 -0
  864. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +0 -0
  865. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +0 -0
  866. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +0 -0
  867. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +0 -0
  868. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +0 -0
  869. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +0 -0
  870. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +0 -0
  871. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +0 -0
  872. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +0 -0
  873. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +0 -0
  874. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +0 -0
  875. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +0 -0
  876. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +0 -0
  877. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +0 -0
  878. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +0 -0
  879. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +0 -0
  880. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +0 -0
  881. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +0 -0
  882. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +0 -0
  883. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +0 -0
  884. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +0 -0
  885. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +0 -0
  886. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +0 -0
  887. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +0 -0
  888. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +0 -0
  889. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +0 -0
  890. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +0 -0
  891. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +0 -0
  892. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +0 -0
  893. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +0 -0
  894. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +0 -0
  895. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +0 -0
  896. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +0 -0
  897. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +0 -0
  898. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +0 -0
  899. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +0 -0
  900. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +0 -0
  901. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +0 -0
  902. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +0 -0
  903. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-json_schema].yaml +0 -0
  904. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-pydantic].yaml +0 -0
  905. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-typeddict].yaml +0 -0
  906. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-json_schema].yaml +0 -0
  907. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-pydantic].yaml +0 -0
  908. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-typeddict].yaml +0 -0
  909. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-json_schema].yaml +0 -0
  910. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-pydantic].yaml +0 -0
  911. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-typeddict].yaml +0 -0
  912. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-json_schema].yaml +0 -0
  913. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-pydantic].yaml +0 -0
  914. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-typeddict].yaml +0 -0
  915. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +0 -0
  916. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +0 -0
  917. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +0 -0
  918. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +0 -0
  919. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +0 -0
  920. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +0 -0
  921. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +0 -0
  922. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +0 -0
  923. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +0 -0
  924. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +0 -0
  925. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +0 -0
  926. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +0 -0
  927. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +0 -0
  928. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +0 -0
  929. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +0 -0
  930. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +0 -0
  931. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +0 -0
  932. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +0 -0
  933. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  934. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +0 -0
  935. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +0 -0
  936. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +0 -0
  937. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +0 -0
  938. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +0 -0
  939. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  940. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +0 -0
  941. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +0 -0
  942. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +0 -0
  943. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +0 -0
  944. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +0 -0
  945. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  946. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  947. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  948. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  949. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  950. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  951. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  952. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  953. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  954. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  955. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  956. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  957. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  958. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  959. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  960. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  961. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  962. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  963. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  964. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  965. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  966. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  967. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  968. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  969. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  970. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  971. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  972. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  973. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  974. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  975. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  976. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  977. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  978. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  979. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  980. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  981. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  982. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  983. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  984. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  985. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  986. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  987. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  988. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  989. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  990. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  991. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  992. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  993. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  994. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  995. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +0 -0
  996. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +0 -0
  997. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  998. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  999. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  1000. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  1001. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  1002. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  1003. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  1004. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  1005. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  1006. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  1007. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  1008. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  1009. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +0 -0
  1010. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +0 -0
  1011. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +0 -0
  1012. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +0 -0
  1013. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +0 -0
  1014. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +0 -0
  1015. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +0 -0
  1016. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +0 -0
  1017. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +0 -0
  1018. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +0 -0
  1019. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +0 -0
  1020. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +0 -0
  1021. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  1022. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  1023. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  1024. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  1025. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  1026. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  1027. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  1028. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  1029. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +0 -0
  1030. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +0 -0
  1031. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +0 -0
  1032. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +0 -0
  1033. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1034. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1035. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1036. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1037. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1038. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1039. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1040. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1041. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1042. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1043. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1044. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1045. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1046. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1047. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1048. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1049. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1050. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1051. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1052. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1053. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1054. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1055. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1056. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1057. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1058. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1059. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1060. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1061. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1062. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1063. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1064. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1065. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1066. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1067. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1068. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1069. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1070. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1071. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1072. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1073. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1074. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1075. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1076. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1077. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1078. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1079. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1080. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1081. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1082. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1083. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1084. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1085. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1086. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1087. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1088. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1089. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1090. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1091. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1092. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1093. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1094. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1095. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1096. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1097. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1098. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1099. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1100. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1101. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1102. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1103. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1104. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1105. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1106. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1107. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1108. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1109. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1110. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1111. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1112. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1113. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1114. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1115. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1116. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1117. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1118. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1119. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1120. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1121. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1122. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1123. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1124. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1125. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1126. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1127. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1128. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1129. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1130. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1131. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1132. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1133. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1134. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1135. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1136. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1137. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1138. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1139. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1140. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1141. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1142. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1143. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1144. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1145. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1146. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1147. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1148. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1149. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1150. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1151. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1152. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1153. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1154. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1155. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1156. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1157. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1158. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1159. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1160. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1161. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1162. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1163. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1164. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1165. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1166. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1167. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1168. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1169. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1170. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1171. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1172. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1173. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1174. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1175. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1176. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1177. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1178. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1179. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1180. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1181. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1182. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1183. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1184. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1185. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1186. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1187. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1188. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1189. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1190. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1191. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1192. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1193. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1194. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1195. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1196. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1197. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1198. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1199. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1200. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1201. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1202. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1203. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1204. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1205. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1206. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1207. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1208. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1209. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1210. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1211. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1212. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1213. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1214. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1215. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1216. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  1217. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1218. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1219. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1220. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  1221. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1222. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1223. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1224. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +0 -0
  1225. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +0 -0
  1226. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1227. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +0 -0
  1228. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1229. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1230. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1231. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1232. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1233. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1234. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1235. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1236. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1237. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1238. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1239. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1240. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1241. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1242. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1243. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1244. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1245. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1246. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1247. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1248. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1249. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1250. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1251. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1252. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1253. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1254. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1255. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1256. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1257. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1258. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1259. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +0 -0
  1260. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1261. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +0 -0
  1262. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/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 +0 -0
  1263. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +0 -0
  1264. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1265. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1266. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +0 -0
  1267. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +0 -0
  1268. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1269. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1270. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +0 -0
  1271. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +0 -0
  1272. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1273. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1274. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +0 -0
  1275. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +0 -0
  1276. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1277. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1278. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1279. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1280. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +0 -0
  1281. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +0 -0
  1282. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationEmbeddings.test_aembed_documents[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +0 -0
  1283. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationEmbeddings.test_aembed_documents[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +0 -0
  1284. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationEmbeddings.test_aembed_query[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +0 -0
  1285. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationEmbeddings.test_aembed_query[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +0 -0
  1286. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationEmbeddings.test_embed_documents[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +0 -0
  1287. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationEmbeddings.test_embed_documents[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +0 -0
  1288. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationEmbeddings.test_embed_query[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +0 -0
  1289. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/cassettes/TestIntegrationEmbeddings.test_embed_query[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +0 -0
  1290. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/conftest.py +0 -0
  1291. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/core/core_smoke_test.py +0 -0
  1292. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/core/test_anthropic_client.py +0 -0
  1293. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/core/test_google_client.py +0 -0
  1294. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/core/test_openai_client.py +0 -0
  1295. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/langchain/conftest.py +0 -0
  1296. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/langchain/test_langchain_functionality.py +0 -0
  1297. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/langchain/test_provider_integrations.py +0 -0
  1298. {uipath_llm_client-1.0.3 → uipath_llm_client-1.0.5}/tests/langchain/utils.py +0 -0
@@ -65,7 +65,7 @@ jobs:
65
65
  python-version-file: ".python-version"
66
66
 
67
67
  - name: Install dependencies
68
- run: uv sync --dev --all-extras
68
+ run: uv sync --dev --all-extras --locked
69
69
 
70
70
  - name: Set development versions and update PR
71
71
  env:
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to `uipath_llm_client` (core package) will be documented in this file.
4
4
 
5
+ ## [1.0.5] - 2026-02-03
6
+
7
+ ### Refactor
8
+ - Updated documentation to include the new aliases for settings
9
+
10
+ ## [1.0.4] - 2026-02-03
11
+
12
+ ### Bug Fix
13
+ - Adjusted retry logic, now 0 means no retries, 1 means one retry
14
+
5
15
  ## [1.0.3] - 2026-02-02
6
16
 
7
17
  ### Refactor
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uipath-llm-client
3
- Version: 1.0.3
3
+ Version: 1.0.5
4
4
  Summary: UiPath LLM Client
5
5
  Author-email: Cosmin Maria <cosmin.maria@uipath.com>, Dragos Bobolea <dragos.bobolea@uipath.com>
6
6
  License-File: LICENSE
@@ -272,7 +272,7 @@ response = chat_model.invoke("What is the capital of France?")
272
272
  print(response.content)
273
273
 
274
274
  # Create an embeddings model
275
- embeddings_model = get_embedding_model(model="text-embedding-3-large", client_settings=settings)
275
+ embeddings_model = get_embedding_model(model_name="text-embedding-3-large", client_settings=settings)
276
276
  vectors = embeddings_model.embed_documents(["Hello world", "How are you?"])
277
277
  ```
278
278
 
@@ -484,7 +484,7 @@ settings = LLMGatewaySettings(
484
484
  # Use with OpenAI/Azure chat model
485
485
  openai_chat = UiPathAzureChatOpenAI(
486
486
  model="gpt-4o-2024-11-20",
487
- client_settings=settings,
487
+ settings=settings,
488
488
  )
489
489
  response = openai_chat.invoke("Hello!")
490
490
  print(response.content)
@@ -492,7 +492,7 @@ print(response.content)
492
492
  # Use with Google Gemini
493
493
  gemini_chat = UiPathChatGoogleGenerativeAI(
494
494
  model="gemini-2.5-flash",
495
- client_settings=settings,
495
+ settings=settings,
496
496
  )
497
497
  response = gemini_chat.invoke("Hello!")
498
498
  print(response.content)
@@ -500,7 +500,7 @@ print(response.content)
500
500
  # Use with embeddings
501
501
  embeddings = UiPathAzureOpenAIEmbeddings(
502
502
  model="text-embedding-3-large",
503
- client_settings=settings,
503
+ settings=settings,
504
504
  )
505
505
  vectors = embeddings.embed_documents(["Hello world"])
506
506
  ```
@@ -541,7 +541,7 @@ print(response.content)
541
541
 
542
542
  # Embeddings with factory
543
543
  embeddings = get_embedding_model(
544
- model="text-embedding-3-large",
544
+ model_name="text-embedding-3-large",
545
545
  client_settings=settings,
546
546
  )
547
547
  vectors = embeddings.embed_documents(["Hello", "World"])
@@ -589,7 +589,7 @@ byo_embeddings = UiPathAzureOpenAIEmbeddings(
589
589
  # Clone and install with dev dependencies
590
590
  git clone https://github.com/UiPath/uipath-llm-client.git
591
591
  cd uipath-llm-client
592
- uv sync --dev
592
+ uv sync
593
593
 
594
594
  # Run tests
595
595
  uv run pytest
@@ -248,7 +248,7 @@ response = chat_model.invoke("What is the capital of France?")
248
248
  print(response.content)
249
249
 
250
250
  # Create an embeddings model
251
- embeddings_model = get_embedding_model(model="text-embedding-3-large", client_settings=settings)
251
+ embeddings_model = get_embedding_model(model_name="text-embedding-3-large", client_settings=settings)
252
252
  vectors = embeddings_model.embed_documents(["Hello world", "How are you?"])
253
253
  ```
254
254
 
@@ -460,7 +460,7 @@ settings = LLMGatewaySettings(
460
460
  # Use with OpenAI/Azure chat model
461
461
  openai_chat = UiPathAzureChatOpenAI(
462
462
  model="gpt-4o-2024-11-20",
463
- client_settings=settings,
463
+ settings=settings,
464
464
  )
465
465
  response = openai_chat.invoke("Hello!")
466
466
  print(response.content)
@@ -468,7 +468,7 @@ print(response.content)
468
468
  # Use with Google Gemini
469
469
  gemini_chat = UiPathChatGoogleGenerativeAI(
470
470
  model="gemini-2.5-flash",
471
- client_settings=settings,
471
+ settings=settings,
472
472
  )
473
473
  response = gemini_chat.invoke("Hello!")
474
474
  print(response.content)
@@ -476,7 +476,7 @@ print(response.content)
476
476
  # Use with embeddings
477
477
  embeddings = UiPathAzureOpenAIEmbeddings(
478
478
  model="text-embedding-3-large",
479
- client_settings=settings,
479
+ settings=settings,
480
480
  )
481
481
  vectors = embeddings.embed_documents(["Hello world"])
482
482
  ```
@@ -517,7 +517,7 @@ print(response.content)
517
517
 
518
518
  # Embeddings with factory
519
519
  embeddings = get_embedding_model(
520
- model="text-embedding-3-large",
520
+ model_name="text-embedding-3-large",
521
521
  client_settings=settings,
522
522
  )
523
523
  vectors = embeddings.embed_documents(["Hello", "World"])
@@ -565,7 +565,7 @@ byo_embeddings = UiPathAzureOpenAIEmbeddings(
565
565
  # Clone and install with dev dependencies
566
566
  git clone https://github.com/UiPath/uipath-llm-client.git
567
567
  cd uipath-llm-client
568
- uv sync --dev
568
+ uv sync
569
569
 
570
570
  # Run tests
571
571
  uv run pytest
@@ -2,9 +2,30 @@
2
2
 
3
3
  All notable changes to `uipath_langchain_client` will be documented in this file.
4
4
 
5
+ ## [1.0.6] - 2026-02-03
6
+
7
+ ### Refactor
8
+ - Updated documentation to include the new aliases for settings
9
+ - New alias for settings and request timeout in BaseLLMClient
10
+
11
+ ## [1.0.5] - 2026-02-03
12
+
13
+ ### Bug Fix
14
+ - Fixed retry logic on all clients
15
+
16
+ ## [1.0.4] - 2026-02-03
17
+
18
+ ### Bug Fix
19
+ - Fix some timout issues on langchain_openai from llmgw.
20
+
21
+ ## [1.0.3] - 2026-02-02
22
+
23
+ ### Bug Fix
24
+ - Added better dependencies for langchain-anthropic to include boto and vertex
25
+
5
26
  ## [1.0.2] - 2026-02-02
6
27
 
7
- ### Buf Fix
28
+ ### Bug Fix
8
29
  - Removed old fix on Gemini streaming and updated with a new cleaner one
9
30
 
10
31
  ## [1.0.1] - 2026-02-02
@@ -41,7 +41,7 @@ print(response.content)
41
41
 
42
42
  # Embeddings model
43
43
  embeddings = get_embedding_model(
44
- model="text-embedding-3-large",
44
+ model_name="text-embedding-3-large",
45
45
  client_settings=settings,
46
46
  )
47
47
  vectors = embeddings.embed_documents(["Hello world"])
@@ -62,20 +62,20 @@ from uipath_langchain_client.settings import get_default_client_settings
62
62
  settings = get_default_client_settings()
63
63
 
64
64
  # OpenAI/Azure
65
- openai_chat = UiPathAzureChatOpenAI(model="gpt-4o-2024-11-20", client_settings=settings)
65
+ openai_chat = UiPathAzureChatOpenAI(model="gpt-4o-2024-11-20", settings=settings)
66
66
 
67
67
  # Google Gemini
68
- gemini_chat = UiPathChatGoogleGenerativeAI(model="gemini-2.5-flash", client_settings=settings)
68
+ gemini_chat = UiPathChatGoogleGenerativeAI(model="gemini-2.5-flash", settings=settings)
69
69
 
70
70
  # Anthropic Claude (via AWS Bedrock)
71
71
  claude_chat = UiPathChatAnthropic(
72
72
  model="anthropic.claude-sonnet-4-5-20250929-v1:0",
73
- client_settings=settings,
73
+ settings=settings,
74
74
  vendor_type="awsbedrock",
75
75
  )
76
76
 
77
77
  # Normalized (provider-agnostic)
78
- normalized_chat = UiPathNormalizedChatModel(model="gpt-4o-2024-11-20", client_settings=settings)
78
+ normalized_chat = UiPathNormalizedChatModel(model="gpt-4o-2024-11-20", settings=settings)
79
79
  ```
80
80
 
81
81
  ## Available Client Types
@@ -167,7 +167,7 @@ def demo_embeddings():
167
167
 
168
168
  settings = get_default_client_settings()
169
169
  embeddings = get_embedding_model(
170
- model="text-embedding-3-large",
170
+ model_name="text-embedding-3-large",
171
171
  client_settings=settings,
172
172
  )
173
173
 
@@ -241,7 +241,7 @@ def demo_direct_client_usage():
241
241
  # Use the Azure OpenAI client directly for more control
242
242
  chat_model = UiPathAzureChatOpenAI(
243
243
  model="gpt-4o-2024-11-20",
244
- client_settings=settings,
244
+ settings=settings,
245
245
  temperature=0.7,
246
246
  )
247
247
 
@@ -6,7 +6,7 @@ readme = "README.md"
6
6
  requires-python = ">=3.11"
7
7
  dependencies = [
8
8
  "langchain>=1.2.7",
9
- "uipath-llm-client>=1.0.2",
9
+ "uipath-llm-client>=1.0.5",
10
10
  ]
11
11
 
12
12
  [project.optional-dependencies]
@@ -20,6 +20,7 @@ google = [
20
20
  "langchain-google-genai>=4.2.0",
21
21
  ]
22
22
  anthropic = [
23
+ "anthropic[bedrock,vertex]>=0.77.0",
23
24
  "langchain-anthropic>=1.3.1",
24
25
  ]
25
26
  azure = [
@@ -40,4 +41,4 @@ build-backend = "hatchling.build"
40
41
  packages = ["src/uipath_langchain_client"]
41
42
 
42
43
  [tool.hatch.version]
43
- path = "src/uipath_langchain_client/__version__.py"
44
+ path = "src/uipath_langchain_client/__version__.py"
@@ -15,11 +15,11 @@ Quick Start:
15
15
  >>> settings = get_default_client_settings()
16
16
  >>>
17
17
  >>> # Chat model with auto-detected vendor
18
- >>> chat = get_chat_model("gpt-4o-2024-11-20", settings)
18
+ >>> chat = get_chat_model(model_name="gpt-4o-2024-11-20", client_settings=settings)
19
19
  >>> response = chat.invoke("Hello!")
20
20
  >>>
21
21
  >>> # Embeddings model
22
- >>> embeddings = get_embedding_model("text-embedding-3-large", settings)
22
+ >>> embeddings = get_embedding_model(model_name="text-embedding-3-large", client_settings=settings)
23
23
  >>> vectors = embeddings.embed_documents(["Hello world"])
24
24
 
25
25
  Settings:
@@ -1,3 +1,3 @@
1
1
  __title__ = "UiPath LangChain Client"
2
2
  __description__ = "A Python client for interacting with UiPath's LLM services via LangChain."
3
- __version__ = "1.0.2"
3
+ __version__ = "1.0.6"
@@ -29,7 +29,7 @@ from functools import cached_property
29
29
  from typing import Any, Literal
30
30
 
31
31
  from httpx import URL, Response
32
- from pydantic import BaseModel, ConfigDict, Field
32
+ from pydantic import AliasChoices, BaseModel, ConfigDict, Field
33
33
 
34
34
  from uipath_langchain_client.settings import (
35
35
  UiPathAPIConfig,
@@ -85,23 +85,26 @@ class UiPathBaseLLMClient(BaseModel):
85
85
  description="Settings for the UiPath API",
86
86
  )
87
87
  client_settings: UiPathBaseSettings = Field(
88
+ alias="settings",
88
89
  default_factory=get_default_client_settings,
89
90
  description="Settings for the UiPath client (defaults based on UIPATH_LLM_BACKEND env var)",
90
91
  )
92
+
91
93
  default_headers: Mapping[str, str] | None = Field(
92
94
  default={
93
- "X-UiPath-LLMGateway-TimeoutSeconds": "30", # server side timeout, default is 10, maximum is 300
95
+ "X-UiPath-LLMGateway-TimeoutSeconds": "300", # server side timeout, default is 10, maximum is 300
94
96
  "X-UiPath-LLMGateway-AllowFull4xxResponse": "true", # allow full 4xx responses (default is false)
95
97
  },
96
98
  description="Default request headers to include in requests",
97
99
  )
98
-
99
100
  request_timeout: int | None = Field(
101
+ alias="timeout",
102
+ validation_alias=AliasChoices("timeout", "request_timeout", "default_request_timeout"),
100
103
  default=None,
101
104
  description="Client-side request timeout in seconds",
102
105
  )
103
106
  max_retries: int = Field(
104
- default=1,
107
+ default=0,
105
108
  description="Maximum number of retries for failed requests",
106
109
  )
107
110
  retry_config: RetryConfig | None = Field(
@@ -62,7 +62,7 @@ class UiPathChatAnthropic(UiPathBaseLLMClient, ChatAnthropic):
62
62
  api_key="PLACEHOLDER",
63
63
  base_url=str(self.uipath_sync_client.base_url),
64
64
  default_headers=dict(self.uipath_sync_client.headers),
65
- max_retries=1, # handled by the UiPathBaseLLMClient
65
+ max_retries=0, # handled by the UiPathBaseLLMClient
66
66
  timeout=None, # handled by the UiPathBaseLLMClient
67
67
  http_client=self.uipath_sync_client,
68
68
  )
@@ -74,7 +74,7 @@ class UiPathChatAnthropic(UiPathBaseLLMClient, ChatAnthropic):
74
74
  base_url=str(self.uipath_sync_client.base_url),
75
75
  default_headers=dict(self.uipath_sync_client.headers),
76
76
  timeout=None, # handled by the UiPathBaseLLMClient
77
- max_retries=1, # handled by the UiPathBaseLLMClient
77
+ max_retries=0, # handled by the UiPathBaseLLMClient
78
78
  http_client=self.uipath_sync_client,
79
79
  )
80
80
  case "awsbedrock":
@@ -85,7 +85,7 @@ class UiPathChatAnthropic(UiPathBaseLLMClient, ChatAnthropic):
85
85
  base_url=str(self.uipath_sync_client.base_url),
86
86
  default_headers=dict(self.uipath_sync_client.headers),
87
87
  timeout=None, # handled by the UiPathBaseLLMClient
88
- max_retries=1, # handled by the UiPathBaseLLMClient
88
+ max_retries=0, # handled by the UiPathBaseLLMClient
89
89
  http_client=self.uipath_sync_client,
90
90
  )
91
91
  case "anthropic":
@@ -94,7 +94,7 @@ class UiPathChatAnthropic(UiPathBaseLLMClient, ChatAnthropic):
94
94
  base_url=str(self.uipath_sync_client.base_url),
95
95
  default_headers=dict(self.uipath_sync_client.headers),
96
96
  timeout=None, # handled by the UiPathBaseLLMClient
97
- max_retries=1, # handled by the UiPathBaseLLMClient
97
+ max_retries=0, # handled by the UiPathBaseLLMClient
98
98
  http_client=self.uipath_sync_client,
99
99
  )
100
100
 
@@ -108,7 +108,7 @@ class UiPathChatAnthropic(UiPathBaseLLMClient, ChatAnthropic):
108
108
  api_key="PLACEHOLDER",
109
109
  base_url=str(self.uipath_async_client.base_url),
110
110
  default_headers=dict(self.uipath_async_client.headers),
111
- max_retries=1, # handled by the UiPathBaseLLMClient
111
+ max_retries=0, # handled by the UiPathBaseLLMClient
112
112
  timeout=None, # handled by the UiPathBaseLLMClient
113
113
  http_client=self.uipath_async_client,
114
114
  )
@@ -120,7 +120,7 @@ class UiPathChatAnthropic(UiPathBaseLLMClient, ChatAnthropic):
120
120
  base_url=str(self.uipath_async_client.base_url),
121
121
  default_headers=dict(self.uipath_async_client.headers),
122
122
  timeout=None, # handled by the UiPathBaseLLMClient
123
- max_retries=1, # handled by the UiPathBaseLLMClient
123
+ max_retries=0, # handled by the UiPathBaseLLMClient
124
124
  http_client=self.uipath_async_client,
125
125
  )
126
126
  case "awsbedrock":
@@ -131,7 +131,7 @@ class UiPathChatAnthropic(UiPathBaseLLMClient, ChatAnthropic):
131
131
  base_url=str(self.uipath_async_client.base_url),
132
132
  default_headers=dict(self.uipath_async_client.headers),
133
133
  timeout=None, # handled by the UiPathBaseLLMClient
134
- max_retries=1, # handled by the UiPathBaseLLMClient
134
+ max_retries=0, # handled by the UiPathBaseLLMClient
135
135
  http_client=self.uipath_async_client,
136
136
  )
137
137
  case _:
@@ -140,7 +140,7 @@ class UiPathChatAnthropic(UiPathBaseLLMClient, ChatAnthropic):
140
140
  base_url=str(self.uipath_async_client.base_url),
141
141
  default_headers=dict(self.uipath_async_client.headers),
142
142
  timeout=None, # handled by the UiPathBaseLLMClient
143
- max_retries=1, # handled by the UiPathBaseLLMClient
143
+ max_retries=0, # handled by the UiPathBaseLLMClient
144
144
  http_client=self.uipath_async_client,
145
145
  )
146
146
 
@@ -59,5 +59,5 @@ class UiPathChatBedrock(UiPathBaseLLMClient, ChatBedrock):
59
59
  def _as_converse(self) -> UiPathChatBedrockConverse:
60
60
  return UiPathChatBedrockConverse(
61
61
  model=self.model_name,
62
- client_settings=self.client_settings,
62
+ settings=self.client_settings,
63
63
  )
@@ -18,7 +18,7 @@ Example:
18
18
  >>> settings = get_default_client_settings()
19
19
  >>> chat = UiPathNormalizedChatModel(
20
20
  ... model="gpt-4o-2024-11-20",
21
- ... client_settings=settings,
21
+ ... settings=settings,
22
22
  ... )
23
23
  >>> response = chat.invoke("Hello!")
24
24
  """
@@ -88,7 +88,7 @@ class UiPathNormalizedChatModel(UiPathBaseLLMClient, BaseChatModel):
88
88
  Example:
89
89
  >>> chat = UiPathNormalizedChatModel(
90
90
  ... model="gpt-4o-2024-11-20",
91
- ... client_settings=settings,
91
+ ... settings=settings,
92
92
  ... temperature=0.7,
93
93
  ... max_tokens=1000,
94
94
  ... )
@@ -43,13 +43,13 @@ class UiPathChatOpenAI(UiPathBaseLLMClient, ChatOpenAI): # type: ignore[overrid
43
43
  self.root_client = OpenAI(
44
44
  api_key="PLACEHOLDER",
45
45
  timeout=None, # handled by the UiPath client
46
- max_retries=1, # handled by the UiPath client
46
+ max_retries=0, # handled by the UiPath client
47
47
  http_client=self.uipath_sync_client,
48
48
  )
49
49
  self.root_async_client = AsyncOpenAI(
50
50
  api_key="PLACEHOLDER",
51
51
  timeout=None, # handled by the UiPath client
52
- max_retries=1, # handled by the UiPath client
52
+ max_retries=0, # handled by the UiPath client
53
53
  http_client=self.uipath_async_client,
54
54
  )
55
55
  self.client = self.root_client.chat.completions
@@ -86,7 +86,7 @@ class UiPathAzureChatOpenAI(UiPathBaseLLMClient, AzureChatOpenAI): # type: igno
86
86
  api_version="PLACEHOLDER",
87
87
  api_key="PLACEHOLDER",
88
88
  timeout=None, # handled by the UiPath client
89
- max_retries=1, # handled by the UiPath client
89
+ max_retries=0, # handled by the UiPath client
90
90
  http_client=self.uipath_sync_client,
91
91
  )
92
92
  self.root_async_client = AsyncAzureOpenAI(
@@ -94,7 +94,7 @@ class UiPathAzureChatOpenAI(UiPathBaseLLMClient, AzureChatOpenAI): # type: igno
94
94
  api_version="PLACEHOLDER",
95
95
  api_key="PLACEHOLDER",
96
96
  timeout=None, # handled by the UiPath client
97
- max_retries=1, # handled by the UiPath client
97
+ max_retries=0, # handled by the UiPath client
98
98
  http_client=self.uipath_async_client,
99
99
  )
100
100
  self.client = self.root_client.chat.completions
@@ -36,13 +36,13 @@ class UiPathOpenAIEmbeddings(UiPathBaseLLMClient, OpenAIEmbeddings):
36
36
  self.client = OpenAI(
37
37
  api_key="PLACEHOLDER",
38
38
  timeout=None, # handled by the UiPath client
39
- max_retries=1, # handled by the UiPath client
39
+ max_retries=0, # handled by the UiPath client
40
40
  http_client=self.uipath_sync_client,
41
41
  ).embeddings
42
42
  self.async_client = AsyncOpenAI(
43
43
  api_key="PLACEHOLDER",
44
44
  timeout=None, # handled by the UiPath client
45
- max_retries=1, # handled by the UiPath client
45
+ max_retries=0, # handled by the UiPath client
46
46
  http_client=self.uipath_async_client,
47
47
  ).embeddings
48
48
  return self
@@ -70,7 +70,7 @@ class UiPathAzureOpenAIEmbeddings(UiPathBaseLLMClient, AzureOpenAIEmbeddings):
70
70
  api_version="PLACEHOLDER",
71
71
  api_key="PLACEHOLDER",
72
72
  timeout=None, # handled by the UiPath client
73
- max_retries=1, # handled by the UiPath client
73
+ max_retries=0, # handled by the UiPath client
74
74
  http_client=self.uipath_sync_client,
75
75
  ).embeddings
76
76
  self.async_client = AsyncAzureOpenAI(
@@ -78,7 +78,7 @@ class UiPathAzureOpenAIEmbeddings(UiPathBaseLLMClient, AzureOpenAIEmbeddings):
78
78
  api_version="PLACEHOLDER",
79
79
  api_key="PLACEHOLDER",
80
80
  timeout=None, # handled by the UiPath client
81
- max_retries=1, # handled by the UiPath client
81
+ max_retries=0, # handled by the UiPath client
82
82
  http_client=self.uipath_async_client,
83
83
  ).embeddings
84
84
  return self
@@ -36,7 +36,7 @@ class UiPathChatAnthropicVertex(UiPathBaseLLMClient, ChatAnthropicVertex): # ty
36
36
  base_url=str(self.uipath_sync_client.base_url),
37
37
  default_headers=self.uipath_sync_client.headers,
38
38
  timeout=None, # handled by the UiPath client
39
- max_retries=1, # handled by the UiPath client
39
+ max_retries=0, # handled by the UiPath client
40
40
  http_client=self.uipath_sync_client,
41
41
  )
42
42
  self.async_client = AsyncAnthropicVertex(
@@ -46,7 +46,7 @@ class UiPathChatAnthropicVertex(UiPathBaseLLMClient, ChatAnthropicVertex): # ty
46
46
  base_url=str(self.uipath_async_client.base_url),
47
47
  default_headers=self.uipath_async_client.headers,
48
48
  timeout=None, # handled by the UiPath client
49
- max_retries=1, # handled by the UiPath client
49
+ max_retries=0, # handled by the UiPath client
50
50
  http_client=self.uipath_async_client,
51
51
  )
52
52
  return self
@@ -16,8 +16,8 @@ Example:
16
16
  >>> settings = get_default_client_settings()
17
17
  >>>
18
18
  >>> # Auto-detect vendor from model name
19
- >>> chat = get_chat_model("gpt-4o-2024-11-20", settings)
20
- >>> embeddings = get_embedding_model("text-embedding-3-large", settings)
19
+ >>> chat = get_chat_model(model_name="gpt-4o-2024-11-20", client_settings=settings)
20
+ >>> embeddings = get_embedding_model(model_name="text-embedding-3-large", client_settings=settings)
21
21
  """
22
22
 
23
23
  from typing import Any, Literal
@@ -99,7 +99,7 @@ def get_chat_model(
99
99
 
100
100
  return UiPathAzureChatOpenAI(
101
101
  model=model_name,
102
- client_settings=client_settings,
102
+ settings=client_settings,
103
103
  **model_kwargs,
104
104
  )
105
105
  else:
@@ -112,7 +112,7 @@ def get_chat_model(
112
112
 
113
113
  return UiPathChatGoogleGenerativeAI(
114
114
  model=model_name,
115
- client_settings=client_settings,
115
+ settings=client_settings,
116
116
  **model_kwargs,
117
117
  )
118
118
  elif "claude" in model_name:
@@ -122,7 +122,7 @@ def get_chat_model(
122
122
 
123
123
  return UiPathChatAnthropic(
124
124
  model=model_name,
125
- client_settings=client_settings,
125
+ settings=client_settings,
126
126
  vendor_type="vertexai",
127
127
  **model_kwargs,
128
128
  )
@@ -136,7 +136,7 @@ def get_chat_model(
136
136
 
137
137
  return UiPathChatAnthropic(
138
138
  model=model_name,
139
- client_settings=client_settings,
139
+ settings=client_settings,
140
140
  vendor_type="awsbedrock",
141
141
  **model_kwargs,
142
142
  )
@@ -147,7 +147,7 @@ def get_chat_model(
147
147
 
148
148
 
149
149
  def get_embedding_model(
150
- model: str,
150
+ model_name: str,
151
151
  byo_connection_id: str | None = None,
152
152
  client_settings: UiPathBaseSettings | None = None,
153
153
  client_type: Literal["passthrough", "normalized"] = "passthrough",
@@ -172,11 +172,11 @@ def get_embedding_model(
172
172
 
173
173
  Example:
174
174
  >>> settings = get_default_client_settings()
175
- >>> embeddings = get_embedding_model("text-embedding-3-large", settings)
175
+ >>> embeddings = get_embedding_model(model_name="text-embedding-3-large", client_settings=settings)
176
176
  >>> vectors = embeddings.embed_documents(["Hello world"])
177
177
  """
178
178
  client_settings = client_settings or get_default_client_settings()
179
- model_info = _get_model_info(model, client_settings, byo_connection_id)
179
+ model_info = _get_model_info(model_name, client_settings, byo_connection_id)
180
180
 
181
181
  if client_type == "normalized":
182
182
  from uipath_langchain_client.clients.normalized.embeddings import (
@@ -184,7 +184,7 @@ def get_embedding_model(
184
184
  )
185
185
 
186
186
  return UiPathNormalizedEmbeddings(
187
- model=model, client_settings=client_settings, **model_kwargs
187
+ model=model_name, settings=client_settings, **model_kwargs
188
188
  )
189
189
 
190
190
  vendor_type = model_info["vendor"].lower()
@@ -195,7 +195,7 @@ def get_embedding_model(
195
195
  )
196
196
 
197
197
  return UiPathAzureOpenAIEmbeddings(
198
- model=model, client_settings=client_settings, **model_kwargs
198
+ model=model_name, settings=client_settings, **model_kwargs
199
199
  )
200
200
  case "vertexai":
201
201
  from uipath_langchain_client.clients.google.embeddings import (
@@ -203,7 +203,7 @@ def get_embedding_model(
203
203
  )
204
204
 
205
205
  return UiPathGoogleGenerativeAIEmbeddings(
206
- model=model, client_settings=client_settings, **model_kwargs
206
+ model=model_name, settings=client_settings, **model_kwargs
207
207
  )
208
208
  case "awsbedrock":
209
209
  from uipath_langchain_client.clients.bedrock.embeddings import (
@@ -211,7 +211,7 @@ def get_embedding_model(
211
211
  )
212
212
 
213
213
  return UiPathBedrockEmbeddings(
214
- model=model, client_settings=client_settings, **model_kwargs
214
+ model=model_name, settings=client_settings, **model_kwargs
215
215
  )
216
216
  case _:
217
217
  raise ValueError(f"Invalid UiPath Embeddings provider: {vendor_type}")
@@ -28,14 +28,14 @@ settings = get_default_client_settings()
28
28
 
29
29
  # Create a LlamaIndex LLM
30
30
  llm = get_llm(
31
- model_name="gpt-4o-2024-11-20",
32
- client_settings=settings,
31
+ model="gpt-4o-2024-11-20",
32
+ settings=settings,
33
33
  )
34
34
 
35
35
  # Create embeddings
36
36
  embeddings = get_embeddings(
37
- model_name="text-embedding-3-large",
38
- client_settings=settings,
37
+ model="text-embedding-3-large",
38
+ settings=settings,
39
39
  )
40
40
 
41
41
  # Use with LlamaIndex
@@ -62,6 +62,12 @@ packages = ["src/uipath_llm_client"]
62
62
  [tool.hatch.version]
63
63
  path = "src/uipath_llm_client/__version__.py"
64
64
 
65
+ [[tool.uv.index]]
66
+ name = "testpypi"
67
+ url = "https://test.pypi.org/simple/"
68
+ publish-url = "https://test.pypi.org/legacy/"
69
+ explicit = true
70
+
65
71
  [tool.ruff]
66
72
  line-length = 100
67
73
  target-version = "py313"
@@ -20,7 +20,7 @@ Quick Start:
20
20
  ... client_type="passthrough",
21
21
  ... vendor_type="openai",
22
22
  ... ),
23
- ... client_settings=settings,
23
+ ... settings=settings,
24
24
  ... )
25
25
  >>> response = client.uipath_request(request_body={...})
26
26
  """
@@ -1,3 +1,3 @@
1
1
  __titile__ = "UiPath LLM Client"
2
2
  __description__ = "A Python client for interacting with UiPath's LLM services."
3
- __version__ = "1.0.3"
3
+ __version__ = "1.0.5"