mirascope 1.18.2__tar.gz → 1.18.3__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.
- mirascope-1.18.3/.github/workflows/lint.yml +49 -0
- mirascope-1.18.3/.gitignore +173 -0
- mirascope-1.18.3/PKG-INFO +166 -0
- mirascope-1.18.3/README.md +66 -0
- mirascope-1.18.3/docs/WELCOME.md +188 -0
- mirascope-1.18.3/docs/blog/posts/langchain-structured-output.md +480 -0
- mirascope-1.18.3/docs/generate_provider_examples.py +148 -0
- mirascope-1.18.3/docs/hooks.py +96 -0
- mirascope-1.18.3/docs/learn/json_mode.md +95 -0
- mirascope-1.18.3/docs/learn/output_parsers.md +100 -0
- mirascope-1.18.3/docs/learn/response_models.md +292 -0
- mirascope-1.18.3/examples/learn/json_mode/basic_usage/base_message_param.py +17 -0
- mirascope-1.18.3/examples/learn/json_mode/basic_usage/messages.py +13 -0
- mirascope-1.18.3/examples/learn/json_mode/basic_usage/shorthand.py +13 -0
- mirascope-1.18.3/examples/learn/json_mode/basic_usage/string_template.py +13 -0
- mirascope-1.18.3/examples/learn/json_mode/error_handling/base_message_param.py +19 -0
- mirascope-1.18.3/examples/learn/json_mode/error_handling/messages.py +15 -0
- mirascope-1.18.3/examples/learn/json_mode/error_handling/shorthand.py +15 -0
- mirascope-1.18.3/examples/learn/json_mode/error_handling/string_template.py +15 -0
- mirascope-1.18.3/examples/learn/output_parsers/additional_examples/json_mode.py +23 -0
- mirascope-1.18.3/examples/learn/output_parsers/additional_examples/regex.py +28 -0
- mirascope-1.18.3/examples/learn/output_parsers/additional_examples/xml.py +55 -0
- mirascope-1.18.3/examples/learn/output_parsers/basic_usage/base_message_param.py +20 -0
- mirascope-1.18.3/examples/learn/output_parsers/basic_usage/messages.py +15 -0
- mirascope-1.18.3/examples/learn/output_parsers/basic_usage/shorthand.py +15 -0
- mirascope-1.18.3/examples/learn/output_parsers/basic_usage/string_template.py +15 -0
- mirascope-1.18.3/examples/learn/response_models/basic_usage/base_message_param.py +25 -0
- mirascope-1.18.3/examples/learn/response_models/basic_usage/messages.py +25 -0
- mirascope-1.18.3/examples/learn/response_models/basic_usage/shorthand.py +25 -0
- mirascope-1.18.3/examples/learn/response_models/basic_usage/string_template.py +25 -0
- mirascope-1.18.3/examples/learn/response_models/builtin_types/base_message_param.py +16 -0
- mirascope-1.18.3/examples/learn/response_models/builtin_types/messages.py +16 -0
- mirascope-1.18.3/examples/learn/response_models/builtin_types/shorthand.py +16 -0
- mirascope-1.18.3/examples/learn/response_models/builtin_types/string_template.py +16 -0
- mirascope-1.18.3/examples/learn/response_models/few_shot_examples/base_message_param.py +30 -0
- mirascope-1.18.3/examples/learn/response_models/few_shot_examples/google/base_message_param.py +30 -0
- mirascope-1.18.3/examples/learn/response_models/few_shot_examples/google/messages.py +27 -0
- mirascope-1.18.3/examples/learn/response_models/few_shot_examples/google/shorthand.py +25 -0
- mirascope-1.18.3/examples/learn/response_models/few_shot_examples/google/string_template.py +25 -0
- mirascope-1.18.3/examples/learn/response_models/few_shot_examples/messages.py +27 -0
- mirascope-1.18.3/examples/learn/response_models/few_shot_examples/shorthand.py +25 -0
- mirascope-1.18.3/examples/learn/response_models/few_shot_examples/string_template.py +25 -0
- mirascope-1.18.3/examples/learn/response_models/from_call_args/base_message_param.py +47 -0
- mirascope-1.18.3/examples/learn/response_models/from_call_args/messages.py +43 -0
- mirascope-1.18.3/examples/learn/response_models/from_call_args/shorthand.py +43 -0
- mirascope-1.18.3/examples/learn/response_models/from_call_args/string_template.py +43 -0
- mirascope-1.18.3/examples/learn/response_models/json_mode/base_message_param.py +19 -0
- mirascope-1.18.3/examples/learn/response_models/json_mode/messages.py +19 -0
- mirascope-1.18.3/examples/learn/response_models/json_mode/shorthand.py +19 -0
- mirascope-1.18.3/examples/learn/response_models/json_mode/string_template.py +19 -0
- mirascope-1.18.3/examples/learn/response_models/streaming/base_message_param.py +30 -0
- mirascope-1.18.3/examples/learn/response_models/streaming/messages.py +30 -0
- mirascope-1.18.3/examples/learn/response_models/streaming/shorthand.py +30 -0
- mirascope-1.18.3/examples/learn/response_models/streaming/string_template.py +30 -0
- mirascope-1.18.3/examples/learn/response_models/validation/base_message_param.py +39 -0
- mirascope-1.18.3/examples/learn/response_models/validation/messages.py +39 -0
- mirascope-1.18.3/examples/learn/response_models/validation/shorthand.py +39 -0
- mirascope-1.18.3/examples/learn/response_models/validation/string_template.py +39 -0
- mirascope-1.18.3/mirascope/__init__.py +37 -0
- mirascope-1.18.3/mirascope/core/__init__.py +80 -0
- mirascope-1.18.3/mirascope/core/anthropic/call_response.py +196 -0
- mirascope-1.18.3/mirascope/core/azure/call_response.py +207 -0
- mirascope-1.18.3/mirascope/core/base/call_response.py +298 -0
- mirascope-1.18.3/mirascope/core/bedrock/call_response.py +240 -0
- mirascope-1.18.3/mirascope/core/cohere/call_response.py +196 -0
- mirascope-1.18.3/mirascope/core/gemini/call_response.py +207 -0
- mirascope-1.18.3/mirascope/core/google/_utils/_convert_message_params.py +214 -0
- mirascope-1.18.3/mirascope/core/google/call_response.py +208 -0
- mirascope-1.18.3/mirascope/core/groq/call_response.py +189 -0
- mirascope-1.18.3/mirascope/core/mistral/call_response.py +194 -0
- mirascope-1.18.3/mirascope/core/openai/call_response.py +237 -0
- mirascope-1.18.3/mirascope/core/vertex/call_response.py +199 -0
- mirascope-1.18.3/mirascope/llm/__init__.py +6 -0
- mirascope-1.18.3/mirascope/llm/call_response.py +149 -0
- mirascope-1.18.3/mirascope/llm/llm_call.py +294 -0
- mirascope-1.18.3/mkdocs.yml +401 -0
- mirascope-1.18.3/pyproject.toml +235 -0
- mirascope-1.18.3/tests/core/google/_utils/test_convert_message_params.py +670 -0
- mirascope-1.18.3/tests/docs/test_generate_provider_examples.py +326 -0
- mirascope-1.18.3/tests/llm/test_call.py +296 -0
- mirascope-1.18.3/tests/llm/test_call_response.py +223 -0
- mirascope-1.18.3/tests/llm/test_stream.py +247 -0
- mirascope-1.18.3/uv.lock +6843 -0
- mirascope-1.18.2/.github/workflows/lint.yml +0 -49
- mirascope-1.18.2/.gitignore +0 -172
- mirascope-1.18.2/PKG-INFO +0 -166
- mirascope-1.18.2/README.md +0 -66
- mirascope-1.18.2/docs/WELCOME.md +0 -188
- mirascope-1.18.2/docs/blog/posts/langchain-structured-output.md +0 -480
- mirascope-1.18.2/docs/hooks.py +0 -76
- mirascope-1.18.2/docs/learn/json_mode.md +0 -95
- mirascope-1.18.2/docs/learn/output_parsers.md +0 -84
- mirascope-1.18.2/docs/learn/response_models.md +0 -294
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/anthropic/base_message_param.py +0 -17
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/anthropic/messages.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/anthropic/shorthand.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/anthropic/string_template.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/azure/base_message_param.py +0 -17
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/azure/messages.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/azure/shorthand.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/azure/string_template.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/bedrock/base_message_param.py +0 -17
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/bedrock/messages.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/bedrock/shorthand.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/bedrock/string_template.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/cohere/base_message_param.py +0 -17
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/cohere/messages.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/cohere/shorthand.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/cohere/string_template.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/google/base_message_param.py +0 -17
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/google/messages.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/google/shorthand.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/google/string_template.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/groq/base_message_param.py +0 -17
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/groq/messages.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/groq/shorthand.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/groq/string_template.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/litellm/base_message_param.py +0 -17
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/litellm/messages.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/litellm/shorthand.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/litellm/string_template.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/mistral/base_message_param.py +0 -17
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/mistral/messages.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/mistral/shorthand.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/mistral/string_template.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/openai/base_message_param.py +0 -17
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/openai/messages.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/openai/shorthand.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/basic_usage/openai/string_template.py +0 -13
- mirascope-1.18.2/examples/learn/json_mode/error_handling/anthropic/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/json_mode/error_handling/anthropic/messages.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/anthropic/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/anthropic/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/azure/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/json_mode/error_handling/azure/messages.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/azure/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/azure/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/bedrock/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/json_mode/error_handling/bedrock/messages.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/bedrock/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/bedrock/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/cohere/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/json_mode/error_handling/cohere/messages.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/cohere/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/cohere/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/google/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/json_mode/error_handling/google/messages.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/google/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/google/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/groq/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/json_mode/error_handling/groq/messages.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/groq/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/groq/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/litellm/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/json_mode/error_handling/litellm/messages.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/litellm/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/litellm/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/mistral/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/json_mode/error_handling/mistral/messages.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/mistral/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/mistral/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/openai/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/json_mode/error_handling/openai/messages.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/openai/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/json_mode/error_handling/openai/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/additional_examples/json_mode.py +0 -21
- mirascope-1.18.2/examples/learn/output_parsers/additional_examples/regex.py +0 -28
- mirascope-1.18.2/examples/learn/output_parsers/additional_examples/xml.py +0 -55
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/anthropic/base_message_param.py +0 -20
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/anthropic/messages.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/anthropic/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/anthropic/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/azure/base_message_param.py +0 -20
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/azure/messages.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/azure/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/azure/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/bedrock/base_message_param.py +0 -22
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/bedrock/messages.py +0 -17
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/bedrock/shorthand.py +0 -17
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/bedrock/string_template.py +0 -17
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/cohere/base_message_param.py +0 -20
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/cohere/messages.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/cohere/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/cohere/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/google/base_message_param.py +0 -20
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/google/messages.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/google/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/google/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/groq/base_message_param.py +0 -20
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/groq/messages.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/groq/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/groq/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/litellm/base_message_param.py +0 -20
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/litellm/messages.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/litellm/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/litellm/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/mistral/base_message_param.py +0 -20
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/mistral/messages.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/mistral/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/mistral/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/openai/base_message_param.py +0 -20
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/openai/messages.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/openai/shorthand.py +0 -15
- mirascope-1.18.2/examples/learn/output_parsers/basic_usage/openai/string_template.py +0 -15
- mirascope-1.18.2/examples/learn/response_models/basic_usage/anthropic/base_message_param.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/anthropic/messages.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/anthropic/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/anthropic/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/azure/base_message_param.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/azure/messages.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/azure/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/azure/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/bedrock/base_message_param.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/bedrock/messages.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/bedrock/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/bedrock/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/cohere/base_message_param.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/cohere/messages.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/cohere/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/cohere/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/google/base_message_param.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/google/messages.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/google/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/google/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/groq/base_message_param.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/groq/messages.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/groq/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/groq/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/litellm/base_message_param.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/litellm/messages.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/litellm/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/litellm/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/mistral/base_message_param.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/mistral/messages.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/mistral/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/mistral/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/openai/base_message_param.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/openai/messages.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/openai/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/basic_usage/openai/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/builtin_types/anthropic/base_message_param.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/anthropic/messages.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/anthropic/shorthand.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/anthropic/string_template.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/azure/base_message_param.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/azure/messages.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/azure/shorthand.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/azure/string_template.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/bedrock/base_message_param.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/bedrock/messages.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/bedrock/shorthand.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/bedrock/string_template.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/cohere/base_message_param.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/cohere/messages.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/cohere/shorthand.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/cohere/string_template.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/google/base_message_param.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/google/messages.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/google/shorthand.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/google/string_template.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/groq/base_message_param.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/groq/messages.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/groq/shorthand.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/groq/string_template.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/litellm/base_message_param.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/litellm/messages.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/litellm/shorthand.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/litellm/string_template.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/mistral/base_message_param.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/mistral/messages.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/mistral/shorthand.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/mistral/string_template.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/openai/base_message_param.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/openai/messages.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/openai/shorthand.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/builtin_types/openai/string_template.py +0 -16
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/anthropic/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/anthropic/messages.py +0 -27
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/anthropic/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/anthropic/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/azure/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/azure/messages.py +0 -27
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/azure/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/azure/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/bedrock/base_message_param.py +0 -32
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/bedrock/messages.py +0 -29
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/bedrock/shorthand.py +0 -27
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/bedrock/string_template.py +0 -27
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/cohere/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/cohere/messages.py +0 -27
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/cohere/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/cohere/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/groq/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/groq/messages.py +0 -27
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/groq/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/groq/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/litellm/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/litellm/messages.py +0 -27
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/litellm/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/litellm/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/mistral/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/mistral/messages.py +0 -27
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/mistral/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/mistral/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/openai/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/openai/messages.py +0 -27
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/openai/shorthand.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/few_shot_examples/openai/string_template.py +0 -25
- mirascope-1.18.2/examples/learn/response_models/from_call_args/anthropic/base_message_param.py +0 -38
- mirascope-1.18.2/examples/learn/response_models/from_call_args/anthropic/messages.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/anthropic/shorthand.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/anthropic/string_template.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/azure/base_message_param.py +0 -38
- mirascope-1.18.2/examples/learn/response_models/from_call_args/azure/messages.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/azure/shorthand.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/azure/string_template.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/bedrock/base_message_param.py +0 -38
- mirascope-1.18.2/examples/learn/response_models/from_call_args/bedrock/messages.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/bedrock/shorthand.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/bedrock/string_template.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/cohere/base_message_param.py +0 -38
- mirascope-1.18.2/examples/learn/response_models/from_call_args/cohere/messages.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/cohere/shorthand.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/cohere/string_template.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/google/base_message_param.py +0 -38
- mirascope-1.18.2/examples/learn/response_models/from_call_args/google/messages.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/google/shorthand.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/google/string_template.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/groq/base_message_param.py +0 -38
- mirascope-1.18.2/examples/learn/response_models/from_call_args/groq/messages.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/groq/shorthand.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/groq/string_template.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/litellm/base_message_param.py +0 -38
- mirascope-1.18.2/examples/learn/response_models/from_call_args/litellm/messages.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/litellm/shorthand.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/litellm/string_template.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/mistral/base_message_param.py +0 -38
- mirascope-1.18.2/examples/learn/response_models/from_call_args/mistral/messages.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/mistral/shorthand.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/mistral/string_template.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/openai/base_message_param.py +0 -38
- mirascope-1.18.2/examples/learn/response_models/from_call_args/openai/messages.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/openai/shorthand.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/from_call_args/openai/string_template.py +0 -34
- mirascope-1.18.2/examples/learn/response_models/json_mode/anthropic/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/anthropic/messages.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/anthropic/shorthand.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/anthropic/string_template.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/azure/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/azure/messages.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/azure/shorthand.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/azure/string_template.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/bedrock/base_message_param.py +0 -21
- mirascope-1.18.2/examples/learn/response_models/json_mode/bedrock/messages.py +0 -21
- mirascope-1.18.2/examples/learn/response_models/json_mode/bedrock/shorthand.py +0 -21
- mirascope-1.18.2/examples/learn/response_models/json_mode/bedrock/string_template.py +0 -21
- mirascope-1.18.2/examples/learn/response_models/json_mode/cohere/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/cohere/messages.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/cohere/shorthand.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/cohere/string_template.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/google/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/google/messages.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/google/shorthand.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/google/string_template.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/groq/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/groq/messages.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/groq/shorthand.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/groq/string_template.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/litellm/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/litellm/messages.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/litellm/shorthand.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/litellm/string_template.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/mistral/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/mistral/messages.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/mistral/shorthand.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/mistral/string_template.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/openai/base_message_param.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/openai/messages.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/openai/shorthand.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/json_mode/openai/string_template.py +0 -19
- mirascope-1.18.2/examples/learn/response_models/streaming/anthropic/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/anthropic/messages.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/anthropic/shorthand.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/anthropic/string_template.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/azure/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/azure/messages.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/azure/shorthand.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/azure/string_template.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/bedrock/base_message_param.py +0 -32
- mirascope-1.18.2/examples/learn/response_models/streaming/bedrock/messages.py +0 -32
- mirascope-1.18.2/examples/learn/response_models/streaming/bedrock/shorthand.py +0 -32
- mirascope-1.18.2/examples/learn/response_models/streaming/bedrock/string_template.py +0 -32
- mirascope-1.18.2/examples/learn/response_models/streaming/cohere/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/cohere/messages.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/cohere/shorthand.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/cohere/string_template.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/google/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/google/messages.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/google/shorthand.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/google/string_template.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/groq/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/groq/messages.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/groq/shorthand.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/groq/string_template.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/litellm/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/litellm/messages.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/litellm/shorthand.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/litellm/string_template.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/mistral/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/mistral/messages.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/mistral/shorthand.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/mistral/string_template.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/openai/base_message_param.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/openai/messages.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/openai/shorthand.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/streaming/openai/string_template.py +0 -30
- mirascope-1.18.2/examples/learn/response_models/validation/anthropic/base_message_param.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/anthropic/messages.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/anthropic/shorthand.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/anthropic/string_template.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/azure/base_message_param.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/azure/messages.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/azure/shorthand.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/azure/string_template.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/bedrock/base_message_param.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/bedrock/messages.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/bedrock/shorthand.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/bedrock/string_template.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/cohere/base_message_param.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/cohere/messages.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/cohere/shorthand.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/cohere/string_template.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/google/base_message_param.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/google/messages.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/google/shorthand.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/google/string_template.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/groq/base_message_param.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/groq/messages.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/groq/shorthand.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/groq/string_template.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/litellm/base_message_param.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/litellm/messages.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/litellm/shorthand.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/litellm/string_template.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/mistral/base_message_param.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/mistral/messages.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/mistral/shorthand.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/mistral/string_template.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/openai/base_message_param.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/openai/messages.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/openai/shorthand.py +0 -39
- mirascope-1.18.2/examples/learn/response_models/validation/openai/string_template.py +0 -39
- mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/wave/base_message_param.py +0 -1
- mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/wave/messages.py +0 -1
- mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/wave/shorthand.py +0 -1
- mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/wave/string_template.py +0 -1
- mirascope-1.18.2/mirascope/__init__.py +0 -36
- mirascope-1.18.2/mirascope/core/__init__.py +0 -75
- mirascope-1.18.2/mirascope/core/anthropic/call_response.py +0 -198
- mirascope-1.18.2/mirascope/core/azure/call_response.py +0 -209
- mirascope-1.18.2/mirascope/core/base/call_response.py +0 -300
- mirascope-1.18.2/mirascope/core/bedrock/call_response.py +0 -242
- mirascope-1.18.2/mirascope/core/cohere/call_response.py +0 -198
- mirascope-1.18.2/mirascope/core/gemini/call_response.py +0 -209
- mirascope-1.18.2/mirascope/core/google/_utils/_convert_message_params.py +0 -181
- mirascope-1.18.2/mirascope/core/google/call_response.py +0 -202
- mirascope-1.18.2/mirascope/core/groq/call_response.py +0 -191
- mirascope-1.18.2/mirascope/core/mistral/call_response.py +0 -196
- mirascope-1.18.2/mirascope/core/openai/call_response.py +0 -239
- mirascope-1.18.2/mirascope/core/vertex/call_response.py +0 -201
- mirascope-1.18.2/mirascope/llm/__init__.py +0 -4
- mirascope-1.18.2/mirascope/llm/call_response.py +0 -151
- mirascope-1.18.2/mirascope/llm/llm_call.py +0 -266
- mirascope-1.18.2/mkdocs.yml +0 -387
- mirascope-1.18.2/pyproject.toml +0 -233
- mirascope-1.18.2/tests/core/google/_utils/test_convert_message_params.py +0 -364
- mirascope-1.18.2/tests/llm/test_call.py +0 -298
- mirascope-1.18.2/tests/llm/test_call_response.py +0 -225
- mirascope-1.18.2/tests/llm/test_stream.py +0 -249
- mirascope-1.18.2/uv.lock +0 -6843
- {mirascope-1.18.2 → mirascope-1.18.3}/.github/CODEOWNERS +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.github/ISSUE_TEMPLATE/question.yml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.github/workflows/docs.yml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.github/workflows/label_issues.yml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.github/workflows/release.yml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.github/workflows/tests.yml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.pre-commit-config.yaml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.vscode/extensions.json +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.vscode/launch.json +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/.vscode/settings.json +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/LICENSE +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/CNAME +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/CONTRIBUTING.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/HELP.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/MIGRATE.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/WHY.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/anthropic/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/anthropic/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/anthropic/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/anthropic/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/anthropic/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/anthropic/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/anthropic/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/azure/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/azure/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/azure/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/azure/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/azure/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/azure/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/azure/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/call_factory.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/merge_decorators.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/message_param.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/metadata.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/prompt.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/structured_stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/base/toolkit.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/bedrock/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/bedrock/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/bedrock/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/bedrock/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/bedrock/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/bedrock/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/bedrock/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/cohere/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/cohere/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/cohere/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/cohere/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/cohere/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/cohere/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/cohere/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/gemini/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/gemini/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/gemini/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/gemini/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/gemini/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/gemini/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/gemini/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/google/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/google/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/google/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/google/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/google/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/google/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/google/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/groq/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/groq/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/groq/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/groq/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/groq/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/groq/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/groq/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/litellm/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/mistral/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/mistral/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/mistral/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/mistral/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/mistral/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/mistral/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/mistral/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/openai/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/openai/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/openai/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/openai/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/openai/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/openai/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/openai/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/vertex/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/vertex/call_params.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/vertex/call_response.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/vertex/call_response_chunk.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/vertex/dynamic_config.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/vertex/stream.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/core/vertex/tool.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/integrations/langfuse.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/integrations/logfire.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/integrations/middleware.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/integrations/otel.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/integrations/tenacity.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/llm/call.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/tools/system/docker_operation.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/tools/system/file_system.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/tools/web/duckduckgo.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/tools/web/httpx.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/tools/web/parse_url_content.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/api/tools/web/requests.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/engineers-should-handle-prompting-llms/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/how-to-build-a-knowledge-graph/algorithmic-bias-kg.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/how-to-build-a-knowledge-graph/example-kg-diagram.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/how-to-make-a-chatbot/autocomplete.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/how-to-make-a-chatbot/lilypad-screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/how-to-make-a-chatbot/type-hints.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/agentgpt_homepage_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/autogpt_homepage_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/flowise_homepage_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/griptape_homepage_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/guidance_github_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/haystack_homepage_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/humanloop_homepage_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/instructor_docs_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/llama_index_homepage_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/metagpt_homepage_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/mirascope_homepage_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/mirascope_response_autocomplete_suggestions.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-alternatives/priompt_github_screenshot.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-prompt-template/langchain_invoke_dict_no_error.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-prompt-template/langchain_invoke_dict_runtime_error.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-prompt-template/mirascope_prompt_fn_autocomplete.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-prompt-template/mirascope_prompt_fn_incorrect_type_error.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-prompt-template/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-rag/rag-pipeline-diagram.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-runnables/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-structured-output/mirascope_prompt_autocomplete.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-structured-output/mirascope_prompt_missing_arg.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-structured-output/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-sucks/embedding_model_diagram.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-sucks/langchain_invoke_no_type_hints.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-sucks/mirascope_stream_type_hint.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langchain-sucks/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langfuse-integration/mirascope_langfuse_response_model_trace.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langfuse-integration/mirascope_langfuse_trace.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/langfuse-integration/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llamaindex-vs-langchain/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-agents/agent-diagram.jpg +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-agents/autocomplete.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-agents/type-hints.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-applications/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-as-judge/autocomplete.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/ask-marvin-homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/autogen-homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/control-flow-homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/dify-homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/haystack-homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/langchain-homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/llama-index-homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/mirascope-homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/msft-semantic-kernel-github.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/openai-stream-type-hint.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/orkes-homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-frameworks/prompt-template-autocomplete.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-orchestration/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-pipeline/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-pipeline/stages_of_rag_pipeline.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-prompt/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/autogen_github_page.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/botkit_github_page.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/crewai_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/helicone_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/langchain_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/milvus_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/ollama_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/open_llm_github_page.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/pinecone_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/rasa_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/llm-tools/vllm_github_page.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/mirascope-v1-release/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/openai-function-calling/function_calling_diagram.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/openai-function-calling/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-chaining/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-best-practices/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-best-practices/storylines_incorrect_input_arg.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-examples/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-tools/agenta_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-tools/guidance_github_page.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-tools/haystack_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-tools/langchain_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-tools/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-tools/priompt_github_page.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-tools/prompt_hub_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-tools/promptmetheus_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-engineering-vs-fine-tuning/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-flow-vs-langchain/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-flow-vs-langchain/prompt-flow-visual.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-versioning/agenta_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-versioning/langsmith_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-versioning/og-image.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-versioning/pezzo_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/prompt-versioning/prompt_hub_homepage.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/rag-application/rag-app-diagram.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/rag-llm-example/rag-diagram.jpg +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/synthetic-data-generation/autocomplete.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/synthetic-data-generation/data-chart.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/blog/synthetic-data-generation/linting.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/brandmark.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/brandmark.svg +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/calls-type-hint.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/cloth-background.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/favicon.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/generating-synthetic-data-chart.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/langfuse-call.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/learn_flow.svg +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/logfire-response-model.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/assets/stream-attributes.png +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/.authors.yml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/index.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/advanced-prompt-engineering.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/engineers-should-handle-prompting-llms.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/how-to-build-a-knowledge-graph.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/how-to-make-a-chatbot.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/langchain-alternatives.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/langchain-prompt-template.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/langchain-rag.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/langchain-runnables.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/langchain-sucks.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/langfuse-integration.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llamaindex-vs-langchain.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llm-agents.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llm-applications.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llm-as-judge.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llm-evaluation.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llm-frameworks.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llm-orchestration.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llm-pipeline.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llm-prompt.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/llm-tools.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/mirascope-v1-release.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/openai-function-calling.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/prompt-chaining.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/prompt-engineering-best-practices.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/prompt-engineering-examples.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/prompt-engineering-tools.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/prompt-engineering-vs-fine-tuning.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/prompt-flow-vs-langchain.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/prompt-versioning.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/rag-application.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/rag-llm-example.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/blog/posts/synthetic-data-generation.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/extra/tweaks.css +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/generate_llms_txt.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/index.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/integrations/hyperdx.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/integrations/langfuse.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/integrations/logfire.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/integrations/otel.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/agents.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/async.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/calls.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/chaining.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/evals.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/extensions/custom_provider.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/extensions/middleware.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/index.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/local_models.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/mcp/client.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/mcp/server.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/prompts.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/provider_specific_features/anthropic.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/provider_specific_features/openai.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/retries.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/streams.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/learn/tools.md +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/macros.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/overrides/home.html +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/overrides/main.html +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/plugins/griffe_doclinks.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/robots.txt +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/ruff.toml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/agents/blog_writing_agent.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/agents/documentation_agent.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/agents/local_chat_with_codebase.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/agents/localized_agent.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/agents/qwant_search_agent_with_sources.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/agents/sql_agent.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/agents/web_search_agent.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/evals/evaluating_documentation_agent.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/evals/evaluating_sql_agent.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/evals/evaluating_web_search_agent.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/getting_started/dynamic_configuration_and_chaining.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/getting_started/quickstart.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/getting_started/structured_outputs.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/getting_started/tools_and_agents.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/langgraph_vs_mirascope/quickstart.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/code_generation_and_execution.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/document_segmentation.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/extract_from_pdf.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/extraction_using_vision.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/generating_captions.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/generating_synthetic_data.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/knowledge_graph.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/llm_validation_with_retries.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/named_entity_recognition.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/o1_style_thinking.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/pii_scrubbing.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/query_plan.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/removing_semantic_duplicates.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/search_with_sources.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/speech_transcription.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/support_ticket_routing.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/text_classification.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/text_summarization.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/more_advanced/text_translation.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/chain_of_verification.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/decomposed_prompting.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/demonstration_ensembling.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/diverse.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/least_to_most.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/mixture_of_reasoning.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/prompt_paraphrasing.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/reverse_chain_of_thought.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/self_consistency.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/self_refine.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/sim_to_m.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/skeleton_of_thought.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/step_back.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/chaining_based/system_to_attention.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/chain_of_thought.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/common_phrases.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/contrastive_chain_of_thought.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/emotion_prompting.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/plan_and_solve.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/rephrase_and_respond.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/rereading.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/role_prompting.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/self_ask.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/tabular_chain_of_thought.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/docs/tutorials/prompt_engineering/text_based/thread_of_thought.ipynb +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/fastapi/endpoint.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/hyperdx/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/langfuse/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/logfire/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/integrations/otel/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/human_in_the_loop/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/provider_agnostic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/provider_agnostic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/provider_agnostic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/state_management/provider_agnostic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/streaming/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/agents/tools/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/decorator/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/custom_client/dynamic_configuration/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/parallel/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/streams/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/async/tools/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/anthropic/official_sdk_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/azure/official_sdk_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/bedrock/official_sdk_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/cohere/official_sdk_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/google/official_sdk_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/groq/official_sdk_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/litellm/official_sdk_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/mistral/official_sdk_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/openai/official_sdk_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/provider_agnostic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/provider_agnostic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/provider_agnostic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/basic_usage/provider_agnostic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/call_params/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/decorator/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_client/dynamic_configuration/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/anthropic_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/azure_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/bedrock_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/cohere_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/gemini_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/google_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/groq_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/litellm_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/mistral_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/openai_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/custom_messages/vertex_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/dynamic_configuration/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/error_handling/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/multi_modal_outputs/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/calls/provider_agnostic/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/advanced_techniques/conditional_chaining.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/advanced_techniques/iterative_chaining.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/advanced_techniques/parallel_chaining.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/computed_fields/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/function_chaining/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/chaining/nested_chains/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/hardcoded/exact_match.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/hardcoded/recall_and_precision.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/hardcoded/regex.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/llm/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/panel/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/panel/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/panel/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/evals/panel/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/local_models/ollama.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/local_models/vllm.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/mcp/books.txt +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/mcp/client.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/mcp/server.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/mcp/server_decorators.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/middleware/with_saving.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/chat_history/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/chat_history/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/chat_history/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/chat_history/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/computed_fields/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/computed_fields/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/computed_fields/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/computed_fields/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/format_specifiers/float_format/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/format_specifiers/float_format/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/format_specifiers/float_format/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/format_specifiers/float_format/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/format_specifiers/lists.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/format_specifiers/parts.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/format_specifiers/texts.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_line/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_line/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_line/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_line/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/audio/pydub/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/audio/pydub/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/audio/pydub/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/audio/pydub/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/audio/wave/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/audio/wave/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/audio/wave/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/audio/wave/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/document/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/document/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/document/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/document/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/image/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/image/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/image/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multi_modal/image/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multiple_messages/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multiple_messages/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multiple_messages/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/multiple_messages/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/object_attribute_access/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/object_attribute_access/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/object_attribute_access/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/object_attribute_access/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/single_user_message/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/single_user_message/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/single_user_message/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/prompts/single_user_message/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/anthropic/caching/messages/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/anthropic/caching/messages/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/anthropic/caching/messages/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/anthropic/caching/messages/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/anthropic/caching/tools.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/openai/realtime/audio_input_output_manually.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output_manually.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output_tools.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/openai/realtime/text_input_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/openai/realtime/text_input_output_dynamic_tools.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/openai/realtime/text_input_output_tools.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/openai/structured_outputs/response_model.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/provider_specific_features/openai/structured_outputs/tools.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/response_models/basic_usage/anthropic/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/response_models/basic_usage/azure/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/response_models/basic_usage/bedrock/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/response_models/basic_usage/cohere/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/response_models/basic_usage/google/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/response_models/basic_usage/groq/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/response_models/basic_usage/litellm/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/response_models/basic_usage/mistral/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/response_models/basic_usage/openai/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/calls/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/error_reinsertion/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/fallback/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/fallback/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/fallback/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/fallback/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/fallback_retries/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/fallback_retries/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/fallback_retries/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/fallback_retries/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/streams/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/retries/tools/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/error_handling/openai/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/response_models/few_shot_examples/google → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/anthropic}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/response_models/few_shot_examples/google → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/anthropic}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/response_models/few_shot_examples/google → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/anthropic}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/response_models/few_shot_examples/google → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/anthropic}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/anthropic → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/azure}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/anthropic → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/azure}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/anthropic → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/azure}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/anthropic → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/azure}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/azure → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/bedrock}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/azure → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/bedrock}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/azure → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/bedrock}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/azure → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/bedrock}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/bedrock → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/cohere}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/bedrock → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/cohere}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/bedrock → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/cohere}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/bedrock → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/cohere}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/cohere → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/google}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/cohere → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/google}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/cohere → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/google}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/cohere → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/google}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/google/wave}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/google/wave}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/google/wave}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/google/wave}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq/pydub}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq/pydub}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq/pydub}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq/pydub}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq/wave}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq/wave}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq/wave}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/groq/wave}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm/pydub}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm/pydub}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm/pydub}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm/pydub}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm/wave}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm/wave}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm/wave}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/litellm/wave}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral/pydub}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral/pydub}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral/pydub}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/wave → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral/pydub}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral}/string_template.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral/wave}/base_message_param.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/pydub → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral/wave}/messages.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral/wave}/shorthand.py +0 -0
- {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral → mirascope-1.18.3/examples/learn/streams/multi_modal_outputs/mistral/wave}/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/multi_modal_outputs/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/multi_modal_outputs/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/multi_modal_outputs/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/streams/multi_modal_outputs/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/anthropic/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/anthropic/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/anthropic/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/anthropic/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/azure/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/azure/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/azure/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/azure/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/azure/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/azure/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/azure/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/bedrock/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/bedrock/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/bedrock/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/bedrock/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/cohere/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/cohere/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/cohere/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/cohere/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/cohere/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/cohere/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/google/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/google/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/google/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/google/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/google/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/google/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/google/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/google/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/google/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/groq/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/groq/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/groq/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/groq/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/groq/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/groq/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/groq/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/litellm/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/litellm/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/litellm/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/litellm/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/litellm/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/litellm/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/mistral/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/mistral/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/mistral/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/mistral/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/mistral/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/mistral/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/openai/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/openai/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/openai/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/openai/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/openai/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/openai/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/basic_usage/openai/official_sdk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/anthropic/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/anthropic/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/anthropic/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/azure/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/azure/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/azure/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/azure/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/azure/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/azure/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/bedrock/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/bedrock/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/bedrock/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/cohere/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/cohere/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/cohere/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/cohere/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/cohere/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/google/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/google/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/google/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/google/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/google/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/google/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/google/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/google/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/groq/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/groq/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/groq/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/groq/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/groq/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/groq/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/litellm/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/litellm/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/litellm/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/litellm/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/litellm/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/mistral/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/mistral/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/mistral/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/mistral/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/mistral/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/openai/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/openai/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/openai/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/openai/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/openai/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/few_shot_examples/openai/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/anthropic/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/anthropic/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/anthropic/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/azure/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/azure/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/azure/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/azure/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/azure/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/azure/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/bedrock/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/bedrock/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/bedrock/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/cohere/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/cohere/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/cohere/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/cohere/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/cohere/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/google/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/google/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/google/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/google/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/google/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/google/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/google/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/google/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/groq/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/groq/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/groq/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/groq/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/groq/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/groq/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/litellm/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/litellm/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/litellm/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/litellm/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/litellm/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/mistral/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/mistral/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/mistral/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/mistral/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/mistral/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/openai/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/openai/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/openai/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/openai/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/openai/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/parallel/openai/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/anthropic/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/anthropic/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/anthropic/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/azure/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/azure/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/azure/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/azure/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/azure/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/azure/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/bedrock/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/bedrock/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/bedrock/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/cohere/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/cohere/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/cohere/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/cohere/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/cohere/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/google/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/google/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/google/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/google/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/google/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/google/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/google/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/google/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/groq/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/groq/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/groq/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/groq/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/groq/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/groq/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/litellm/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/litellm/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/litellm/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/litellm/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/litellm/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/mistral/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/mistral/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/mistral/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/mistral/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/mistral/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/openai/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/openai/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/openai/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/openai/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/openai/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/partial_tool_streams/openai/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_toolkit/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/anthropic/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/anthropic/basic_usage/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/anthropic/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/anthropic/basic_usage/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/anthropic/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/anthropic/custom_config/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/anthropic/custom_config/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/anthropic/custom_config/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/azure/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/azure/basic_usage/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/azure/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/azure/basic_usage/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/azure/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/azure/custom_config/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/azure/custom_config/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/azure/custom_config/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/bedrock/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/bedrock/basic_usage/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/bedrock/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/bedrock/basic_usage/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/bedrock/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/bedrock/custom_config/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/bedrock/custom_config/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/bedrock/custom_config/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/cohere/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/cohere/basic_usage/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/cohere/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/cohere/basic_usage/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/cohere/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/cohere/custom_config/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/cohere/custom_config/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/cohere/custom_config/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/google/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/google/basic_usage/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/google/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/google/basic_usage/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/google/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/google/custom_config/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/google/custom_config/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/google/custom_config/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/groq/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/groq/basic_usage/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/groq/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/groq/basic_usage/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/groq/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/groq/custom_config/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/groq/custom_config/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/groq/custom_config/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/litellm/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/litellm/basic_usage/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/litellm/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/litellm/basic_usage/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/litellm/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/litellm/custom_config/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/litellm/custom_config/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/litellm/custom_config/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/mistral/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/mistral/basic_usage/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/mistral/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/mistral/basic_usage/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/mistral/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/mistral/custom_config/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/mistral/custom_config/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/mistral/custom_config/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/openai/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/openai/basic_usage/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/openai/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/openai/basic_usage/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/openai/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/openai/custom_config/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/openai/custom_config/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/pre_made_tools/openai/custom_config/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/anthropic/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/anthropic/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/anthropic/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/azure/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/azure/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/azure/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/azure/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/azure/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/azure/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/bedrock/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/bedrock/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/bedrock/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/cohere/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/cohere/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/cohere/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/cohere/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/cohere/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/google/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/google/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/google/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/google/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/google/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/google/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/google/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/google/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/groq/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/groq/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/groq/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/groq/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/groq/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/groq/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/litellm/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/litellm/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/litellm/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/litellm/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/litellm/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/mistral/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/mistral/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/mistral/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/mistral/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/mistral/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/openai/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/openai/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/openai/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/openai/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/openai/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/streams/openai/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/anthropic/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/anthropic/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/anthropic/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/azure/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/azure/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/azure/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/azure/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/azure/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/azure/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/bedrock/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/bedrock/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/bedrock/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/cohere/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/cohere/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/cohere/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/cohere/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/cohere/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/google/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/google/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/google/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/google/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/google/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/google/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/google/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/google/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/groq/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/groq/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/groq/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/groq/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/groq/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/groq/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/litellm/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/litellm/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/litellm/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/litellm/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/litellm/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/mistral/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/mistral/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/mistral/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/mistral/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/mistral/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/openai/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/openai/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/openai/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/openai/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/openai/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/tool_message_params/openai/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/anthropic/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/anthropic/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/anthropic/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/azure/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/azure/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/azure/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/azure/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/bedrock/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/bedrock/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/bedrock/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/cohere/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/cohere/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/cohere/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/cohere/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/google/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/google/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/google/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/google/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/groq/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/groq/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/groq/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/groq/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/litellm/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/litellm/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/litellm/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/litellm/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/mistral/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/mistral/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/mistral/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/mistral/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/openai/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/openai/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/openai/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/toolkit/openai/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/anthropic/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/anthropic/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/anthropic/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/azure/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/azure/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/azure/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/azure/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/azure/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/azure/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/bedrock/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/bedrock/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/bedrock/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/cohere/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/cohere/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/cohere/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/cohere/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/cohere/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/google/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/google/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/google/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/google/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/google/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/google/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/google/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/google/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/groq/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/groq/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/groq/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/groq/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/groq/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/groq/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/litellm/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/litellm/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/litellm/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/litellm/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/litellm/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/mistral/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/mistral/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/mistral/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/mistral/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/mistral/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/openai/base_tool/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/openai/base_tool/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/openai/function/base_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/openai/function/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/openai/function/shorthand.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/learn/tools/validation/openai/function/string_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/examples/ruff.toml +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/openai/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/openai/realtime/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/openai/realtime/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/openai/realtime/_utils/_audio.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/openai/realtime/_utils/_protocols.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/openai/realtime/realtime.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/openai/realtime/recording.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/openai/realtime/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/chunkers/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/chunkers/base_chunker.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/chunkers/text_chunker.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/document.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/embedders.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/embedding_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/embedding_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/query_results.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/vectorstore_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/base/vectorstores.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/chroma/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/chroma/types.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/chroma/vectorstores.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/cohere/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/cohere/embedders.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/cohere/embedding_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/cohere/embedding_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/cohere/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/openai/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/openai/embedders.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/openai/embedding_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/openai/embedding_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/openai/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/pinecone/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/pinecone/types.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/pinecone/vectorstores.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/weaviate/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/weaviate/types.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/beta/rag/weaviate/vectorstores.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/anthropic/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/_get_credential.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/azure/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_call_factory.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_create.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_extract.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_extract_with_tools.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_partial.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_base_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_base_type.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_convert_base_model_to_base_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_convert_base_type_to_base_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_convert_function_to_base_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_convert_messages_to_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_convert_provider_finish_reason_to_finish_reason.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_default_tool_docstring.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_extract_tool_return.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_fn_is_async.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_format_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_audio_type.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_common_usage.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_document_type.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_dynamic_configuration.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_fields_from_call_args.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_fn_args.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_image_type.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_metadata.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_possible_user_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_prompt_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_template_values.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_template_variables.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_get_unsupported_tool_config_keys.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_is_prompt_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_json_mode_content.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_messages_decorator.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_parse_content_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_parse_prompt_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_pil_image_to_bytes.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_protocols.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/_utils/_setup_extract_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/from_call_args.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/merge_decorators.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/metadata.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/prompt.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/response_model_config_dict.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/stream_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/structured_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/toolkit.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/base/types.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_types.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/bedrock/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_types.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/cohere/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/gemini/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/google/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/groq/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/litellm/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/mistral/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/openai/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_call_kwargs.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/_utils/_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/dynamic_config.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/core/vertex/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/_middleware_factory.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/langfuse/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/langfuse/_utils.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/langfuse/_with_langfuse.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/logfire/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/logfire/_utils.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/logfire/_with_logfire.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/otel/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/otel/_utils.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/otel/_with_hyperdx.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/otel/_with_otel.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/integrations/tenacity.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/llm/_protocols.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/llm/_response_metaclass.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/llm/call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/llm/llm_override.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/llm/stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/llm/tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/mcp/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/mcp/client.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/mcp/server.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/mcp/tools.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/py.typed +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/retries/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/retries/fallback.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/retries/tenacity.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/base.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/system/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/system/_docker_operation.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/system/_file_system.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/web/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/web/_duckduckgo.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/web/_httpx.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/web/_parse_url_content.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/tools/web/_requests.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/anthropic.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/base/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/base/calls.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/base/extractors.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/base/ops_utils.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/base/prompts.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/base/types.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/base/utils.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/mirascope/v0/openai.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/conftest.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/anthropic/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/_utils/test_get_credential.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/azure/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_base_type.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_convert_base_model_to_base_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_convert_base_type_to_base_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_convert_function_to_base_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_convert_messages_to_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_extract_tool_return.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_format_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_audio_type.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_create_fn_or_async_create_fn.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_document_type.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_dynamic_configuration.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_fields_from_call_args.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_fn_args.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_image_type.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_metadata.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_possible_user_message_param.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_prompt_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_template_values.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_template_variables.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_get_unsupported_tool_config_keys.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_json_mode_content.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_message_decorator.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_parse_content_template.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_parse_prompt_messages.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_pil_image_to_bytes.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/_utils/test_setup_extract_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/conftest.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_call_factory.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_create.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_extract.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_extract_with_tools.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_merge_decorators.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_partial.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_prompt.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_structured_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/base/test_toolkit.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/conftest.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/bedrock/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/cohere/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/gemini/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/google/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/groq/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/litellm/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/litellm/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/litellm/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/litellm/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/litellm/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/litellm/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/mistral/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/openai/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/_utils/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/test_call.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/test_call_response.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/test_stream.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/core/vertex/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/langfuse/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/langfuse/test_utils.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/langfuse/test_with_langfuse.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/logfire/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/logfire/test_utils.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/logfire/test_with_logfire.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/otel/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/otel/test_utils.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/otel/test_with_hyperdx.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/otel/test_with_otel.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/integrations/test_middleware_factory.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/llm/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/llm/test_call_response_chunk.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/llm/test_override.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/llm/test_response_metaclass.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/llm/test_tool.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/mcp/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/mcp/test_mcp_client.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/mcp/test_mcp_server.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/retries/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/retries/test_fallback.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/retries/test_tenacity.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/tools/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/tools/test_base.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/tools/test_docker_operation_toolkit.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/tools/test_filesystem_toolkit.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/tools/web/__init__.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/tools/web/test_duckduckgo.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/tools/web/test_httpx.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/tools/web/test_parse_url_content.py +0 -0
- {mirascope-1.18.2 → mirascope-1.18.3}/tests/tools/web/test_requests.py +0 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
name: lint
|
|
2
|
+
run-name: ${{ github.actor }} is linting the package
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
- release/*
|
|
9
|
+
pull_request:
|
|
10
|
+
branches:
|
|
11
|
+
- main
|
|
12
|
+
- release/*
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
lints:
|
|
16
|
+
name: Ruff, Pyright, and Codespell
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v3
|
|
21
|
+
- uses: codespell-project/actions-codespell@v2
|
|
22
|
+
with:
|
|
23
|
+
exclude_file: "docs/tutorials/evals/evaluating_web_search_agent.ipynb,docs/tutorials/agents/web_search_agent.ipynb,docs/tutorials/more_advanced/knowledge_graph.ipynb"
|
|
24
|
+
- name: Set up uv
|
|
25
|
+
run: curl -LsSf https://astral.sh/uv/0.5.6/install.sh | sh
|
|
26
|
+
|
|
27
|
+
- name: Set Up Python Environment
|
|
28
|
+
run: uv python install 3.11
|
|
29
|
+
|
|
30
|
+
- name: Restore uv cache
|
|
31
|
+
uses: actions/cache@v4
|
|
32
|
+
with:
|
|
33
|
+
path: /tmp/.uv-cache
|
|
34
|
+
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
|
|
35
|
+
restore-keys: |
|
|
36
|
+
uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
|
|
37
|
+
uv-${{ runner.os }}
|
|
38
|
+
|
|
39
|
+
- name: Install the project
|
|
40
|
+
run: uv sync --all-extras --dev
|
|
41
|
+
|
|
42
|
+
- name: Run Ruff
|
|
43
|
+
run: uv run ruff check .
|
|
44
|
+
|
|
45
|
+
- name: Run Pyright
|
|
46
|
+
run: uv run pyright .
|
|
47
|
+
|
|
48
|
+
- name: Minimize uv cache
|
|
49
|
+
run: uv cache prune --ci
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
# pyenv
|
|
2
|
+
.python-version
|
|
3
|
+
.python-versions
|
|
4
|
+
|
|
5
|
+
# Byte-compiled / optimized / DLL files
|
|
6
|
+
__pycache__/
|
|
7
|
+
*.py[cod]
|
|
8
|
+
*$py.class
|
|
9
|
+
|
|
10
|
+
# Mac
|
|
11
|
+
.DS_Store
|
|
12
|
+
|
|
13
|
+
# C extensions
|
|
14
|
+
*.so
|
|
15
|
+
|
|
16
|
+
# Distribution / packaging
|
|
17
|
+
.Python
|
|
18
|
+
build/
|
|
19
|
+
develop-eggs/
|
|
20
|
+
dist/
|
|
21
|
+
downloads/
|
|
22
|
+
eggs/
|
|
23
|
+
.eggs/
|
|
24
|
+
lib/
|
|
25
|
+
lib64/
|
|
26
|
+
parts/
|
|
27
|
+
sdist/
|
|
28
|
+
var/
|
|
29
|
+
wheels/
|
|
30
|
+
share/python-wheels/
|
|
31
|
+
*.egg-info/
|
|
32
|
+
.installed.cfg
|
|
33
|
+
*.egg
|
|
34
|
+
MANIFEST
|
|
35
|
+
|
|
36
|
+
# PyInstaller
|
|
37
|
+
# Usually these files are written by a python script from a template
|
|
38
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
39
|
+
*.manifest
|
|
40
|
+
*.spec
|
|
41
|
+
|
|
42
|
+
# Installer logs
|
|
43
|
+
pip-log.txt
|
|
44
|
+
pip-delete-this-directory.txt
|
|
45
|
+
|
|
46
|
+
# Unit test / coverage reports
|
|
47
|
+
htmlcov/
|
|
48
|
+
.tox/
|
|
49
|
+
.nox/
|
|
50
|
+
.coverage
|
|
51
|
+
.coverage.*
|
|
52
|
+
.cache
|
|
53
|
+
nosetests.xml
|
|
54
|
+
coverage.xml
|
|
55
|
+
*.cover
|
|
56
|
+
*.py,cover
|
|
57
|
+
.hypothesis/
|
|
58
|
+
.pytest_cache/
|
|
59
|
+
cover/
|
|
60
|
+
|
|
61
|
+
# Translations
|
|
62
|
+
*.mo
|
|
63
|
+
*.pot
|
|
64
|
+
|
|
65
|
+
# Django stuff:
|
|
66
|
+
*.log
|
|
67
|
+
local_settings.py
|
|
68
|
+
db.sqlite3
|
|
69
|
+
db.sqlite3-journal
|
|
70
|
+
|
|
71
|
+
# Flask stuff:
|
|
72
|
+
instance/
|
|
73
|
+
.webassets-cache
|
|
74
|
+
|
|
75
|
+
# Scrapy stuff:
|
|
76
|
+
.scrapy
|
|
77
|
+
|
|
78
|
+
# Sphinx documentation
|
|
79
|
+
docs/_build/
|
|
80
|
+
|
|
81
|
+
# PyBuilder
|
|
82
|
+
.pybuilder/
|
|
83
|
+
target/
|
|
84
|
+
|
|
85
|
+
# Jupyter Notebook
|
|
86
|
+
.ipynb_checkpoints
|
|
87
|
+
|
|
88
|
+
# IPython
|
|
89
|
+
profile_default/
|
|
90
|
+
ipython_config.py
|
|
91
|
+
|
|
92
|
+
# pyenv
|
|
93
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
94
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
95
|
+
# .python-version
|
|
96
|
+
|
|
97
|
+
# pipenv
|
|
98
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
99
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
100
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
101
|
+
# install all needed dependencies.
|
|
102
|
+
#Pipfile.lock
|
|
103
|
+
|
|
104
|
+
# poetry
|
|
105
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
106
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
107
|
+
# commonly ignored for libraries.
|
|
108
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
109
|
+
#poetry.lock
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
#pdm.lock
|
|
114
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
115
|
+
# in version control.
|
|
116
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
117
|
+
.pdm.toml
|
|
118
|
+
|
|
119
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
120
|
+
__pypackages__/
|
|
121
|
+
|
|
122
|
+
# Celery stuff
|
|
123
|
+
celerybeat-schedule
|
|
124
|
+
celerybeat.pid
|
|
125
|
+
|
|
126
|
+
# SageMath parsed files
|
|
127
|
+
*.sage.py
|
|
128
|
+
|
|
129
|
+
# Environments
|
|
130
|
+
.env
|
|
131
|
+
.venv
|
|
132
|
+
env/
|
|
133
|
+
venv/
|
|
134
|
+
ENV/
|
|
135
|
+
env.bak/
|
|
136
|
+
venv.bak/
|
|
137
|
+
|
|
138
|
+
# Spyder project settings
|
|
139
|
+
.spyderproject
|
|
140
|
+
.spyproject
|
|
141
|
+
|
|
142
|
+
# Rope project settings
|
|
143
|
+
.ropeproject
|
|
144
|
+
|
|
145
|
+
# mkdocs documentation
|
|
146
|
+
/site
|
|
147
|
+
docs/**/*.html.md
|
|
148
|
+
docs/llms.txt
|
|
149
|
+
build/snippets/
|
|
150
|
+
|
|
151
|
+
# mypy
|
|
152
|
+
.mypy_cache/
|
|
153
|
+
.dmypy.json
|
|
154
|
+
dmypy.json
|
|
155
|
+
|
|
156
|
+
# Pyre type checker
|
|
157
|
+
.pyre/
|
|
158
|
+
|
|
159
|
+
# pytype static type analyzer
|
|
160
|
+
.pytype/
|
|
161
|
+
|
|
162
|
+
# Cython debug symbols
|
|
163
|
+
cython_debug/
|
|
164
|
+
|
|
165
|
+
# PyCharm
|
|
166
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
167
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
168
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
169
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
170
|
+
#.idea/
|
|
171
|
+
|
|
172
|
+
#sqlite
|
|
173
|
+
database.db
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mirascope
|
|
3
|
+
Version: 1.18.3
|
|
4
|
+
Summary: LLM abstractions that aren't obstructions
|
|
5
|
+
Project-URL: Homepage, https://mirascope.com
|
|
6
|
+
Project-URL: Documentation, https://mirascope.com/WELCOME
|
|
7
|
+
Project-URL: Repository, https://github.com/Mirascope/mirascope
|
|
8
|
+
Project-URL: Issues, https://github.com/Mirascope/mirascope/issues
|
|
9
|
+
Project-URL: Changelog, https://github.com/Mirascope/mirascope/releases
|
|
10
|
+
Author-email: William Bakst <william@mirascope.com>, Brendan Kao <brendan@mirascope.com>
|
|
11
|
+
Maintainer-email: William Bakst <william@mirascope.com>
|
|
12
|
+
License: MIT License
|
|
13
|
+
|
|
14
|
+
Copyright (c) 2023 Mirascope, Inc.
|
|
15
|
+
|
|
16
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
17
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
18
|
+
in the Software without restriction, including without limitation the rights
|
|
19
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
20
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
21
|
+
furnished to do so, subject to the following conditions:
|
|
22
|
+
|
|
23
|
+
The above copyright notice and this permission notice shall be included in all
|
|
24
|
+
copies or substantial portions of the Software.
|
|
25
|
+
|
|
26
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
27
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
28
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
29
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
30
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
31
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
32
|
+
SOFTWARE.
|
|
33
|
+
License-File: LICENSE
|
|
34
|
+
Keywords: agents,anthropic,artificial intelligence,bedrock,cohere,developer tools,gemini,groq,llm,llm tools,mistral,openai,prompt engineering,pydantic,vertex
|
|
35
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
36
|
+
Classifier: Framework :: Pydantic :: 2
|
|
37
|
+
Classifier: Intended Audience :: Developers
|
|
38
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
39
|
+
Classifier: Programming Language :: Python :: 3
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
42
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
43
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
44
|
+
Classifier: Topic :: File Formats :: JSON
|
|
45
|
+
Classifier: Topic :: File Formats :: JSON :: JSON Schema
|
|
46
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
47
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
48
|
+
Requires-Python: >=3.10
|
|
49
|
+
Requires-Dist: docstring-parser<1.0,>=0.15
|
|
50
|
+
Requires-Dist: jiter>=0.5.0
|
|
51
|
+
Requires-Dist: pydantic<3.0,>=2.7.4
|
|
52
|
+
Requires-Dist: typing-extensions>=4.10.0
|
|
53
|
+
Provides-Extra: anthropic
|
|
54
|
+
Requires-Dist: anthropic<1.0,>=0.29.0; extra == 'anthropic'
|
|
55
|
+
Provides-Extra: azure
|
|
56
|
+
Requires-Dist: aiohttp<4.0,>=3.10.5; extra == 'azure'
|
|
57
|
+
Requires-Dist: azure-ai-inference<2.0,>=1.0.0b4; extra == 'azure'
|
|
58
|
+
Provides-Extra: bedrock
|
|
59
|
+
Requires-Dist: aioboto3<14,>=13.1.1; extra == 'bedrock'
|
|
60
|
+
Requires-Dist: boto3-stubs[bedrock-runtime]<2,>=1.35.32; extra == 'bedrock'
|
|
61
|
+
Requires-Dist: boto3<2,>=1.34.70; extra == 'bedrock'
|
|
62
|
+
Requires-Dist: types-aioboto3[bedrock-runtime]<14,>=13.1.1; extra == 'bedrock'
|
|
63
|
+
Provides-Extra: cohere
|
|
64
|
+
Requires-Dist: cohere<6,>=5.5.8; extra == 'cohere'
|
|
65
|
+
Provides-Extra: gemini
|
|
66
|
+
Requires-Dist: google-generativeai<1,>=0.4.0; extra == 'gemini'
|
|
67
|
+
Requires-Dist: pillow<11,>=10.4.0; extra == 'gemini'
|
|
68
|
+
Provides-Extra: google
|
|
69
|
+
Requires-Dist: google-genai<2,>=1.2.0; extra == 'google'
|
|
70
|
+
Requires-Dist: pillow<11,>=10.4.0; extra == 'google'
|
|
71
|
+
Provides-Extra: groq
|
|
72
|
+
Requires-Dist: groq<1,>=0.9.0; extra == 'groq'
|
|
73
|
+
Provides-Extra: hyperdx
|
|
74
|
+
Requires-Dist: hyperdx-opentelemetry<1,>=0.1.0; extra == 'hyperdx'
|
|
75
|
+
Provides-Extra: langfuse
|
|
76
|
+
Requires-Dist: langfuse<3,>=2.30.0; extra == 'langfuse'
|
|
77
|
+
Provides-Extra: litellm
|
|
78
|
+
Requires-Dist: litellm<2,>=1.42.12; extra == 'litellm'
|
|
79
|
+
Provides-Extra: logfire
|
|
80
|
+
Requires-Dist: logfire<4,>=1.0.0; extra == 'logfire'
|
|
81
|
+
Provides-Extra: mcp
|
|
82
|
+
Requires-Dist: mcp>=1.0.0; extra == 'mcp'
|
|
83
|
+
Provides-Extra: mistral
|
|
84
|
+
Requires-Dist: mistralai<2,>=1.0.0; extra == 'mistral'
|
|
85
|
+
Provides-Extra: openai
|
|
86
|
+
Requires-Dist: openai<2,>=1.6.0; extra == 'openai'
|
|
87
|
+
Provides-Extra: opentelemetry
|
|
88
|
+
Requires-Dist: opentelemetry-api<2,>=1.22.0; extra == 'opentelemetry'
|
|
89
|
+
Requires-Dist: opentelemetry-sdk<2,>=1.22.0; extra == 'opentelemetry'
|
|
90
|
+
Provides-Extra: realtime
|
|
91
|
+
Requires-Dist: numpy<2,>=1.26.4; extra == 'realtime'
|
|
92
|
+
Requires-Dist: pydub<1,>=0.25.1; extra == 'realtime'
|
|
93
|
+
Requires-Dist: sounddevice<1,>=0.5.1; extra == 'realtime'
|
|
94
|
+
Requires-Dist: websockets<14,>=13.1; extra == 'realtime'
|
|
95
|
+
Provides-Extra: tenacity
|
|
96
|
+
Requires-Dist: tenacity<9,>=8.4.2; extra == 'tenacity'
|
|
97
|
+
Provides-Extra: vertex
|
|
98
|
+
Requires-Dist: google-cloud-aiplatform<2,>=1.38.0; extra == 'vertex'
|
|
99
|
+
Description-Content-Type: text/markdown
|
|
100
|
+
|
|
101
|
+
<div align="center" justiry="start">
|
|
102
|
+
<a href="https://mirascope.com">
|
|
103
|
+
<img align="bottom" src="https://github.com/Mirascope/mirascope/assets/99370834/e403d7ee-f8bc-4df1-b2d0-33763f021c89" alt="Frog Logo" width="84"/><br><img align="bottom" src="https://uploads-ssl.webflow.com/65a6fd6a1c3b2704d6217d3d/65b5674e9ceef563dc57eb11_Medium%20length%20hero%20headline%20goes%20here.svg" width="400" alt="Mirascope"/>
|
|
104
|
+
</a>
|
|
105
|
+
</div>
|
|
106
|
+
|
|
107
|
+
<p align="center">
|
|
108
|
+
<a href="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml" target="_blank"><img src="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml/badge.svg?branch=main" alt="Tests"/></a>
|
|
109
|
+
<a href="https://codecov.io/github/Mirascope/mirascope" target="_blank"><img src="https://codecov.io/github/Mirascope/mirascope/graph/badge.svg?token=HAEAWT3KC9" alt="Coverage"/></a>
|
|
110
|
+
<a href="https://mirascope.com/WELCOME" target="_blank"><img src="https://img.shields.io/badge/docs-available-brightgreen" alt="Docs"/></a>
|
|
111
|
+
<a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/v/mirascope.svg" alt="PyPI Version"/></a>
|
|
112
|
+
<a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/pyversions/mirascope.svg" alt="Stars"/></a>
|
|
113
|
+
<a href="https://github.com/Mirascope/mirascope/blog/dev/LICENSE"><img src="https://img.shields.io/github/license/Mirascope/mirascope.svg" alt="License"/></a>
|
|
114
|
+
<a href="https://github.com/Mirascope/mirascope/stargazers" target="_blank"><img src="https://img.shields.io/github/stars/Mirascope/mirascope.svg" alt="Stars"/></a>
|
|
115
|
+
</p>
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
Mirascope is a powerful, flexible, and user-friendly library that simplifies the process of working with LLMs through a unified interface that works across various supported providers, including [OpenAI](https://openai.com/), [Anthropic](https://www.anthropic.com/), [Mistral](https://mistral.ai/), [Google (Gemini/Vertex)](https://googleapis.github.io/python-genai/), [Groq](https://groq.com/), [Cohere](https://cohere.com/), [LiteLLM](https://www.litellm.ai/), [Azure AI](https://azure.microsoft.com/en-us/solutions/ai), and [Bedrock](https://aws.amazon.com/bedrock/).
|
|
120
|
+
|
|
121
|
+
Whether you're generating text, extracting structured information, or developing complex AI-driven agent systems, Mirascope provides the tools you need to streamline your development process and create powerful, robust applications.
|
|
122
|
+
|
|
123
|
+
## 30 Second Quickstart
|
|
124
|
+
|
|
125
|
+
Install Mirascope, specifying the provider(s) you intend to use, and set your API key:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
pip install "mirascope[openai]"
|
|
129
|
+
export OPENAI_API_KEY=XXXXX
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Make your first call to an LLM to extract the title and author of a book from unstructured text:
|
|
133
|
+
|
|
134
|
+
```python
|
|
135
|
+
from mirascope import llm
|
|
136
|
+
from pydantic import BaseModel
|
|
137
|
+
|
|
138
|
+
class Book(BaseModel):
|
|
139
|
+
title: str
|
|
140
|
+
author: str
|
|
141
|
+
|
|
142
|
+
@llm.call(provider="openai", model="gpt-4o-mini", response_model=Book)
|
|
143
|
+
def extract_book(text: str) -> str:
|
|
144
|
+
return f"Extract {text}"
|
|
145
|
+
|
|
146
|
+
book = extract_book("The Name of the Wind by Patrick Rothfuss")
|
|
147
|
+
assert isinstance(book, Book)
|
|
148
|
+
print(book)
|
|
149
|
+
# Output: title='The Name of the Wind' author='Patrick Rothfuss'
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
## Tutorials
|
|
153
|
+
|
|
154
|
+
Check out our [quickstart tutorial](https://mirascope.com/tutorials/getting_started/quickstart) and many other tutorials for an interactive way to getting started with Mirascope.
|
|
155
|
+
|
|
156
|
+
## Usage
|
|
157
|
+
|
|
158
|
+
For a complete guide on how to use all of the various features Mirascope has to offer, read through our [Learn](https://mirascope.com/learn) documentation.
|
|
159
|
+
|
|
160
|
+
## Versioning
|
|
161
|
+
|
|
162
|
+
Mirascope uses [Semantic Versioning](https://semver.org/).
|
|
163
|
+
|
|
164
|
+
## Licence
|
|
165
|
+
|
|
166
|
+
This project is licensed under the terms of the [MIT License](https://github.com/Mirascope/mirascope/blob/dev/LICENSE).
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<div align="center" justiry="start">
|
|
2
|
+
<a href="https://mirascope.com">
|
|
3
|
+
<img align="bottom" src="https://github.com/Mirascope/mirascope/assets/99370834/e403d7ee-f8bc-4df1-b2d0-33763f021c89" alt="Frog Logo" width="84"/><br><img align="bottom" src="https://uploads-ssl.webflow.com/65a6fd6a1c3b2704d6217d3d/65b5674e9ceef563dc57eb11_Medium%20length%20hero%20headline%20goes%20here.svg" width="400" alt="Mirascope"/>
|
|
4
|
+
</a>
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<a href="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml" target="_blank"><img src="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml/badge.svg?branch=main" alt="Tests"/></a>
|
|
9
|
+
<a href="https://codecov.io/github/Mirascope/mirascope" target="_blank"><img src="https://codecov.io/github/Mirascope/mirascope/graph/badge.svg?token=HAEAWT3KC9" alt="Coverage"/></a>
|
|
10
|
+
<a href="https://mirascope.com/WELCOME" target="_blank"><img src="https://img.shields.io/badge/docs-available-brightgreen" alt="Docs"/></a>
|
|
11
|
+
<a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/v/mirascope.svg" alt="PyPI Version"/></a>
|
|
12
|
+
<a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/pyversions/mirascope.svg" alt="Stars"/></a>
|
|
13
|
+
<a href="https://github.com/Mirascope/mirascope/blog/dev/LICENSE"><img src="https://img.shields.io/github/license/Mirascope/mirascope.svg" alt="License"/></a>
|
|
14
|
+
<a href="https://github.com/Mirascope/mirascope/stargazers" target="_blank"><img src="https://img.shields.io/github/stars/Mirascope/mirascope.svg" alt="Stars"/></a>
|
|
15
|
+
</p>
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
Mirascope is a powerful, flexible, and user-friendly library that simplifies the process of working with LLMs through a unified interface that works across various supported providers, including [OpenAI](https://openai.com/), [Anthropic](https://www.anthropic.com/), [Mistral](https://mistral.ai/), [Google (Gemini/Vertex)](https://googleapis.github.io/python-genai/), [Groq](https://groq.com/), [Cohere](https://cohere.com/), [LiteLLM](https://www.litellm.ai/), [Azure AI](https://azure.microsoft.com/en-us/solutions/ai), and [Bedrock](https://aws.amazon.com/bedrock/).
|
|
20
|
+
|
|
21
|
+
Whether you're generating text, extracting structured information, or developing complex AI-driven agent systems, Mirascope provides the tools you need to streamline your development process and create powerful, robust applications.
|
|
22
|
+
|
|
23
|
+
## 30 Second Quickstart
|
|
24
|
+
|
|
25
|
+
Install Mirascope, specifying the provider(s) you intend to use, and set your API key:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install "mirascope[openai]"
|
|
29
|
+
export OPENAI_API_KEY=XXXXX
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Make your first call to an LLM to extract the title and author of a book from unstructured text:
|
|
33
|
+
|
|
34
|
+
```python
|
|
35
|
+
from mirascope import llm
|
|
36
|
+
from pydantic import BaseModel
|
|
37
|
+
|
|
38
|
+
class Book(BaseModel):
|
|
39
|
+
title: str
|
|
40
|
+
author: str
|
|
41
|
+
|
|
42
|
+
@llm.call(provider="openai", model="gpt-4o-mini", response_model=Book)
|
|
43
|
+
def extract_book(text: str) -> str:
|
|
44
|
+
return f"Extract {text}"
|
|
45
|
+
|
|
46
|
+
book = extract_book("The Name of the Wind by Patrick Rothfuss")
|
|
47
|
+
assert isinstance(book, Book)
|
|
48
|
+
print(book)
|
|
49
|
+
# Output: title='The Name of the Wind' author='Patrick Rothfuss'
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Tutorials
|
|
53
|
+
|
|
54
|
+
Check out our [quickstart tutorial](https://mirascope.com/tutorials/getting_started/quickstart) and many other tutorials for an interactive way to getting started with Mirascope.
|
|
55
|
+
|
|
56
|
+
## Usage
|
|
57
|
+
|
|
58
|
+
For a complete guide on how to use all of the various features Mirascope has to offer, read through our [Learn](https://mirascope.com/learn) documentation.
|
|
59
|
+
|
|
60
|
+
## Versioning
|
|
61
|
+
|
|
62
|
+
Mirascope uses [Semantic Versioning](https://semver.org/).
|
|
63
|
+
|
|
64
|
+
## Licence
|
|
65
|
+
|
|
66
|
+
This project is licensed under the terms of the [MIT License](https://github.com/Mirascope/mirascope/blob/dev/LICENSE).
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
# Mirascope
|
|
2
|
+
|
|
3
|
+
<p align="left">
|
|
4
|
+
<a href="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml" target="_blank"><img src="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml/badge.svg?branch=main" alt="Tests"/></a>
|
|
5
|
+
<a href="https://codecov.io/github/Mirascope/mirascope" target="_blank"><img src="https://codecov.io/github/Mirascope/mirascope/graph/badge.svg?token=HAEAWT3KC9" alt="Coverage"/></a>
|
|
6
|
+
<a href="https://mirascope.com/WELCOME" target="_blank"><img src="https://img.shields.io/badge/docs-available-brightgreen" alt="Docs"/></a>
|
|
7
|
+
<a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/v/mirascope.svg" alt="PyPI Version"/></a>
|
|
8
|
+
<a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/pyversions/mirascope.svg" alt="Stars"/></a>
|
|
9
|
+
<a href="https://github.com/Mirascope/mirascope/blob/dev/LICENSE"><img src="https://img.shields.io/github/license/Mirascope/mirascope.svg" alt="License"/></a>
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
Mirascope is a powerful, flexible, and user-friendly library that simplifies the process of working with LLMs through a unified interface that works across various supported providers, including [OpenAI](https://openai.com/), [Anthropic](https://www.anthropic.com/), [Mistral](https://mistral.ai/), [Gemini](https://gemini.google.com), [Groq](https://groq.com/), [Cohere](https://cohere.com/), [LiteLLM](https://www.litellm.ai/), [Azure AI](https://azure.microsoft.com/en-us/solutions/ai), [Vertex AI](https://cloud.google.com/vertex-ai), and [Bedrock](https://aws.amazon.com/bedrock/).
|
|
13
|
+
|
|
14
|
+
Whether you're generating text, extracting structured information, or developing complex AI-driven agent systems, Mirascope provides the tools you need to streamline your development process and create powerful, robust applications.
|
|
15
|
+
|
|
16
|
+
[:material-lightbulb: Why Use Mirascope](./WHY.md){: .md-button }
|
|
17
|
+
[:material-account-group: Join Our Community](https://join.slack.com/t/mirascope-community/shared_invite/zt-2ilqhvmki-FB6LWluInUCkkjYD3oSjNA){: .md-button }
|
|
18
|
+
[:material-star: Star the Repo](https://github.com/Mirascope/mirascope){: .md-button }
|
|
19
|
+
|
|
20
|
+
## 30 Second Quickstart
|
|
21
|
+
|
|
22
|
+
Install Mirascope, specifying the provider(s) you intend to use, and set your API key:
|
|
23
|
+
|
|
24
|
+
{% set operating_systems = ["MacOS / Linux", "Windows"] %}
|
|
25
|
+
{% for os in operating_systems %}
|
|
26
|
+
=== "{{ os }}"
|
|
27
|
+
|
|
28
|
+
{% for provider in supported_llm_providers %}
|
|
29
|
+
=== "{{ provider }}"
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install "mirascope[{{ provider | provider_dir }}]"
|
|
33
|
+
{% if provider == "Gemini" %}
|
|
34
|
+
{% if os == "Windows" %}set GOOGLE_API_KEY=XXXXX
|
|
35
|
+
{% else %}export GOOGLE_API_KEY=XXXXX
|
|
36
|
+
{% endif %}
|
|
37
|
+
{% elif provider == "Cohere" %}
|
|
38
|
+
{% if os == "Windows" %}set CO_API_KEY=XXXXX
|
|
39
|
+
{% else %}export CO_API_KEY=XXXXX
|
|
40
|
+
{% endif %}
|
|
41
|
+
{% elif provider == "LiteLLM" %}
|
|
42
|
+
{% if os == "Windows" %}set OPENAI_API_KEY=XXXXX
|
|
43
|
+
{% else %}export OPENAI_API_KEY=XXXXX
|
|
44
|
+
{% endif %}
|
|
45
|
+
{% elif provider == "Azure AI" %}
|
|
46
|
+
{% if os == "Windows" %}set AZURE_INFERENCE_ENDPOINT=XXXXX
|
|
47
|
+
set AZURE_INFERENCE_CREDENTIAL=XXXXX
|
|
48
|
+
{% else %}export AZURE_INFERENCE_ENDPOINT=XXXXX
|
|
49
|
+
export AZURE_INFERENCE_CREDENTIAL=XXXXX
|
|
50
|
+
{% endif %}
|
|
51
|
+
{% elif provider == "Vertex AI" %}
|
|
52
|
+
gcloud init
|
|
53
|
+
gcloud auth application-default login
|
|
54
|
+
{% elif provider == "Bedrock" %}
|
|
55
|
+
aws configure
|
|
56
|
+
{% else %}
|
|
57
|
+
{% if os == "Windows" %}set {{ upper(provider | provider_dir) }}_API_KEY=XXXXX
|
|
58
|
+
{% else %}export {{ upper(provider | provider_dir) }}_API_KEY=XXXXX
|
|
59
|
+
{% endif %}
|
|
60
|
+
{% endif %}
|
|
61
|
+
```
|
|
62
|
+
{% endfor %}
|
|
63
|
+
{% endfor %}
|
|
64
|
+
|
|
65
|
+
Make your first call to an LLM to extract the title and author of a book from the given text:
|
|
66
|
+
|
|
67
|
+
!!! mira "Mirascope"
|
|
68
|
+
|
|
69
|
+
{% for method, method_title in zip(prompt_writing_methods, prompt_writing_method_titles) %}
|
|
70
|
+
=== "{{ method_title }}"
|
|
71
|
+
|
|
72
|
+
{% for provider in supported_llm_providers %}
|
|
73
|
+
=== "{{ provider }}"
|
|
74
|
+
|
|
75
|
+
```python hl_lines="10 15 17"
|
|
76
|
+
--8<-- "build/snippets/learn/response_models/basic_usage/{{ provider | provider_dir }}/{{ method }}.py:3:7"
|
|
77
|
+
--8<-- "build/snippets/learn/response_models/basic_usage/{{ provider | provider_dir }}/{{ method }}.py:10:21"
|
|
78
|
+
```
|
|
79
|
+
{% endfor %}
|
|
80
|
+
|
|
81
|
+
{% endfor %}
|
|
82
|
+
|
|
83
|
+
??? note "Official SDK"
|
|
84
|
+
|
|
85
|
+
{% for provider in supported_llm_providers %}
|
|
86
|
+
=== "{{ provider }}"
|
|
87
|
+
|
|
88
|
+
{% if provider == "Anthropic" %}
|
|
89
|
+
```python hl_lines="19-38 43"
|
|
90
|
+
{% elif provider == "Mistral" %}
|
|
91
|
+
```python hl_lines="21-46 51"
|
|
92
|
+
{% elif provider == "Gemini" %}
|
|
93
|
+
```python hl_lines="19-57 62"
|
|
94
|
+
{% elif provider == "Cohere" %}
|
|
95
|
+
```python hl_lines="19-36 41"
|
|
96
|
+
{% elif provider == "LiteLLM" %}
|
|
97
|
+
```python hl_lines="16-37 42"
|
|
98
|
+
{% elif provider == "Azure AI" %}
|
|
99
|
+
```python hl_lines="26-46 51"
|
|
100
|
+
{% elif provider == "Vertex AI" %}
|
|
101
|
+
```python hl_lines="23-62 67"
|
|
102
|
+
{% else %}
|
|
103
|
+
```python hl_lines="18-39 44"
|
|
104
|
+
{% endif %}
|
|
105
|
+
--8<-- "examples/learn/response_models/basic_usage/{{ provider | provider_dir }}/official_sdk.py"
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
{% endfor %}
|
|
109
|
+
|
|
110
|
+
## Choose Your Path
|
|
111
|
+
|
|
112
|
+
### Tutorials
|
|
113
|
+
|
|
114
|
+
<div class="grid cards" markdown>
|
|
115
|
+
|
|
116
|
+
- :material-clock-fast:{ .lg .middle } __Quickstart Guide__
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
Comprehensive overview of core features and building blocks
|
|
121
|
+
|
|
122
|
+
[:octicons-arrow-right-24: Quickstart](./tutorials/getting_started/quickstart.ipynb)
|
|
123
|
+
|
|
124
|
+
- :material-database:{ .lg .middle } __Structured Outputs__
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
Explore various techniques for generating structured outputs
|
|
129
|
+
|
|
130
|
+
[:octicons-arrow-right-24: Structured Outputs](./tutorials/getting_started/structured_outputs.ipynb)
|
|
131
|
+
|
|
132
|
+
- :material-link-variant:{ .lg .middle } __Dynamic Configuration & Chaining__
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
Examples ranging from basic usage to more complex chaining techniques
|
|
137
|
+
|
|
138
|
+
[:octicons-arrow-right-24: Dynamic Configuration & Chaining](./tutorials/getting_started/dynamic_configuration_and_chaining.ipynb)
|
|
139
|
+
|
|
140
|
+
- :material-tools:{ .lg .middle } __Tools & Agents__
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
Learn how to define tools for your LLM to build advanced AI agents
|
|
145
|
+
|
|
146
|
+
[:octicons-arrow-right-24: Tools & Agents](./tutorials/getting_started/tools_and_agents.ipynb)
|
|
147
|
+
|
|
148
|
+
</div>
|
|
149
|
+
|
|
150
|
+
### Dive Deeper
|
|
151
|
+
|
|
152
|
+
<div class="grid cards" markdown>
|
|
153
|
+
|
|
154
|
+
- :material-school:{ .lg .middle } __Learn__
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
In-depth exploration of Mirascope's many features and capabilities
|
|
159
|
+
|
|
160
|
+
[:octicons-arrow-right-24: Learn](./learn/index.md)
|
|
161
|
+
|
|
162
|
+
- :material-book-open-variant:{ .lg .middle } __Tutorials__
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
Advanced usage patterns and real-world applications
|
|
167
|
+
|
|
168
|
+
[:octicons-arrow-right-24: Tutorials](./tutorials/more_advanced/text_classification.ipynb)
|
|
169
|
+
|
|
170
|
+
- :material-connection:{ .lg .middle } __Integrations__
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
Integrations with third-party tools for enhanced usage
|
|
175
|
+
|
|
176
|
+
[:octicons-arrow-right-24: Integrations](./integrations/otel.md)
|
|
177
|
+
|
|
178
|
+
- :material-text-search:{ .lg .middle } __API Reference__
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
Detailed information on classes and functions
|
|
183
|
+
|
|
184
|
+
[:octicons-arrow-right-24: Reference](./api/core/anthropic/call.md)
|
|
185
|
+
|
|
186
|
+
</div>
|
|
187
|
+
|
|
188
|
+
We're excited to see what you'll build with Mirascope, and we're here to help! Don't hesitate to reach out :)
|