uipath-llm-client 1.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- uipath_llm_client-1.0.4/.env.example +60 -0
- uipath_llm_client-1.0.4/.gitattributes +1 -0
- uipath_llm_client-1.0.4/.github/workflows/cd-langchain.yml +52 -0
- uipath_llm_client-1.0.4/.github/workflows/cd.yml +52 -0
- uipath_llm_client-1.0.4/.github/workflows/ci.yml +72 -0
- uipath_llm_client-1.0.4/.github/workflows/ci_change_version.yml +75 -0
- uipath_llm_client-1.0.4/.github/workflows/publish-dev.yml +213 -0
- uipath_llm_client-1.0.4/.gitignore +211 -0
- uipath_llm_client-1.0.4/.python-version +1 -0
- uipath_llm_client-1.0.4/CHANGELOG.md +89 -0
- uipath_llm_client-1.0.4/CODEOWNERS +1 -0
- uipath_llm_client-1.0.4/LICENSE +3 -0
- uipath_llm_client-1.0.4/PKG-INFO +664 -0
- uipath_llm_client-1.0.4/README.md +640 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/CHANGELOG.md +115 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/README.md +248 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/demo.py +278 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/pyproject.toml +44 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/__init__.py +50 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py +3 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/base_client.py +277 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/anthropic/__init__.py +3 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/anthropic/chat_models.py +157 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/azure/__init__.py +4 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/azure/chat_models.py +46 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/azure/embeddings.py +46 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/__init__.py +7 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/chat_models.py +63 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/embeddings.py +33 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/bedrock/utils.py +90 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/google/__init__.py +4 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/google/chat_models.py +60 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/google/embeddings.py +45 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/__init__.py +4 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/chat_models.py +419 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/normalized/embeddings.py +31 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/openai/__init__.py +15 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/openai/chat_models.py +102 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/openai/embeddings.py +84 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/vertexai/__init__.py +3 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/clients/vertexai/chat_models.py +52 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/factory.py +217 -0
- uipath_llm_client-1.0.4/packages/uipath_langchain_client/src/uipath_langchain_client/settings.py +32 -0
- uipath_llm_client-1.0.4/packages/uipath_llamaindex_client/CHANGELOG.md +0 -0
- uipath_llm_client-1.0.4/packages/uipath_llamaindex_client/README.md +59 -0
- uipath_llm_client-1.0.4/packages/uipath_llamaindex_client/demo.py +29 -0
- uipath_llm_client-1.0.4/packages/uipath_llamaindex_client/pyproject.toml +22 -0
- uipath_llm_client-1.0.4/packages/uipath_llamaindex_client/src/uipath_llamaindex_client/__version__.py +1 -0
- uipath_llm_client-1.0.4/pyproject.toml +100 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/__init__.py +80 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/__version__.py +3 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/clients/anthropic/__init__.py +21 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/clients/anthropic/client.py +469 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/clients/google/__init__.py +5 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/clients/google/client.py +82 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/clients/openai/__init__.py +13 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/clients/openai/client.py +180 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/clients/openai/utils.py +75 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/httpx_client.py +319 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/__init__.py +89 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/agenthub/__init__.py +48 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/agenthub/auth.py +43 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/agenthub/settings.py +138 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/base.py +140 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/llmgateway/__init__.py +45 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/llmgateway/auth.py +61 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/llmgateway/settings.py +98 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/llmgateway/utils.py +14 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/settings/utils.py +14 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/utils/exceptions.py +212 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/utils/logging.py +144 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/utils/retry.py +265 -0
- uipath_llm_client-1.0.4/src/uipath_llm_client/utils/ssl_config.py +54 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[anthropic.claude-haiku-4-5-20251001-v1-0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[anthropic.claude-opus-4-5-20251101-v1-0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[anthropic.claude-sonnet-4-5-20250929-v1-0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[claude-haiku-4-5@20251001].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[claude-opus-4-5@20251101].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[claude-sonnet-4-5@20250929].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-2.5-flash].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-2.5-pro].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-3-flash-preview].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[gemini-3-pro-preview].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-4.1-2025-04-14].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-4o-2024-11-20].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-5-2025-08-07].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-5.1-2025-11-13].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_chat_model[gpt-5.2-2025-12-11].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_embedding_model[gemini-embedding-001].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestFactoryFunction.test_get_embedding_model[text-embedding-3-large].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_abatch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_agent_loop[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_ainvoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_astream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_batch[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_bind_runnables_as_tools[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_double_messages_conversation[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_invoke[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_message_with_name[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_parallel_and_sequential_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stop_sequence[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_stream[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_few_shot_examples[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-json_schema].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-pydantic].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-typeddict].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_optional_param[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_structured_output_pydantic_2_v1[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model0].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw-model1].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_async[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_calling_with_no_arguments[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_choice[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_error_status[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_list_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_tool_message_histories_string_content[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-haiku-4-5@20251001_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-opus-4-5@20251101_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropicVertex_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[claude-sonnet-4-5@20250929_UiPathChatAnthropic_{-vendor_type-- -vertexai-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-haiku-4-5-20251001-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-opus-4-5-20251101-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-, -max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatAnthropic_{-vendor_type-- -awsbedrock-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrockConverse_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{-max_tokens-- 2048, -thinking-- {-type-- -enabled-, -budget_tokens-- 1024}}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[anthropic.claude-sonnet-4-5-20250929-v1-0_UiPathChatBedrock_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-flash_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-2.5-pro_UiPathChatGoogleGenerativeAI_{-thinking_budget-- 128, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-flash-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- false}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gemini-3-pro-preview_UiPathChatGoogleGenerativeAI_{-thinking_level-- -low-, -include_thoughts-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4.1-2025-04-14_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{-use_responses_api-- true}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-4o-2024-11-20_UiPathAzureChatOpenAI_{}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5-2025-08-07_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.1-2025-11-13_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning-- {-effort-- -low-, -summary-- -auto-}, -verbosity-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationChatModel.test_usage_metadata_streaming[gpt-5.2-2025-12-11_UiPathAzureChatOpenAI_{-reasoning_effort-- -low-}-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationEmbeddings.test_aembed_documents[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationEmbeddings.test_aembed_documents[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationEmbeddings.test_aembed_query[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationEmbeddings.test_aembed_query[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationEmbeddings.test_embed_documents[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationEmbeddings.test_embed_documents[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationEmbeddings.test_embed_query[gemini-embedding-001_UiPathGoogleGenerativeAIEmbeddings-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/cassettes/TestIntegrationEmbeddings.test_embed_query[text-embedding-3-large_UiPathAzureOpenAIEmbeddings-llmgw].yaml +3 -0
- uipath_llm_client-1.0.4/tests/conftest.py +58 -0
- uipath_llm_client-1.0.4/tests/core/core_smoke_test.py +494 -0
- uipath_llm_client-1.0.4/tests/core/test_anthropic_client.py +0 -0
- uipath_llm_client-1.0.4/tests/core/test_base_client.py +884 -0
- uipath_llm_client-1.0.4/tests/core/test_google_client.py +0 -0
- uipath_llm_client-1.0.4/tests/core/test_openai_client.py +0 -0
- uipath_llm_client-1.0.4/tests/langchain/conftest.py +251 -0
- uipath_llm_client-1.0.4/tests/langchain/langchain_smoke_test.py +499 -0
- uipath_llm_client-1.0.4/tests/langchain/test_factory_function.py +17 -0
- uipath_llm_client-1.0.4/tests/langchain/test_langchain_functionality.py +48 -0
- uipath_llm_client-1.0.4/tests/langchain/test_provider_integrations.py +379 -0
- uipath_llm_client-1.0.4/tests/langchain/utils.py +19 -0
- uipath_llm_client-1.0.4/uv.lock +3814 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# UiPath LLM Client Configuration
|
|
3
|
+
# =============================================================================
|
|
4
|
+
# Copy this file to .env and fill in your values.
|
|
5
|
+
# The client supports two backends: AgentHub (default) and LLMGateway.
|
|
6
|
+
|
|
7
|
+
# -----------------------------------------------------------------------------
|
|
8
|
+
# Backend Selection
|
|
9
|
+
# -----------------------------------------------------------------------------
|
|
10
|
+
# Choose which backend to use: "agenthub" (default) or "llmgateway"
|
|
11
|
+
UIPATH_LLM_BACKEND="agenthub"
|
|
12
|
+
|
|
13
|
+
# =============================================================================
|
|
14
|
+
# AGENTHUB BACKEND SETTINGS
|
|
15
|
+
# =============================================================================
|
|
16
|
+
# AgentHub uses the UiPath CLI for authentication by default.
|
|
17
|
+
# Run `uv run uipath auth login` to authenticate interactively.
|
|
18
|
+
# Alternatively, set the environment variables below.
|
|
19
|
+
|
|
20
|
+
# Environment selection: "cloud", "staging", or "alpha" (default: None)
|
|
21
|
+
UIPATH_ENVIRONMENT=""
|
|
22
|
+
|
|
23
|
+
# Core settings (populated automatically by CLI auth, or set manually)
|
|
24
|
+
UIPATH_URL=""
|
|
25
|
+
UIPATH_ORGANIZATION_ID=""
|
|
26
|
+
UIPATH_TENANT_ID=""
|
|
27
|
+
|
|
28
|
+
# Access token (short-lived, populated by CLI auth)
|
|
29
|
+
# If not using CLI auth, provide this directly or use S2S credentials below
|
|
30
|
+
UIPATH_ACCESS_TOKEN=""
|
|
31
|
+
|
|
32
|
+
# S2S Authentication for AgentHub (alternative to CLI/access token)
|
|
33
|
+
UIPATH_CLIENT_ID=""
|
|
34
|
+
UIPATH_CLIENT_SECRET=""
|
|
35
|
+
UIPATH_CLIENT_SCOPE="" # Optional: custom OAuth scope
|
|
36
|
+
|
|
37
|
+
# =============================================================================
|
|
38
|
+
# LLMGATEWAY BACKEND SETTINGS
|
|
39
|
+
# =============================================================================
|
|
40
|
+
# To use LLMGateway, set UIPATH_LLM_BACKEND="llmgateway" above.
|
|
41
|
+
|
|
42
|
+
# Required settings
|
|
43
|
+
LLMGW_URL=""
|
|
44
|
+
LLMGW_SEMANTIC_ORG_ID=""
|
|
45
|
+
LLMGW_SEMANTIC_TENANT_ID=""
|
|
46
|
+
LLMGW_REQUESTING_PRODUCT=""
|
|
47
|
+
LLMGW_REQUESTING_FEATURE=""
|
|
48
|
+
|
|
49
|
+
# Authentication (choose one method)
|
|
50
|
+
# Option 1: Access token (short-lived)
|
|
51
|
+
LLMGW_ACCESS_TOKEN=""
|
|
52
|
+
|
|
53
|
+
# Option 2: S2S Authentication (recommended for production)
|
|
54
|
+
LLMGW_CLIENT_ID=""
|
|
55
|
+
LLMGW_CLIENT_SECRET=""
|
|
56
|
+
|
|
57
|
+
# Optional tracking and tracing
|
|
58
|
+
LLMGW_SEMANTIC_USER_ID=""
|
|
59
|
+
LLMGW_ACTION_ID=""
|
|
60
|
+
LLMGW_ADDITIONAL_HEADERS=""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tests/cassettes/** filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
name: Publish uipath-langchain-client to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
paths:
|
|
8
|
+
- 'packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py'
|
|
9
|
+
workflow_dispatch:
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
name: Build package
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
environment: pypi
|
|
16
|
+
permissions:
|
|
17
|
+
contents: read
|
|
18
|
+
id-token: write
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v6
|
|
22
|
+
|
|
23
|
+
- name: Setup uv
|
|
24
|
+
uses: astral-sh/setup-uv@v7
|
|
25
|
+
with:
|
|
26
|
+
version: "0.9.27"
|
|
27
|
+
enable-cache: true
|
|
28
|
+
|
|
29
|
+
- name: "Set up Python"
|
|
30
|
+
uses: actions/setup-python@v6
|
|
31
|
+
with:
|
|
32
|
+
python-version-file: ".python-version"
|
|
33
|
+
|
|
34
|
+
- name: "Install dependencies"
|
|
35
|
+
run: uv sync --dev --all-extras --locked
|
|
36
|
+
|
|
37
|
+
- name: Build package
|
|
38
|
+
run: uv build --package uipath-langchain-client
|
|
39
|
+
|
|
40
|
+
- name: Smoke test (wheel with all extras)
|
|
41
|
+
run: |
|
|
42
|
+
WHEEL=$(ls dist/*.whl)
|
|
43
|
+
uv run --isolated --no-project --with "${WHEEL}[all]" tests/langchain/langchain_smoke_test.py
|
|
44
|
+
|
|
45
|
+
- name: Smoke test (source distribution with all extras)
|
|
46
|
+
run: |
|
|
47
|
+
SDIST=$(ls dist/*.tar.gz)
|
|
48
|
+
uv run --isolated --no-project --with "${SDIST}[all]" tests/langchain/langchain_smoke_test.py
|
|
49
|
+
|
|
50
|
+
- name: Publish package
|
|
51
|
+
run: uv publish
|
|
52
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
name: Publish uipath-llm-client to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
paths:
|
|
8
|
+
- 'src/uipath_llm_client/__version__.py'
|
|
9
|
+
workflow_dispatch:
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
name: Build package
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
environment: pypi
|
|
16
|
+
permissions:
|
|
17
|
+
contents: read
|
|
18
|
+
id-token: write
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v6
|
|
22
|
+
|
|
23
|
+
- name: Setup uv
|
|
24
|
+
uses: astral-sh/setup-uv@v7
|
|
25
|
+
with:
|
|
26
|
+
version: "0.9.27"
|
|
27
|
+
enable-cache: true
|
|
28
|
+
|
|
29
|
+
- name: "Set up Python"
|
|
30
|
+
uses: actions/setup-python@v6
|
|
31
|
+
with:
|
|
32
|
+
python-version-file: ".python-version"
|
|
33
|
+
|
|
34
|
+
- name: "Install dependencies"
|
|
35
|
+
run: uv sync --dev --all-extras --locked
|
|
36
|
+
|
|
37
|
+
- name: Build package
|
|
38
|
+
run: uv build --package uipath-llm-client
|
|
39
|
+
|
|
40
|
+
- name: Smoke test (wheel with all extras)
|
|
41
|
+
run: |
|
|
42
|
+
WHEEL=$(ls dist/*.whl)
|
|
43
|
+
uv run --isolated --no-project --with "${WHEEL}[all]" tests/core/core_smoke_test.py
|
|
44
|
+
|
|
45
|
+
- name: Smoke test (source distribution with all extras)
|
|
46
|
+
run: |
|
|
47
|
+
SDIST=$(ls dist/*.tar.gz)
|
|
48
|
+
uv run --isolated --no-project --with "${SDIST}[all]" tests/core/core_smoke_test.py
|
|
49
|
+
|
|
50
|
+
- name: Publish package
|
|
51
|
+
run: uv publish
|
|
52
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
name: CI Pipeline
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
type_check:
|
|
10
|
+
name: Type Check and Lint
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@v6
|
|
14
|
+
|
|
15
|
+
- name: Install uv
|
|
16
|
+
uses: astral-sh/setup-uv@v7
|
|
17
|
+
with:
|
|
18
|
+
version: "0.9.27"
|
|
19
|
+
enable-cache: true
|
|
20
|
+
|
|
21
|
+
- name: Set up Python
|
|
22
|
+
uses: actions/setup-python@v6
|
|
23
|
+
with:
|
|
24
|
+
python-version-file: ".python-version"
|
|
25
|
+
|
|
26
|
+
- name: Install dependencies
|
|
27
|
+
run: uv sync --dev --all-extras
|
|
28
|
+
|
|
29
|
+
- name: Ruff check
|
|
30
|
+
run: |
|
|
31
|
+
uv run ruff check || exit 1
|
|
32
|
+
uv run ruff format --check || exit 1
|
|
33
|
+
|
|
34
|
+
- name: Pyright
|
|
35
|
+
run: uv run pyright .
|
|
36
|
+
|
|
37
|
+
test:
|
|
38
|
+
name: Test
|
|
39
|
+
runs-on: ubuntu-latest
|
|
40
|
+
needs: type_check
|
|
41
|
+
environment: LLMGW_SETTINGS
|
|
42
|
+
env:
|
|
43
|
+
UIPATH_LLM_BACKEND: ${{ vars.UIPATH_LLM_BACKEND }}
|
|
44
|
+
LLMGW_URL: ${{ vars.LLMGW_URL }}
|
|
45
|
+
LLMGW_SEMANTIC_ORG_ID: ${{ secrets.LLMGW_SEMANTIC_ORG_ID }}
|
|
46
|
+
LLMGW_SEMANTIC_USER_ID: ${{ secrets.LLMGW_SEMANTIC_USER_ID }}
|
|
47
|
+
LLMGW_SEMANTIC_TENANT_ID: ${{ secrets.LLMGW_SEMANTIC_TENANT_ID }}
|
|
48
|
+
LLMGW_REQUESTING_PRODUCT: ${{ vars.LLMGW_REQUESTING_PRODUCT }}
|
|
49
|
+
LLMGW_REQUESTING_FEATURE: ${{ vars.LLMGW_REQUESTING_FEATURE }}
|
|
50
|
+
LLMGW_CLIENT_ID: ${{ secrets.LLMGW_CLIENT_ID }}
|
|
51
|
+
LLMGW_CLIENT_SECRET: ${{ secrets.LLMGW_CLIENT_SECRET }}
|
|
52
|
+
steps:
|
|
53
|
+
- uses: actions/checkout@v6
|
|
54
|
+
with:
|
|
55
|
+
lfs: true
|
|
56
|
+
|
|
57
|
+
- name: Install uv
|
|
58
|
+
uses: astral-sh/setup-uv@v7
|
|
59
|
+
with:
|
|
60
|
+
version: "0.9.27"
|
|
61
|
+
enable-cache: true
|
|
62
|
+
|
|
63
|
+
- name: Set up Python
|
|
64
|
+
uses: actions/setup-python@v6
|
|
65
|
+
with:
|
|
66
|
+
python-version-file: ".python-version"
|
|
67
|
+
|
|
68
|
+
- name: Install dependencies
|
|
69
|
+
run: uv sync --dev --all-extras
|
|
70
|
+
|
|
71
|
+
- name: Run tests
|
|
72
|
+
run: uv run pytest tests
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
name: Validate Version and Changelog
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
validate-uipath-llm-client:
|
|
10
|
+
name: uipath-llm-client
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@v6
|
|
14
|
+
with:
|
|
15
|
+
fetch-depth: 0
|
|
16
|
+
|
|
17
|
+
- name: Get changed files
|
|
18
|
+
run: |
|
|
19
|
+
git diff origin/main...HEAD --name-only > changes.txt
|
|
20
|
+
echo "Changed files:"
|
|
21
|
+
cat changes.txt
|
|
22
|
+
|
|
23
|
+
- name: Validate version update
|
|
24
|
+
run: |
|
|
25
|
+
core_changes=$(grep -E '^src/uipath_llm_client/' changes.txt | grep -v '__version__.py' || true)
|
|
26
|
+
core_version=$(grep -E '^src/uipath_llm_client/__version__.py' changes.txt || true)
|
|
27
|
+
if [ -n "$core_changes" ] && [ -z "$core_version" ]; then
|
|
28
|
+
echo "::error::uipath-llm-client: package changes detected but no version update in src/uipath_llm_client/__version__.py"
|
|
29
|
+
exit 1
|
|
30
|
+
fi
|
|
31
|
+
echo "✓ Version is consistent with changes."
|
|
32
|
+
|
|
33
|
+
- name: Validate changelog update
|
|
34
|
+
run: |
|
|
35
|
+
core_version=$(grep -E '^src/uipath_llm_client/__version__.py' changes.txt || true)
|
|
36
|
+
core_changelog=$(grep -E '^CHANGELOG.md' changes.txt || true)
|
|
37
|
+
if [ -n "$core_version" ] && [ -z "$core_changelog" ]; then
|
|
38
|
+
echo "::error::uipath-llm-client: version changed but no changelog update in CHANGELOG.md"
|
|
39
|
+
exit 1
|
|
40
|
+
fi
|
|
41
|
+
echo "✓ Changelog is consistent with version changes."
|
|
42
|
+
|
|
43
|
+
validate-uipath-langchain-client:
|
|
44
|
+
name: uipath-langchain-client
|
|
45
|
+
runs-on: ubuntu-latest
|
|
46
|
+
steps:
|
|
47
|
+
- uses: actions/checkout@v6
|
|
48
|
+
with:
|
|
49
|
+
fetch-depth: 0
|
|
50
|
+
|
|
51
|
+
- name: Get changed files
|
|
52
|
+
run: |
|
|
53
|
+
git diff origin/main...HEAD --name-only > changes.txt
|
|
54
|
+
echo "Changed files:"
|
|
55
|
+
cat changes.txt
|
|
56
|
+
|
|
57
|
+
- name: Validate version update
|
|
58
|
+
run: |
|
|
59
|
+
langchain_changes=$(grep -E '^packages/uipath_langchain_client/' changes.txt | grep -v '__version__.py' || true)
|
|
60
|
+
langchain_version=$(grep -E '^packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py' changes.txt || true)
|
|
61
|
+
if [ -n "$langchain_changes" ] && [ -z "$langchain_version" ]; then
|
|
62
|
+
echo "::error::uipath-langchain-client: package changes detected but no version update in packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py"
|
|
63
|
+
exit 1
|
|
64
|
+
fi
|
|
65
|
+
echo "✓ Version is consistent with changes."
|
|
66
|
+
|
|
67
|
+
- name: Validate changelog update
|
|
68
|
+
run: |
|
|
69
|
+
langchain_version=$(grep -E '^packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py' changes.txt || true)
|
|
70
|
+
langchain_changelog=$(grep -E '^packages/uipath_langchain_client/CHANGELOG.md' changes.txt || true)
|
|
71
|
+
if [ -n "$langchain_version" ] && [ -z "$langchain_changelog" ]; then
|
|
72
|
+
echo "::error::uipath-langchain-client: version changed but no changelog update in packages/uipath_langchain_client/CHANGELOG.md"
|
|
73
|
+
exit 1
|
|
74
|
+
fi
|
|
75
|
+
echo "✓ Changelog is consistent with version changes."
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
name: Publish Dev Build
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types: [opened, synchronize, reopened, labeled]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
detect-changes:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
if: contains(github.event.pull_request.labels.*.name, 'build:dev')
|
|
11
|
+
outputs:
|
|
12
|
+
core-changed: ${{ steps.changes.outputs.core }}
|
|
13
|
+
langchain-changed: ${{ steps.changes.outputs.langchain }}
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v6
|
|
16
|
+
with:
|
|
17
|
+
fetch-depth: 0
|
|
18
|
+
|
|
19
|
+
- name: Detect changed packages
|
|
20
|
+
id: changes
|
|
21
|
+
run: |
|
|
22
|
+
# Get list of changed files
|
|
23
|
+
git diff origin/main...HEAD --name-only > changes.txt
|
|
24
|
+
echo "Changed files:"
|
|
25
|
+
cat changes.txt
|
|
26
|
+
|
|
27
|
+
# Check if core package changed
|
|
28
|
+
if grep -qE '^src/uipath_llm_client/' changes.txt; then
|
|
29
|
+
echo "core=true" >> $GITHUB_OUTPUT
|
|
30
|
+
echo "Core package has changes"
|
|
31
|
+
else
|
|
32
|
+
echo "core=false" >> $GITHUB_OUTPUT
|
|
33
|
+
echo "Core package has no changes"
|
|
34
|
+
fi
|
|
35
|
+
|
|
36
|
+
# Check if langchain package changed
|
|
37
|
+
if grep -qE '^packages/uipath_langchain_client/' changes.txt; then
|
|
38
|
+
echo "langchain=true" >> $GITHUB_OUTPUT
|
|
39
|
+
echo "Langchain package has changes"
|
|
40
|
+
else
|
|
41
|
+
echo "langchain=false" >> $GITHUB_OUTPUT
|
|
42
|
+
echo "Langchain package has no changes"
|
|
43
|
+
fi
|
|
44
|
+
|
|
45
|
+
publish-dev:
|
|
46
|
+
needs: detect-changes
|
|
47
|
+
runs-on: ubuntu-latest
|
|
48
|
+
if: needs.detect-changes.outputs.core-changed == 'true' || needs.detect-changes.outputs.langchain-changed == 'true'
|
|
49
|
+
permissions:
|
|
50
|
+
contents: read
|
|
51
|
+
pull-requests: write
|
|
52
|
+
|
|
53
|
+
steps:
|
|
54
|
+
- uses: actions/checkout@v6
|
|
55
|
+
|
|
56
|
+
- name: Install uv
|
|
57
|
+
uses: astral-sh/setup-uv@v7
|
|
58
|
+
with:
|
|
59
|
+
version: "0.9.27"
|
|
60
|
+
enable-cache: true
|
|
61
|
+
|
|
62
|
+
- name: Set up Python
|
|
63
|
+
uses: actions/setup-python@v6
|
|
64
|
+
with:
|
|
65
|
+
python-version-file: ".python-version"
|
|
66
|
+
|
|
67
|
+
- name: Install dependencies
|
|
68
|
+
run: uv sync --dev --all-extras --locked
|
|
69
|
+
|
|
70
|
+
- name: Set development versions and update PR
|
|
71
|
+
env:
|
|
72
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
73
|
+
CORE_CHANGED: ${{ needs.detect-changes.outputs.core-changed }}
|
|
74
|
+
LANGCHAIN_CHANGED: ${{ needs.detect-changes.outputs.langchain-changed }}
|
|
75
|
+
run: |
|
|
76
|
+
# Get PR number and run number with proper padding
|
|
77
|
+
PR_NUM="${{ github.event.pull_request.number }}"
|
|
78
|
+
PADDED_PR=$(printf "%05d" $PR_NUM)
|
|
79
|
+
PADDED_RUN=$(printf "%04d" ${{ github.run_number }})
|
|
80
|
+
NEXT_PR=$((PR_NUM + 1))
|
|
81
|
+
PADDED_NEXT_PR=$(printf "%05d" $NEXT_PR)
|
|
82
|
+
|
|
83
|
+
# Initialize arrays for changed packages
|
|
84
|
+
PACKAGES_INFO=""
|
|
85
|
+
DEPENDENCIES_EXACT=""
|
|
86
|
+
DEPENDENCIES_RANGE=""
|
|
87
|
+
SOURCES=""
|
|
88
|
+
OVERRIDES=""
|
|
89
|
+
|
|
90
|
+
# Process core package if changed
|
|
91
|
+
if [ "$CORE_CHANGED" == "true" ]; then
|
|
92
|
+
# Read current version from __version__.py
|
|
93
|
+
CORE_VERSION=$(grep -oP '__version__\s*=\s*"\K[^"]+' src/uipath_llm_client/__version__.py)
|
|
94
|
+
DEV_VERSION="${CORE_VERSION}.dev1${PADDED_PR}${PADDED_RUN}"
|
|
95
|
+
MIN_VERSION="${CORE_VERSION}.dev1${PADDED_PR}0000"
|
|
96
|
+
MAX_VERSION="${CORE_VERSION}.dev1${PADDED_NEXT_PR}0000"
|
|
97
|
+
|
|
98
|
+
# Update __version__.py
|
|
99
|
+
sed -i "s/__version__ = \".*\"/__version__ = \"${DEV_VERSION}\"/" src/uipath_llm_client/__version__.py
|
|
100
|
+
echo "Core package version set to $DEV_VERSION"
|
|
101
|
+
|
|
102
|
+
DEPENDENCIES_EXACT="${DEPENDENCIES_EXACT} \"uipath-llm-client==${DEV_VERSION}\",\n"
|
|
103
|
+
DEPENDENCIES_RANGE="${DEPENDENCIES_RANGE} \"uipath-llm-client>=${MIN_VERSION},<${MAX_VERSION}\",\n"
|
|
104
|
+
SOURCES="${SOURCES}uipath-llm-client = { index = \"testpypi\" }\n"
|
|
105
|
+
OVERRIDES="${OVERRIDES} \"uipath-llm-client>=${MIN_VERSION},<${MAX_VERSION}\",\n"
|
|
106
|
+
fi
|
|
107
|
+
|
|
108
|
+
# Process langchain package if changed
|
|
109
|
+
if [ "$LANGCHAIN_CHANGED" == "true" ]; then
|
|
110
|
+
# Read current version from __version__.py
|
|
111
|
+
LC_VERSION=$(grep -oP '__version__\s*=\s*"\K[^"]+' packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py)
|
|
112
|
+
DEV_VERSION="${LC_VERSION}.dev1${PADDED_PR}${PADDED_RUN}"
|
|
113
|
+
MIN_VERSION="${LC_VERSION}.dev1${PADDED_PR}0000"
|
|
114
|
+
MAX_VERSION="${LC_VERSION}.dev1${PADDED_NEXT_PR}0000"
|
|
115
|
+
|
|
116
|
+
# Update __version__.py
|
|
117
|
+
sed -i "s/__version__ = \".*\"/__version__ = \"${DEV_VERSION}\"/" packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py
|
|
118
|
+
echo "Langchain package version set to $DEV_VERSION"
|
|
119
|
+
|
|
120
|
+
DEPENDENCIES_EXACT="${DEPENDENCIES_EXACT} \"uipath-langchain-client==${DEV_VERSION}\",\n"
|
|
121
|
+
DEPENDENCIES_RANGE="${DEPENDENCIES_RANGE} \"uipath-langchain-client>=${MIN_VERSION},<${MAX_VERSION}\",\n"
|
|
122
|
+
SOURCES="${SOURCES}uipath-langchain-client = { index = \"testpypi\" }\n"
|
|
123
|
+
OVERRIDES="${OVERRIDES} \"uipath-langchain-client>=${MIN_VERSION},<${MAX_VERSION}\",\n"
|
|
124
|
+
fi
|
|
125
|
+
|
|
126
|
+
# Build PR description
|
|
127
|
+
cat > /tmp/pr_update.md << 'HEREDOC_END'
|
|
128
|
+
<!-- DEV_PACKAGE_START -->
|
|
129
|
+
## Development Package
|
|
130
|
+
|
|
131
|
+
Add these packages as dependencies in your pyproject.toml:
|
|
132
|
+
|
|
133
|
+
```toml
|
|
134
|
+
[project]
|
|
135
|
+
dependencies = [
|
|
136
|
+
# Exact versions:
|
|
137
|
+
HEREDOC_END
|
|
138
|
+
|
|
139
|
+
echo -e "${DEPENDENCIES_EXACT}" >> /tmp/pr_update.md
|
|
140
|
+
|
|
141
|
+
cat >> /tmp/pr_update.md << 'HEREDOC_END'
|
|
142
|
+
# Or use version ranges for any build from this PR:
|
|
143
|
+
HEREDOC_END
|
|
144
|
+
|
|
145
|
+
echo -e "${DEPENDENCIES_RANGE}" >> /tmp/pr_update.md
|
|
146
|
+
|
|
147
|
+
cat >> /tmp/pr_update.md << 'HEREDOC_END'
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[tool.uv.index]]
|
|
151
|
+
name = "testpypi"
|
|
152
|
+
url = "https://test.pypi.org/simple/"
|
|
153
|
+
publish-url = "https://test.pypi.org/legacy/"
|
|
154
|
+
explicit = true
|
|
155
|
+
|
|
156
|
+
[tool.uv.sources]
|
|
157
|
+
HEREDOC_END
|
|
158
|
+
|
|
159
|
+
echo -e "${SOURCES}" >> /tmp/pr_update.md
|
|
160
|
+
|
|
161
|
+
cat >> /tmp/pr_update.md << 'HEREDOC_END'
|
|
162
|
+
|
|
163
|
+
[tool.uv]
|
|
164
|
+
override-dependencies = [
|
|
165
|
+
HEREDOC_END
|
|
166
|
+
|
|
167
|
+
echo -e "${OVERRIDES}" >> /tmp/pr_update.md
|
|
168
|
+
|
|
169
|
+
cat >> /tmp/pr_update.md << 'HEREDOC_END'
|
|
170
|
+
]
|
|
171
|
+
```
|
|
172
|
+
<!-- DEV_PACKAGE_END -->
|
|
173
|
+
HEREDOC_END
|
|
174
|
+
|
|
175
|
+
DEV_MESSAGE=$(cat /tmp/pr_update.md)
|
|
176
|
+
|
|
177
|
+
# Update PR description using GitHub API
|
|
178
|
+
PR_URL="https://api.github.com/repos/${{ github.repository }}/pulls/${PR_NUM}"
|
|
179
|
+
CURRENT_BODY=$(gh pr view ${PR_NUM} --json body -q '.body' || echo "")
|
|
180
|
+
|
|
181
|
+
# Check if markers exist and replace or append
|
|
182
|
+
if echo "$CURRENT_BODY" | grep -q "<!-- DEV_PACKAGE_START -->"; then
|
|
183
|
+
# Replace content between markers
|
|
184
|
+
NEW_BODY=$(echo "$CURRENT_BODY" | sed '/<!-- DEV_PACKAGE_START -->/,/<!-- DEV_PACKAGE_END -->/d')
|
|
185
|
+
NEW_BODY="${NEW_BODY}
|
|
186
|
+
|
|
187
|
+
${DEV_MESSAGE}"
|
|
188
|
+
else
|
|
189
|
+
# Append to end
|
|
190
|
+
NEW_BODY="${CURRENT_BODY}
|
|
191
|
+
|
|
192
|
+
${DEV_MESSAGE}"
|
|
193
|
+
fi
|
|
194
|
+
|
|
195
|
+
# Update PR
|
|
196
|
+
gh pr edit ${PR_NUM} --body "$NEW_BODY"
|
|
197
|
+
echo "Updated PR description with development package information"
|
|
198
|
+
|
|
199
|
+
- name: Build core package
|
|
200
|
+
if: needs.detect-changes.outputs.core-changed == 'true'
|
|
201
|
+
run: uv build --package uipath-llm-client
|
|
202
|
+
|
|
203
|
+
- name: Build langchain package
|
|
204
|
+
if: needs.detect-changes.outputs.langchain-changed == 'true'
|
|
205
|
+
run: uv build --package uipath-langchain-client
|
|
206
|
+
|
|
207
|
+
- name: Publish core package
|
|
208
|
+
if: needs.detect-changes.outputs.core-changed == 'true'
|
|
209
|
+
run: uv publish dist/uipath_llm_client* --index testpypi --token ${{ secrets.UV_PUBLISH_TOKEN_UIPATH_LLM_CLIENT }}
|
|
210
|
+
|
|
211
|
+
- name: Publish langchain package
|
|
212
|
+
if: needs.detect-changes.outputs.langchain-changed == 'true'
|
|
213
|
+
run: uv publish dist/uipath_langchain_client* --index testpypi --token ${{ secrets.UV_PUBLISH_TOKEN_UIPATH_LANGCHAIN_CLIENT }}
|