mirascope 2.0.2__tar.gz → 2.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mirascope-2.1.0/PKG-INFO +231 -0
- mirascope-2.1.0/README.md +126 -0
- mirascope-2.1.0/examples/tools/web_search.py +15 -0
- mirascope-2.1.0/mirascope/_stubs.py +384 -0
- mirascope-2.1.0/mirascope/api/_generated/__init__.py +444 -0
- mirascope-2.1.0/mirascope/api/_generated/project_memberships/__init__.py +29 -0
- mirascope-2.1.0/mirascope/api/_generated/project_memberships/client.py +528 -0
- mirascope-2.1.0/mirascope/api/_generated/project_memberships/raw_client.py +1278 -0
- mirascope-2.1.0/mirascope/api/_generated/project_memberships/types/__init__.py +33 -0
- mirascope-2.1.0/mirascope/api/_generated/project_memberships/types/project_memberships_get_response.py +33 -0
- mirascope-2.1.0/mirascope/api/_generated/project_memberships/types/project_memberships_get_response_role.py +7 -0
- mirascope-2.1.0/mirascope/api/_generated/reference.md +4987 -0
- mirascope-2.1.0/mirascope/llm/__init__.py +316 -0
- mirascope-2.1.0/mirascope/llm/calls/decorator.py +268 -0
- mirascope-2.1.0/mirascope/llm/formatting/__init__.py +39 -0
- mirascope-2.1.0/mirascope/llm/formatting/format.py +291 -0
- mirascope-2.1.0/mirascope/llm/formatting/types.py +83 -0
- mirascope-2.1.0/mirascope/llm/models/models.py +1339 -0
- mirascope-2.1.0/mirascope/llm/prompts/decorator.py +215 -0
- mirascope-2.1.0/mirascope/llm/prompts/prompts.py +484 -0
- mirascope-2.1.0/mirascope/llm/providers/anthropic/_utils/beta_decode.py +297 -0
- mirascope-2.1.0/mirascope/llm/providers/anthropic/_utils/beta_encode.py +272 -0
- mirascope-2.1.0/mirascope/llm/providers/anthropic/_utils/decode.py +326 -0
- mirascope-2.1.0/mirascope/llm/providers/anthropic/_utils/encode.py +431 -0
- mirascope-2.1.0/mirascope/llm/providers/anthropic/beta_provider.py +338 -0
- mirascope-2.1.0/mirascope/llm/providers/anthropic/provider.py +440 -0
- mirascope-2.1.0/mirascope/llm/providers/base/_utils.py +248 -0
- mirascope-2.1.0/mirascope/llm/providers/base/base_provider.py +1463 -0
- mirascope-2.1.0/mirascope/llm/providers/google/_utils/decode.py +357 -0
- mirascope-2.1.0/mirascope/llm/providers/google/_utils/encode.py +418 -0
- mirascope-2.1.0/mirascope/llm/providers/google/provider.py +456 -0
- mirascope-2.1.0/mirascope/llm/providers/mirascope/provider.py +313 -0
- mirascope-2.1.0/mirascope/llm/providers/mlx/encoding/base.py +69 -0
- mirascope-2.1.0/mirascope/llm/providers/mlx/encoding/transformers.py +146 -0
- mirascope-2.1.0/mirascope/llm/providers/mlx/mlx.py +242 -0
- mirascope-2.1.0/mirascope/llm/providers/mlx/provider.py +416 -0
- mirascope-2.1.0/mirascope/llm/providers/openai/completions/_utils/encode.py +395 -0
- mirascope-2.1.0/mirascope/llm/providers/openai/completions/base_provider.py +501 -0
- mirascope-2.1.0/mirascope/llm/providers/openai/provider.py +405 -0
- mirascope-2.1.0/mirascope/llm/providers/openai/responses/_utils/decode.py +289 -0
- mirascope-2.1.0/mirascope/llm/providers/openai/responses/_utils/encode.py +399 -0
- mirascope-2.1.0/mirascope/llm/providers/openai/responses/provider.py +472 -0
- mirascope-2.1.0/mirascope/llm/responses/__init__.py +66 -0
- mirascope-2.1.0/mirascope/llm/responses/base_stream_response.py +824 -0
- mirascope-2.1.0/mirascope/llm/responses/response.py +362 -0
- mirascope-2.1.0/mirascope/llm/responses/stream_response.py +577 -0
- mirascope-2.1.0/mirascope/llm/responses/usage.py +139 -0
- mirascope-2.1.0/mirascope/llm/tools/__init__.py +71 -0
- mirascope-2.1.0/mirascope/llm/tools/provider_tools.py +18 -0
- mirascope-2.1.0/mirascope/llm/tools/tool_schema.py +321 -0
- mirascope-2.1.0/mirascope/llm/tools/toolkit.py +178 -0
- mirascope-2.1.0/mirascope/llm/tools/types.py +112 -0
- mirascope-2.1.0/mirascope/llm/tools/web_search_tool.py +32 -0
- mirascope-2.1.0/mirascope/ops/__init__.py +129 -0
- mirascope-2.1.0/mirascope/ops/_internal/instrumentation/__init__.py +28 -0
- mirascope-2.1.0/mirascope/ops/_internal/instrumentation/llm/common.py +500 -0
- mirascope-2.1.0/mirascope/ops/_internal/instrumentation/llm/model.py +1777 -0
- mirascope-2.1.0/mirascope/ops/_internal/instrumentation/llm/serialize.py +324 -0
- mirascope-2.1.0/mirascope/ops/_internal/instrumentation/providers/__init__.py +29 -0
- mirascope-2.1.0/mirascope/ops/_internal/instrumentation/providers/anthropic.py +78 -0
- mirascope-2.1.0/mirascope/ops/_internal/instrumentation/providers/base.py +179 -0
- mirascope-2.1.0/mirascope/ops/_internal/instrumentation/providers/google_genai.py +85 -0
- mirascope-2.1.0/mirascope/ops/_internal/instrumentation/providers/openai.py +82 -0
- mirascope-2.1.0/pyproject.toml +261 -0
- mirascope-2.1.0/tests/e2e/README.md +42 -0
- mirascope-2.1.0/tests/e2e/conftest.py +220 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_call_with_mcp_tools/anthropic_claude_haiku_4_5.yaml +413 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_5_completions.yaml +109 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_5_mini_completions.yaml +209 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_web_search_tool/anthropic_beta_claude_sonnet_4_0.yaml +1644 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_web_search_tool/anthropic_claude_sonnet_4_0.yaml +1495 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_web_search_tool/google_gemini_2_5_flash.yaml +234 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_web_search_tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +120 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_web_search_tool/openai_gpt_4o_responses.yaml +268 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_web_search_tool_stream/anthropic_beta_claude_sonnet_4_0.yaml +813 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_web_search_tool_stream/anthropic_claude_sonnet_4_0.yaml +689 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_web_search_tool_stream/google_gemini_2_5_flash.yaml +329 -0
- mirascope-2.1.0/tests/e2e/input/cassettes/test_web_search_tool_stream/openai_gpt_4o_responses.yaml +611 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/anthropic_beta_claude_sonnet_4_0_snapshots.py +143 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/anthropic_claude_sonnet_4_0_snapshots.py +142 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/google_gemini_2_5_flash_snapshots.py +94 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +147 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/openai_gpt_4o_completions_snapshots.py +43 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/openai_gpt_4o_responses_snapshots.py +45 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_system_message/anthropic_beta_claude_sonnet_4_0_snapshots.py +64 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_system_message/anthropic_claude_sonnet_4_0_snapshots.py +64 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_system_message/google_gemini_2_5_flash_snapshots.py +50 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_system_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +54 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_system_message/openai_gpt_4o_completions_snapshots.py +28 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_system_message/openai_gpt_4o_responses_snapshots.py +28 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +28 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_tool/anthropic_claude_sonnet_4_0_snapshots.py +28 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_tool/google_gemini_2_5_flash_snapshots.py +42 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_tool/openai_gpt_4o_completions_snapshots.py +28 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_tool/openai_gpt_4o_responses_snapshots.py +28 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_user_message/anthropic_beta_claude_sonnet_4_0_snapshots.py +84 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_user_message/anthropic_claude_sonnet_4_0_snapshots.py +80 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_user_message/google_gemini_2_5_flash_snapshots.py +102 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_user_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +172 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_user_message/openai_gpt_4o_completions_snapshots.py +42 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_caching_user_message/openai_gpt_4o_responses_snapshots.py +38 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_non_openai_models_through_openai/anthropic_claude_sonnet_4_5_snapshots.py +41 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_audio/google_gemini_2_5_flash_snapshots.py +79 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_audio_snapshots.py +58 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_empty_string/google_gemini_2_5_flash_snapshots.py +339 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_empty_string/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +63 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_empty_string/openai_gpt_4o_completions_snapshots.py +49 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_empty_string/openai_gpt_4o_responses_snapshots.py +60 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_image_content/anthropic_beta_claude_sonnet_4_0_snapshots.py +66 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_image_content/anthropic_claude_sonnet_4_0_snapshots.py +67 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_image_content/google_gemini_2_5_flash_snapshots.py +83 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_image_content/openai_gpt_4o_completions_snapshots.py +62 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_image_content/openai_gpt_4o_responses_snapshots.py +73 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_image_url/anthropic_beta_claude_sonnet_4_0_snapshots.py +65 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_image_url/anthropic_claude_sonnet_4_0_snapshots.py +66 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_image_url/openai_gpt_4o_completions_snapshots.py +61 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_image_url/openai_gpt_4o_responses_snapshots.py +72 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_mcp_tools/anthropic_claude_haiku_4_5_snapshots.py +376 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_params/anthropic_beta_claude_sonnet_4_0_snapshots.py +59 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_params/anthropic_claude_sonnet_4_0_snapshots.py +65 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_params/google_gemini_2_5_flash_snapshots.py +95 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_params/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +82 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_4o_completions_snapshots.py +60 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_4o_responses_snapshots.py +76 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_5_completions_snapshots.py +65 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_5_mini_completions_snapshots.py +65 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_parse_error/anthropic_beta_claude_sonnet_4_0_snapshots.py +102 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_parse_error/anthropic_claude_sonnet_4_0_snapshots.py +128 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_parse_error/google_gemini_2_5_flash_snapshots.py +110 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_parse_error/openai_gpt_4o_completions_snapshots.py +79 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_parse_error/openai_gpt_4o_responses_snapshots.py +101 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/anthropic_beta_claude_sonnet_4_5_snapshots.py +94 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_completions_snapshots.py +97 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_responses_snapshots.py +93 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_tool_error/anthropic_beta_claude_sonnet_4_0_snapshots.py +183 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_tool_error/anthropic_claude_sonnet_4_0_snapshots.py +186 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_tool_error/google_gemini_2_5_flash_snapshots.py +157 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_tool_error/openai_gpt_4o_completions_snapshots.py +129 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_tool_error/openai_gpt_4o_responses_snapshots.py +88 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_two_empty_string/google_gemini_2_5_flash_snapshots.py +97 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_two_empty_string/openai_gpt_4o_completions_snapshots.py +45 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_call_with_two_empty_string/openai_gpt_4o_responses_snapshots.py +60 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider/anthropic_claude_haiku_4_5_snapshots.py +50 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider/google_gemini_2_5_flash_snapshots.py +85 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_completions_snapshots.py +45 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_responses_snapshots.py +61 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_snapshots.py +61 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/anthropic_claude_haiku_4_5_snapshots.py +44 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/google_gemini_2_5_flash_snapshots.py +93 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_completions_snapshots.py +41 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_responses_snapshots.py +61 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_snapshots.py +61 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_ollama_provider/ollama_gemma3_4b_snapshots.py +41 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_completions_snapshots.py +45 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_snapshots.py +45 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_responses_snapshots.py +56 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_snapshots.py +56 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override/anthropic_beta_claude_sonnet_4_0_snapshots.py +80 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override/anthropic_claude_sonnet_4_0_snapshots.py +81 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override/google_gemini_2_5_flash_snapshots.py +92 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +80 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override/openai_gpt_4o_completions_snapshots.py +76 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override/openai_gpt_4o_responses_snapshots.py +85 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +121 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/anthropic_claude_sonnet_4_0_snapshots.py +122 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/google_gemini_2_5_flash_snapshots.py +133 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_gpt_4o_completions_snapshots.py +117 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_gpt_4o_responses_snapshots.py +128 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode/anthropic_claude_sonnet_4_5_snapshots.py +74 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode/google_gemini_3_pro_preview_snapshots.py +97 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_streamed/anthropic_claude_sonnet_4_5_snapshots.py +69 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_streamed/google_gemini_3_pro_preview_snapshots.py +105 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_with_streamed_thinking/anthropic_claude_sonnet_4_5_snapshots.py +88 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_with_streamed_thinking/google_gemini_3_pro_preview_snapshots.py +89 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_with_thinking/anthropic_claude_sonnet_4_5_snapshots.py +95 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_with_thinking/google_gemini_3_pro_preview_snapshots.py +97 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_with_tools/anthropic_claude_sonnet_4_5_snapshots.py +138 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_with_tools/google_gemini_3_pro_preview_snapshots.py +174 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_with_tools_streamed/anthropic_claude_sonnet_4_5_snapshots.py +133 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_strict_mode_with_tools_streamed/google_gemini_3_pro_preview_snapshots.py +223 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_0_snapshots.py +89 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_5_snapshots.py +89 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/google_gemini_2_5_flash_snapshots.py +97 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +95 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_0_snapshots.py +96 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_5_snapshots.py +100 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/google_gemini_2_5_flash_snapshots.py +109 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_completions_snapshots.py +91 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_responses_snapshots.py +102 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_gpt_4o_completions_snapshots.py +79 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_gpt_4o_responses_snapshots.py +90 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_5_snapshots.py +88 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/google_gemini_2_5_flash_snapshots.py +109 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_completions_snapshots.py +79 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_responses_snapshots.py +90 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +89 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_0_snapshots.py +89 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_5_snapshots.py +89 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/google_gemini_2_5_flash_snapshots.py +107 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_completions_snapshots.py +88 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_responses_snapshots.py +84 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_output_parser/anthropic_claude_haiku_4_5_snapshots.py +80 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_primitive_types_int/anthropic_claude_haiku_4_5_snapshots.py +73 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_output_with_primitive_types_list/anthropic_claude_haiku_4_5_snapshots.py +100 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_stream_async/anthropic_claude_haiku_4_5_snapshots.py +230 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_structured_stream_sync/anthropic_claude_haiku_4_5_snapshots.py +269 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_together_provider/meta_llama_Llama_3_3_70B_Instruct_Turbo_snapshots.py +57 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_unsupported_provider_tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +13 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_unsupported_provider_tool/anthropic_claude_sonnet_4_0_snapshots.py +13 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_unsupported_provider_tool/google_gemini_2_5_flash_snapshots.py +13 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_unsupported_provider_tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +10 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_unsupported_provider_tool/openai_gpt_4o_completions_snapshots.py +13 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_unsupported_provider_tool/openai_gpt_4o_responses_snapshots.py +13 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +540 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool/anthropic_claude_sonnet_4_0_snapshots.py +678 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool/google_gemini_2_5_flash_snapshots.py +122 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +10 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool/openai_gpt_4o_completions_snapshots.py +13 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool/openai_gpt_4o_responses_snapshots.py +342 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool_stream/anthropic_beta_claude_sonnet_4_0_snapshots.py +322 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool_stream/anthropic_claude_sonnet_4_0_snapshots.py +231 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool_stream/google_gemini_2_5_flash_snapshots.py +192 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool_stream/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +10 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool_stream/openai_gpt_4o_completions_snapshots.py +13 -0
- mirascope-2.1.0/tests/e2e/input/snapshots/test_web_search_tool_stream/openai_gpt_4o_responses_snapshots.py +269 -0
- mirascope-2.1.0/tests/e2e/input/test_call_with_params.py +62 -0
- mirascope-2.1.0/tests/e2e/input/test_unsupported_provider_tool.py +25 -0
- mirascope-2.1.0/tests/e2e/input/test_web_search_tool.py +53 -0
- mirascope-2.1.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_5_mini_completions/async.yaml +107 -0
- mirascope-2.1.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_5_mini_completions/async_stream.yaml +110 -0
- mirascope-2.1.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_5_mini_completions/stream.yaml +110 -0
- mirascope-2.1.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_5_mini_completions/sync.yaml +107 -0
- mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +1 -0
- mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +1 -0
- mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +1 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call/anthropic_beta_claude_sonnet_4_0_snapshots.py +152 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call/anthropic_claude_sonnet_4_0_snapshots.py +164 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call/google_gemini_2_5_flash_snapshots.py +305 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +248 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call/openai_gpt_4o_completions_snapshots.py +148 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call/openai_gpt_4o_responses_snapshots.py +200 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0_snapshots.py +805 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_thinking/anthropic_claude_sonnet_4_0_snapshots.py +792 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_thinking/google_gemini_2_5_flash_snapshots.py +1208 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_thinking/openai_gpt_5_responses_snapshots.py +735 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0_snapshots.py +427 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0_snapshots.py +441 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash_snapshots.py +334 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses_snapshots.py +244 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +563 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +571 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_tools/google_gemini_2_5_flash_snapshots.py +707 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_tools/openai_gpt_4o_completions_snapshots.py +477 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_call_with_tools/openai_gpt_4o_responses_snapshots.py +563 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_max_tokens/anthropic_beta_claude_sonnet_4_0_snapshots.py +285 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_max_tokens/anthropic_claude_sonnet_4_0_snapshots.py +287 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_max_tokens/google_gemini_2_5_flash_snapshots.py +241 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_max_tokens/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +169 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_4o_completions_snapshots.py +238 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_4o_responses_snapshots.py +244 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_5_mini_completions_snapshots.py +141 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_refusal/anthropic_claude_sonnet_4_0_snapshots.py +340 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_refusal/google_gemini_2_5_flash_snapshots.py +344 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_refusal/openai_gpt_4o_completions_snapshots.py +235 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_refusal/openai_gpt_4o_responses_snapshots.py +273 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/anthropic_claude_sonnet_4_0_snapshots.py +397 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/anthropic_claude_sonnet_4_5_snapshots.py +397 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/google_gemini_2_5_flash_snapshots.py +430 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +813 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/json/anthropic_claude_sonnet_4_0_snapshots.py +819 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/json/anthropic_claude_sonnet_4_5_snapshots.py +827 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/json/google_gemini_2_5_flash_snapshots.py +885 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/json/openai_gpt_4o_completions_snapshots.py +767 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/json/openai_gpt_4o_responses_snapshots.py +837 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/openai_gpt_4o_completions_snapshots.py +320 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/openai_gpt_4o_responses_snapshots.py +372 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_claude_sonnet_4_5_snapshots.py +356 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/strict/google_gemini_2_5_flash_snapshots.py +448 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/strict/openai_gpt_4o_completions_snapshots.py +320 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/strict/openai_gpt_4o_responses_snapshots.py +372 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +397 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_claude_sonnet_4_0_snapshots.py +397 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_claude_sonnet_4_5_snapshots.py +397 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/tool/google_gemini_2_5_flash_snapshots.py +459 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/tool/openai_gpt_4o_completions_snapshots.py +355 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output/tool/openai_gpt_4o_responses_snapshots.py +365 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +551 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_claude_sonnet_4_5_snapshots.py +551 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/google_gemini_2_5_flash_snapshots.py +665 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +847 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0_snapshots.py +859 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5_snapshots.py +973 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_gpt_4o_completions_snapshots.py +767 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_gpt_4o_responses_snapshots.py +843 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_gpt_4o_completions_snapshots.py +464 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_gpt_4o_responses_snapshots.py +539 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5_snapshots.py +514 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_gpt_4o_completions_snapshots.py +464 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_gpt_4o_responses_snapshots.py +560 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +551 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0_snapshots.py +551 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5_snapshots.py +551 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/google_gemini_2_5_flash_snapshots.py +665 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_gpt_4o_completions_snapshots.py +503 -0
- mirascope-2.1.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_gpt_4o_responses_snapshots.py +523 -0
- mirascope-2.1.0/tests/e2e/output/test_max_tokens.py +82 -0
- mirascope-2.1.0/tests/e2e/output/test_refusal.py +101 -0
- mirascope-2.1.0/tests/llm/formatting/test_primitive_types.py +287 -0
- mirascope-2.1.0/tests/llm/mcp/test_mcp_client.py +262 -0
- mirascope-2.1.0/tests/llm/providers/base/test_utils.py +275 -0
- mirascope-2.1.0/tests/llm/providers/openai/test_completions_encoding.py +124 -0
- mirascope-2.1.0/tests/llm/providers/openai/test_responses_encoding.py +67 -0
- mirascope-2.1.0/tests/llm/providers/test_mirascope_provider.py +435 -0
- mirascope-2.1.0/tests/llm/providers/test_missing_dependencies.py +452 -0
- mirascope-2.1.0/tests/llm/responses/test_stream_response.py +2205 -0
- mirascope-2.1.0/tests/llm/tools/test_toolkit.py +335 -0
- mirascope-2.1.0/tests/ops/_internal/exporters/test_exporters.py +783 -0
- mirascope-2.1.0/tests/ops/_internal/instrumentation/llm/test_model_call.py +839 -0
- mirascope-2.1.0/tests/ops/_internal/instrumentation/llm/test_model_resume.py +779 -0
- mirascope-2.1.0/tests/ops/_internal/instrumentation/llm/test_model_stream.py +441 -0
- mirascope-2.1.0/tests/ops/_internal/instrumentation/llm/test_serialize.py +611 -0
- mirascope-2.1.0/tests/ops/_internal/instrumentation/providers/__init__.py +1 -0
- mirascope-2.1.0/tests/ops/_internal/instrumentation/providers/test_anthropic.py +158 -0
- mirascope-2.1.0/tests/ops/_internal/instrumentation/providers/test_google_genai.py +178 -0
- mirascope-2.1.0/tests/ops/_internal/instrumentation/providers/test_openai.py +170 -0
- mirascope-2.1.0/tests/ops/_internal/test_closure.py +1552 -0
- mirascope-2.1.0/tests/utils.py +202 -0
- mirascope-2.1.0/uv.lock +3878 -0
- mirascope-2.0.2/PKG-INFO +0 -203
- mirascope-2.0.2/README.md +0 -104
- mirascope-2.0.2/mirascope/_stubs.py +0 -363
- mirascope-2.0.2/mirascope/api/_generated/__init__.py +0 -440
- mirascope-2.0.2/mirascope/api/_generated/project_memberships/__init__.py +0 -25
- mirascope-2.0.2/mirascope/api/_generated/project_memberships/client.py +0 -437
- mirascope-2.0.2/mirascope/api/_generated/project_memberships/raw_client.py +0 -1039
- mirascope-2.0.2/mirascope/api/_generated/project_memberships/types/__init__.py +0 -29
- mirascope-2.0.2/mirascope/api/_generated/reference.md +0 -4915
- mirascope-2.0.2/mirascope/llm/__init__.py +0 -297
- mirascope-2.0.2/mirascope/llm/calls/decorator.py +0 -275
- mirascope-2.0.2/mirascope/llm/formatting/__init__.py +0 -39
- mirascope-2.0.2/mirascope/llm/formatting/format.py +0 -293
- mirascope-2.0.2/mirascope/llm/formatting/types.py +0 -66
- mirascope-2.0.2/mirascope/llm/models/models.py +0 -1419
- mirascope-2.0.2/mirascope/llm/prompts/decorator.py +0 -226
- mirascope-2.0.2/mirascope/llm/prompts/prompts.py +0 -492
- mirascope-2.0.2/mirascope/llm/providers/anthropic/_utils/beta_decode.py +0 -282
- mirascope-2.0.2/mirascope/llm/providers/anthropic/_utils/beta_encode.py +0 -266
- mirascope-2.0.2/mirascope/llm/providers/anthropic/_utils/decode.py +0 -288
- mirascope-2.0.2/mirascope/llm/providers/anthropic/_utils/encode.py +0 -418
- mirascope-2.0.2/mirascope/llm/providers/anthropic/beta_provider.py +0 -374
- mirascope-2.0.2/mirascope/llm/providers/anthropic/provider.py +0 -479
- mirascope-2.0.2/mirascope/llm/providers/base/_utils.py +0 -253
- mirascope-2.0.2/mirascope/llm/providers/base/base_provider.py +0 -1579
- mirascope-2.0.2/mirascope/llm/providers/google/_utils/decode.py +0 -307
- mirascope-2.0.2/mirascope/llm/providers/google/_utils/encode.py +0 -401
- mirascope-2.0.2/mirascope/llm/providers/google/provider.py +0 -492
- mirascope-2.0.2/mirascope/llm/providers/mirascope/provider.py +0 -349
- mirascope-2.0.2/mirascope/llm/providers/mlx/encoding/base.py +0 -72
- mirascope-2.0.2/mirascope/llm/providers/mlx/encoding/transformers.py +0 -150
- mirascope-2.0.2/mirascope/llm/providers/mlx/mlx.py +0 -254
- mirascope-2.0.2/mirascope/llm/providers/mlx/provider.py +0 -452
- mirascope-2.0.2/mirascope/llm/providers/openai/completions/_utils/encode.py +0 -376
- mirascope-2.0.2/mirascope/llm/providers/openai/completions/base_provider.py +0 -542
- mirascope-2.0.2/mirascope/llm/providers/openai/provider.py +0 -441
- mirascope-2.0.2/mirascope/llm/providers/openai/responses/_utils/decode.py +0 -260
- mirascope-2.0.2/mirascope/llm/providers/openai/responses/_utils/encode.py +0 -384
- mirascope-2.0.2/mirascope/llm/providers/openai/responses/provider.py +0 -513
- mirascope-2.0.2/mirascope/llm/responses/__init__.py +0 -65
- mirascope-2.0.2/mirascope/llm/responses/base_stream_response.py +0 -820
- mirascope-2.0.2/mirascope/llm/responses/response.py +0 -366
- mirascope-2.0.2/mirascope/llm/responses/stream_response.py +0 -581
- mirascope-2.0.2/mirascope/llm/responses/usage.py +0 -95
- mirascope-2.0.2/mirascope/llm/tools/__init__.py +0 -47
- mirascope-2.0.2/mirascope/llm/tools/tool_schema.py +0 -319
- mirascope-2.0.2/mirascope/llm/tools/toolkit.py +0 -160
- mirascope-2.0.2/mirascope/ops/__init__.py +0 -111
- mirascope-2.0.2/mirascope/ops/_internal/instrumentation/__init__.py +0 -8
- mirascope-2.0.2/mirascope/ops/_internal/instrumentation/llm/common.py +0 -530
- mirascope-2.0.2/mirascope/ops/_internal/instrumentation/llm/model.py +0 -1798
- mirascope-2.0.2/mirascope/ops/_internal/instrumentation/llm/serialize.py +0 -300
- mirascope-2.0.2/pyproject.toml +0 -258
- mirascope-2.0.2/tests/e2e/README.md +0 -41
- mirascope-2.0.2/tests/e2e/conftest.py +0 -219
- mirascope-2.0.2/tests/e2e/input/cassettes/test_call_with_mcp_tools/anthropic_claude_haiku_4_5.yaml +0 -417
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -140
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/anthropic_claude_sonnet_4_0_snapshots.py +0 -139
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/google_gemini_2_5_flash_snapshots.py +0 -91
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -144
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/openai_gpt_4o_completions_snapshots.py +0 -40
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/openai_gpt_4o_responses_snapshots.py +0 -42
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_system_message/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -62
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_system_message/anthropic_claude_sonnet_4_0_snapshots.py +0 -62
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_system_message/google_gemini_2_5_flash_snapshots.py +0 -48
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_system_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -52
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_system_message/openai_gpt_4o_completions_snapshots.py +0 -26
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_system_message/openai_gpt_4o_responses_snapshots.py +0 -26
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -26
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -26
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_tool/google_gemini_2_5_flash_snapshots.py +0 -40
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_tool/openai_gpt_4o_completions_snapshots.py +0 -26
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_tool/openai_gpt_4o_responses_snapshots.py +0 -26
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_user_message/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -82
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_user_message/anthropic_claude_sonnet_4_0_snapshots.py +0 -78
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_user_message/google_gemini_2_5_flash_snapshots.py +0 -100
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_user_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -170
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_user_message/openai_gpt_4o_completions_snapshots.py +0 -40
- mirascope-2.0.2/tests/e2e/input/snapshots/test_caching_user_message/openai_gpt_4o_responses_snapshots.py +0 -36
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_non_openai_models_through_openai/anthropic_claude_sonnet_4_5_snapshots.py +0 -40
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_audio/google_gemini_2_5_flash_snapshots.py +0 -78
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_audio_snapshots.py +0 -57
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_empty_string/google_gemini_2_5_flash_snapshots.py +0 -338
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_empty_string/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -62
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_empty_string/openai_gpt_4o_completions_snapshots.py +0 -48
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_empty_string/openai_gpt_4o_responses_snapshots.py +0 -59
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_image_content/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -65
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_image_content/anthropic_claude_sonnet_4_0_snapshots.py +0 -66
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_image_content/google_gemini_2_5_flash_snapshots.py +0 -82
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_image_content/openai_gpt_4o_completions_snapshots.py +0 -61
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_image_content/openai_gpt_4o_responses_snapshots.py +0 -72
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_image_url/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -64
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_image_url/anthropic_claude_sonnet_4_0_snapshots.py +0 -65
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_image_url/openai_gpt_4o_completions_snapshots.py +0 -60
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_image_url/openai_gpt_4o_responses_snapshots.py +0 -71
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_mcp_tools/anthropic_claude_haiku_4_5_snapshots.py +0 -352
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_params/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -58
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_params/anthropic_claude_sonnet_4_0_snapshots.py +0 -64
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_params/google_gemini_2_5_flash_snapshots.py +0 -94
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_params/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -81
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_4o_completions_snapshots.py +0 -59
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_4o_responses_snapshots.py +0 -75
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_parse_error/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -101
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_parse_error/anthropic_claude_sonnet_4_0_snapshots.py +0 -127
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_parse_error/google_gemini_2_5_flash_snapshots.py +0 -109
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_parse_error/openai_gpt_4o_completions_snapshots.py +0 -78
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_parse_error/openai_gpt_4o_responses_snapshots.py +0 -100
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/anthropic_beta_claude_sonnet_4_5_snapshots.py +0 -93
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_completions_snapshots.py +0 -96
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_responses_snapshots.py +0 -92
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_tool_error/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -182
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_tool_error/anthropic_claude_sonnet_4_0_snapshots.py +0 -185
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_tool_error/google_gemini_2_5_flash_snapshots.py +0 -156
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_tool_error/openai_gpt_4o_completions_snapshots.py +0 -128
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_tool_error/openai_gpt_4o_responses_snapshots.py +0 -87
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_two_empty_string/google_gemini_2_5_flash_snapshots.py +0 -96
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_two_empty_string/openai_gpt_4o_completions_snapshots.py +0 -44
- mirascope-2.0.2/tests/e2e/input/snapshots/test_call_with_two_empty_string/openai_gpt_4o_responses_snapshots.py +0 -59
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider/anthropic_claude_haiku_4_5_snapshots.py +0 -49
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider/google_gemini_2_5_flash_snapshots.py +0 -84
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_completions_snapshots.py +0 -44
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_responses_snapshots.py +0 -60
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_snapshots.py +0 -60
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider_streaming/anthropic_claude_haiku_4_5_snapshots.py +0 -43
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider_streaming/google_gemini_2_5_flash_snapshots.py +0 -92
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_completions_snapshots.py +0 -40
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_responses_snapshots.py +0 -60
- mirascope-2.0.2/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_snapshots.py +0 -60
- mirascope-2.0.2/tests/e2e/input/snapshots/test_ollama_provider/ollama_gemma3_4b_snapshots.py +0 -40
- mirascope-2.0.2/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_completions_snapshots.py +0 -44
- mirascope-2.0.2/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_snapshots.py +0 -44
- mirascope-2.0.2/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_responses_snapshots.py +0 -55
- mirascope-2.0.2/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_snapshots.py +0 -55
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -79
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override/anthropic_claude_sonnet_4_0_snapshots.py +0 -80
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override/google_gemini_2_5_flash_snapshots.py +0 -91
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -79
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override/openai_gpt_4o_completions_snapshots.py +0 -75
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override/openai_gpt_4o_responses_snapshots.py +0 -84
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -120
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/anthropic_claude_sonnet_4_0_snapshots.py +0 -121
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/google_gemini_2_5_flash_snapshots.py +0 -132
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_gpt_4o_completions_snapshots.py +0 -116
- mirascope-2.0.2/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_gpt_4o_responses_snapshots.py +0 -127
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode/anthropic_claude_sonnet_4_5_snapshots.py +0 -73
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode/google_gemini_3_pro_preview_snapshots.py +0 -96
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_streamed/anthropic_claude_sonnet_4_5_snapshots.py +0 -68
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_streamed/google_gemini_3_pro_preview_snapshots.py +0 -104
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_with_streamed_thinking/anthropic_claude_sonnet_4_5_snapshots.py +0 -87
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_with_streamed_thinking/google_gemini_3_pro_preview_snapshots.py +0 -88
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_with_thinking/anthropic_claude_sonnet_4_5_snapshots.py +0 -94
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_with_thinking/google_gemini_3_pro_preview_snapshots.py +0 -96
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_with_tools/anthropic_claude_sonnet_4_5_snapshots.py +0 -137
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_with_tools/google_gemini_3_pro_preview_snapshots.py +0 -173
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_with_tools_streamed/anthropic_claude_sonnet_4_5_snapshots.py +0 -132
- mirascope-2.0.2/tests/e2e/input/snapshots/test_strict_mode_with_tools_streamed/google_gemini_3_pro_preview_snapshots.py +0 -222
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_0_snapshots.py +0 -88
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_5_snapshots.py +0 -88
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/google_gemini_2_5_flash_snapshots.py +0 -96
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -94
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_0_snapshots.py +0 -95
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_5_snapshots.py +0 -99
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/google_gemini_2_5_flash_snapshots.py +0 -108
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_completions_snapshots.py +0 -90
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_responses_snapshots.py +0 -101
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_gpt_4o_completions_snapshots.py +0 -78
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_gpt_4o_responses_snapshots.py +0 -89
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_5_snapshots.py +0 -87
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/google_gemini_2_5_flash_snapshots.py +0 -108
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_completions_snapshots.py +0 -78
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_responses_snapshots.py +0 -89
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -88
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -88
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_5_snapshots.py +0 -88
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/google_gemini_2_5_flash_snapshots.py +0 -106
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_completions_snapshots.py +0 -87
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_responses_snapshots.py +0 -83
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_output_parser/anthropic_claude_haiku_4_5_snapshots.py +0 -79
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_primitive_types_int/anthropic_claude_haiku_4_5_snapshots.py +0 -72
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_output_with_primitive_types_list/anthropic_claude_haiku_4_5_snapshots.py +0 -99
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_stream_async/anthropic_claude_haiku_4_5_snapshots.py +0 -229
- mirascope-2.0.2/tests/e2e/input/snapshots/test_structured_stream_sync/anthropic_claude_haiku_4_5_snapshots.py +0 -268
- mirascope-2.0.2/tests/e2e/input/snapshots/test_together_provider/meta_llama_Llama_3_3_70B_Instruct_Turbo_snapshots.py +0 -56
- mirascope-2.0.2/tests/e2e/input/test_call_with_params.py +0 -55
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -148
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call/anthropic_claude_sonnet_4_0_snapshots.py +0 -160
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call/google_gemini_2_5_flash_snapshots.py +0 -301
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -244
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call/openai_gpt_4o_completions_snapshots.py +0 -144
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call/openai_gpt_4o_responses_snapshots.py +0 -196
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -801
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_thinking/anthropic_claude_sonnet_4_0_snapshots.py +0 -788
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_thinking/google_gemini_2_5_flash_snapshots.py +0 -1204
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_thinking/openai_gpt_5_responses_snapshots.py +0 -731
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -423
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0_snapshots.py +0 -437
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash_snapshots.py +0 -330
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses_snapshots.py +0 -240
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -559
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +0 -567
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_tools/google_gemini_2_5_flash_snapshots.py +0 -703
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_tools/openai_gpt_4o_completions_snapshots.py +0 -473
- mirascope-2.0.2/tests/e2e/output/snapshots/test_call_with_tools/openai_gpt_4o_responses_snapshots.py +0 -559
- mirascope-2.0.2/tests/e2e/output/snapshots/test_max_tokens/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -281
- mirascope-2.0.2/tests/e2e/output/snapshots/test_max_tokens/anthropic_claude_sonnet_4_0_snapshots.py +0 -283
- mirascope-2.0.2/tests/e2e/output/snapshots/test_max_tokens/google_gemini_2_5_flash_snapshots.py +0 -237
- mirascope-2.0.2/tests/e2e/output/snapshots/test_max_tokens/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -165
- mirascope-2.0.2/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_4o_completions_snapshots.py +0 -234
- mirascope-2.0.2/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_4o_responses_snapshots.py +0 -242
- mirascope-2.0.2/tests/e2e/output/snapshots/test_refusal/anthropic_claude_sonnet_4_0_snapshots.py +0 -336
- mirascope-2.0.2/tests/e2e/output/snapshots/test_refusal/google_gemini_2_5_flash_snapshots.py +0 -340
- mirascope-2.0.2/tests/e2e/output/snapshots/test_refusal/openai_gpt_4o_completions_snapshots.py +0 -231
- mirascope-2.0.2/tests/e2e/output/snapshots/test_refusal/openai_gpt_4o_responses_snapshots.py +0 -269
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/anthropic_claude_sonnet_4_0_snapshots.py +0 -393
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/anthropic_claude_sonnet_4_5_snapshots.py +0 -393
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/google_gemini_2_5_flash_snapshots.py +0 -426
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -809
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/json/anthropic_claude_sonnet_4_0_snapshots.py +0 -815
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/json/anthropic_claude_sonnet_4_5_snapshots.py +0 -823
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/json/google_gemini_2_5_flash_snapshots.py +0 -881
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/json/openai_gpt_4o_completions_snapshots.py +0 -763
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/json/openai_gpt_4o_responses_snapshots.py +0 -833
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/openai_gpt_4o_completions_snapshots.py +0 -316
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/openai_gpt_4o_responses_snapshots.py +0 -368
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_claude_sonnet_4_5_snapshots.py +0 -352
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/strict/google_gemini_2_5_flash_snapshots.py +0 -444
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/strict/openai_gpt_4o_completions_snapshots.py +0 -316
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/strict/openai_gpt_4o_responses_snapshots.py +0 -368
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -393
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -393
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_claude_sonnet_4_5_snapshots.py +0 -393
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/tool/google_gemini_2_5_flash_snapshots.py +0 -455
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/tool/openai_gpt_4o_completions_snapshots.py +0 -351
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output/tool/openai_gpt_4o_responses_snapshots.py +0 -361
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +0 -547
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_claude_sonnet_4_5_snapshots.py +0 -547
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/google_gemini_2_5_flash_snapshots.py +0 -661
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -843
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0_snapshots.py +0 -855
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5_snapshots.py +0 -969
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_gpt_4o_completions_snapshots.py +0 -763
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_gpt_4o_responses_snapshots.py +0 -839
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_gpt_4o_completions_snapshots.py +0 -460
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_gpt_4o_responses_snapshots.py +0 -535
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5_snapshots.py +0 -510
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_gpt_4o_completions_snapshots.py +0 -460
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_gpt_4o_responses_snapshots.py +0 -556
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -547
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -547
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5_snapshots.py +0 -547
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/google_gemini_2_5_flash_snapshots.py +0 -661
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_gpt_4o_completions_snapshots.py +0 -499
- mirascope-2.0.2/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_gpt_4o_responses_snapshots.py +0 -519
- mirascope-2.0.2/tests/e2e/output/test_max_tokens.py +0 -76
- mirascope-2.0.2/tests/e2e/output/test_refusal.py +0 -98
- mirascope-2.0.2/tests/llm/formatting/test_primitive_types.py +0 -287
- mirascope-2.0.2/tests/llm/mcp/test_mcp_client.py +0 -285
- mirascope-2.0.2/tests/llm/providers/base/test_utils.py +0 -275
- mirascope-2.0.2/tests/llm/providers/openai/test_completions_encoding.py +0 -115
- mirascope-2.0.2/tests/llm/providers/openai/test_responses_encoding.py +0 -66
- mirascope-2.0.2/tests/llm/providers/test_mirascope_provider.py +0 -411
- mirascope-2.0.2/tests/llm/providers/test_missing_dependencies.py +0 -424
- mirascope-2.0.2/tests/llm/responses/test_stream_response.py +0 -2148
- mirascope-2.0.2/tests/llm/tools/test_toolkit.py +0 -240
- mirascope-2.0.2/tests/ops/_internal/exporters/test_exporters.py +0 -783
- mirascope-2.0.2/tests/ops/_internal/instrumentation/llm/test_model_call.py +0 -839
- mirascope-2.0.2/tests/ops/_internal/instrumentation/llm/test_model_resume.py +0 -779
- mirascope-2.0.2/tests/ops/_internal/instrumentation/llm/test_model_stream.py +0 -441
- mirascope-2.0.2/tests/ops/_internal/instrumentation/llm/test_serialize.py +0 -598
- mirascope-2.0.2/tests/ops/_internal/test_closure.py +0 -1552
- mirascope-2.0.2/tests/utils.py +0 -197
- mirascope-2.0.2/uv.lock +0 -3490
- {mirascope-2.0.2 → mirascope-2.1.0}/.coveragerc +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/.env.example +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/.gitignore +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/AGENTS.md +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/LICENSE +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/agents/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/async/async_streaming.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/async/async_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/async/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/async/basic_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/async/basic_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/async/parallel.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/calls/access_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/calls/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/calls/override.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/calls/return_types.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/calls/with_params.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/basic_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/basic_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/basic_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/conditional_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/conditional_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/conditional_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/nested_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/nested_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/nested_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/parallel_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/parallel_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/chaining/parallel_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/context/async_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/context/basic_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/context/basic_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/context/basic_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/errors/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/context/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/context/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/decorator/async.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/decorator/async_stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/decorator/stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/decorator/sync.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/format/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/format/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/local_model/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/local_model/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/mlx/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/mlx/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/model/async.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/model/async_stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/model/stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/model/sync.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/override/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/override/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/parameters/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/parameters/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/register_provider/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/register_provider/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/resume/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/resume/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/system_messages/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/system_messages/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/tool_call/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/tool_call/model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/intro/welcome.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/local_models/local_mlx.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/local_models/local_ollama.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/local_models/local_vllm.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/mcp/basic_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/mcp/basic_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/mcp/basic_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/mcp/combined_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/mcp_with_thinking.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/messages/audio_content.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/messages/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/messages/image_content.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/messages/multimodal.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/messages/roles.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/messages/text_content.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/misc/anthropic_redacted_thinking.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/misc/ask_llm.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/misc/local_clickhouse_verify.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/misc/local_versioning_example.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/misc/openai_responses_reasoning.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/misc/opentelemetry_call_trace.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/misc/opentelemetry_genai.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/misc/search_span.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/models/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/models/call_patterns.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/models/override.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/models/with_params.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/basic_trace.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/configure_basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/configure_cloud.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/configure_otlp.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/context_propagation.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/instrument_llm.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/session_attributes.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/session_basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/span_basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/span_events.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/trace_llm_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/trace_with_metadata.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/trace_wrapped.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/version_basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/version_llm_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/ops/version_with_metadata.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/prompts/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/prompts/basic_without_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/prompts/messages_method.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/prompts/return_types.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/prompts/with_params.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/providers/custom_api_key.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/providers/openai_compatible.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/providers/scope_matching.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/reliability/basic_retry.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/reliability/fallback_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/reliability/fallback_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/reliability/fallback_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/reliability/retry_specific_errors.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/reliability/stream_retry.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/reliability/tool_error_recovery.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/reliability/validation_retry.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/responses/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/responses/content_access.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/responses/finish_reason.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/responses/metadata.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/responses/resume.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/responses/usage.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_context_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_stream_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_stream_context_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_stream_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_stream_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_stream_tools_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_stream_tools_context_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_stream_tools_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_tools_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_tools_context_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_async_tools_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_context_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_stream_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_stream_context_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_stream_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_stream_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_stream_tools_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_stream_tools_context_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_stream_tools_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_tools_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_tools_context_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/sazed/sazed_tools_structured.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/accumulated.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/async_basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/basic_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/basic_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/basic_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/chunk_stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/error_handling.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/replay.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/streams.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/structured_stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/streaming/with_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/advanced_model_features.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/basemodel.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/basic_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/basic_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/basic_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/custom_instructions.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/explicit_mode.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/generic_collection.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/output_parser.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/primitives.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/structured_output/with_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/thinking/access_thoughts.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/thinking/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/thinking/config.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/thinking/encode_as_text.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/tools/async_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/tools/basic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/tools/loop.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/tools/parallel.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/tools/with_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/tools/with_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/examples/tools/with_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/lint-staged.ts +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/README.md +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_create_request_label.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_create_response_label.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_get_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_get_response_label.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_list_request_label.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_list_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item_label.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_update_request_label.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_update_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/annotations/types/annotations_update_response_label.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/api_keys/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/api_keys/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/api_keys/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/api_keys/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/api_keys/types/api_keys_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/api_keys/types/api_keys_get_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/api_keys/types/api_keys_list_all_for_org_response_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/api_keys/types/api_keys_list_response_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/api_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/client_wrapper.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/datetime_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/file.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/force_multipart.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/http_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/http_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/jsonable_encoder.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/pydantic_utilities.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/query_encoder.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/remove_none_from_dict.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/request_options.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/core/serialization.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/docs/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/docs/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/docs/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environment.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/types/environments_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/types/environments_get_analytics_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/types/environments_get_analytics_response_top_functions_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/types/environments_get_analytics_response_top_models_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/types/environments_get_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/types/environments_list_response_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/environments/types/environments_update_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/bad_request_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/conflict_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/forbidden_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/internal_server_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/not_found_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/payment_required_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/service_unavailable_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/too_many_requests_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/errors/unauthorized_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_create_request_dependencies_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_create_response_dependencies_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_find_by_hash_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_find_by_hash_response_dependencies_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_get_by_env_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_get_by_env_response_dependencies_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_get_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_get_response_dependencies_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_list_by_env_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item_dependencies_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_list_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_list_response_functions_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/functions/types/functions_list_response_functions_item_dependencies_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/health/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/health/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/health/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/health/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/health/types/health_check_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/health/types/health_check_response_status.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_request_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_status.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_status.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_status.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_memberships/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_memberships/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_memberships/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_memberships/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_memberships/types/organization_memberships_update_request_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_create_payment_intent_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_create_response_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_get_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_get_response_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_list_response_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_list_response_item_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_request_target_plan.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item_resource.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_router_balance_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_subscription_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_subscription_response_current_plan.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_subscription_response_payment_method.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change_target_plan.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_update_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_update_response_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_update_subscription_request_target_plan.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/organizations/types/organizations_update_subscription_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/project_memberships/types/project_memberships_create_request_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/project_memberships/types/project_memberships_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/project_memberships/types/project_memberships_create_response_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/project_memberships/types/project_memberships_update_request_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/project_memberships/types/project_memberships_update_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/project_memberships/types/project_memberships_update_response_role.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/projects/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/projects/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/projects/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/projects/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/projects/types/projects_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/projects/types/projects_get_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/projects/types/projects_list_response_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/projects/types/projects_update_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/tags/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/tags/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/tags/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/tags/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/tags/types/tags_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/tags/types/tags_get_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/tags/types/tags_list_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/tags/types/tags_list_response_tags_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/tags/types/tags_update_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/token_cost/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/token_cost/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/token_cost/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/token_cost/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/token_cost/types/token_cost_calculate_request_usage.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/token_cost/types/token_cost_calculate_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/raw_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_array_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value_values_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_array_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value_values_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_array_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value_values_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_status.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_create_response_partial_success.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_get_analytics_summary_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_functions_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_models_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response_spans_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_get_trace_detail_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_get_trace_detail_response_spans_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_list_by_function_hash_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_list_by_function_hash_response_traces_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item_operator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_by.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_order.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_by_env_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_by_env_response_spans_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item_operator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_request_sort_by.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_request_sort_order.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/traces/types/traces_search_response_spans_item.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/already_exists_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/already_exists_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/bad_request_error_body.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/click_house_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/database_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/database_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/date.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/http_api_decode_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/http_api_decode_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/immutable_resource_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/internal_server_error_body.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/issue.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/issue_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/not_found_error_body.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/not_found_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/number_from_string.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/permission_denied_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/permission_denied_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/plan_limit_exceeded_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/plan_limit_exceeded_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/pricing_unavailable_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/property_key.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/property_key_key.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/property_key_key_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/rate_limit_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/rate_limit_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/service_unavailable_error_body.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/service_unavailable_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/stripe_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/subscription_past_due_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/subscription_past_due_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/unauthorized_error_body.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/_generated/types/unauthorized_error_tag.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/api/settings.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/calls/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/calls/calls.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/content/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/content/audio.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/content/document.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/content/image.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/content/text.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/content/thought.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/content/tool_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/content/tool_output.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/context/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/context/_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/context/context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/exceptions.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/formatting/from_call_args.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/formatting/output_parser.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/formatting/partial.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/formatting/primitives.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/mcp/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/mcp/mcp_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/messages/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/messages/_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/messages/message.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/models/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/models/params.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/models/thinking_config.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/prompts/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/prompts/_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/prompts/protocols.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/anthropic/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/anthropic/_utils/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/anthropic/_utils/errors.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/anthropic/model_id.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/anthropic/model_info.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/base/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/base/kwargs.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/google/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/google/_utils/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/google/_utils/errors.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/google/message.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/google/model_id.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/google/model_info.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/mirascope/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/mirascope/_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/mlx/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/mlx/_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/mlx/encoding/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/mlx/model_id.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/model_id.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/ollama/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/ollama/provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/_utils/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/_utils/errors.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/completions/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/completions/_utils/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/completions/_utils/decode.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/completions/provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/model_id.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/model_info.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/responses/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/openai/responses/_utils/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/provider_id.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/provider_registry.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/together/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/providers/together/provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/responses/_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/responses/base_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/responses/finish_reason.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/responses/root_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/responses/streams.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/tools/_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/tools/decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/tools/protocols.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/tools/tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/types/dataclass.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/types/jsonable.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/llm/types/type_vars.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/closure.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/configuration.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/exporters/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/exporters/exporters.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/exporters/processors.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/exporters/types.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/exporters/utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/cost.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/encode.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_input_messages.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_output_messages.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_system_instructions.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/shared.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/llm.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/instrumentation/llm/response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/propagation.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/protocols.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/session.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/spans.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/traced_calls.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/traced_functions.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/tracing.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/types.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/versioned_calls.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/versioned_functions.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/_internal/versioning.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/mirascope/ops/exceptions.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/schemas/gen-ai/gen-ai-input-messages.json +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/schemas/gen-ai/gen-ai-output-messages.json +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/schemas/gen-ai/gen-ai-system-instructions.json +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/example_generator.ts +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/generate_extra_imports.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/codegen_anthropic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/codegen_google.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/codegen_openai.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/core/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/core/models.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/core/registry.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/core/runner.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/core/testing.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/data/anthropic.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/data/google.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/data/openai.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/test_anthropic.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/test_google.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/test_openai.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/model_features/update_all.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/regenerate_examples.ts +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/scripts/validate_extra_imports.sh +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/api/test_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/api/test_missing_dependencies.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/api/test_settings.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/conftest.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/assets/audio/tagline.mp3 +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/assets/images/wikipedia.png +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/README.md +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error_stream/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error_stream/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error_stream/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error_stream/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_authentication_error_stream/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_system_message/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_system_message/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_system_message/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_system_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_system_message/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_system_message/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_tool/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_tool/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_tool/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_tool/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_tool/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_user_message/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_user_message/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_user_message/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_user_message/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_caching_user_message/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_non_openai_models_through_openai/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_audio/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_audio/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_audio/openai_gpt_audio.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_empty_string/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_empty_string/mlx_mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_empty_string/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_empty_string/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_image_content/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_image_content/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_image_content/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_image_content/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_image_content/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_image_url/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_image_url/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_image_url/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_image_url/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_params/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_params/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_params/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_parse_error/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_parse_error/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_parse_error/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_parse_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_parse_error/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_parse_error/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/anthropic_beta_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_tool_error/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_tool_error/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_tool_error/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_tool_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_tool_error/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_tool_error/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_two_empty_string/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_two_empty_string/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_call_with_two_empty_string/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider/openai_gpt_5_mini.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider/openai_gpt_5_mini_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider/openai_gpt_5_mini_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/openai_gpt_5_mini.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/openai_gpt_5_mini_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/openai_gpt_5_mini_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found_stream/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found_stream/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found_stream/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found_stream/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found_stream/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_model_not_found_stream/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_ollama_provider/ollama_gemma3_4b.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_openai_completions_provider/openai_gpt_4o_mini.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_openai_completions_provider/openai_gpt_4o_mini_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_openai_responses_provider/openai_gpt_4o_mini.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_openai_responses_provider/openai_gpt_4o_mini_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_streamed/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_streamed/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_with_streamed_thinking/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_with_streamed_thinking/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_with_thinking/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_with_thinking/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_with_tools/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_with_tools/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_with_tools_streamed/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_strict_mode_with_tools_streamed/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_output_parser/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_primitive_types_int/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_output_with_primitive_types_list/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_stream_async/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_structured_stream_sync/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/cassettes/test_together_provider/meta_llama_Llama_3_3_70B_Instruct_Turbo.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/conftest.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_caching_multi_turn_conversation_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_caching_system_message_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_caching_tool_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_caching_user_message_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_audio_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_empty_array_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_empty_string_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_image_content_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_image_url_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_params_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_parse_error_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_strict_tool_and_optional_properties_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_text_encoded_thoughts_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_tool_error_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_call_with_two_empty_string_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_conversation_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_model_not_found_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_model_not_found_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_resume_with_override_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_resume_with_override_thinking_and_tools_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_system_message_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_tool_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/input/mlx_lm_cassettes/test_unsupported_provider_tool_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/mlx_lm_cassettes/test_user_message_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/input/mlx_lm_cassettes/test_web_search_tool_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/input/mlx_lm_cassettes/test_web_search_tool_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_caching_tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_audio/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_audio/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_audio/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_empty_array/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_empty_array/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_empty_array/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_empty_array/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_empty_array/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_empty_array/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_empty_string/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_empty_string/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_image_content/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_image_url/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_image_url/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_parse_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_tool_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_two_empty_string/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_two_empty_string/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_call_with_two_empty_string/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_responses_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_completions_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_authentication_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_caching.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_call_with_audio.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_call_with_image.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_call_with_mcp_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_call_with_parse_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_call_with_strict_tool_and_optional_properties.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_call_with_text_encoded_thoughts.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_call_with_tool_error.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_empty_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_mirascope_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_model_not_found.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_openai_compatibility_providers.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_provider_overriding.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_resume_with_override.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_resume_with_override_thinking_and_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_strict_structured_output_compatibility.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_structured_output_parser.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_structured_output_primitive_types.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_structured_output_streaming.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/input/test_structured_output_with_formatting_instructions.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/mlx_lm_cassette.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/README.md +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/conftest.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_call_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_call_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_call_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_call_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_call_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_call_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_call_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_call_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_refusal_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_refusal_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_refusal_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_prompt_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_prompt_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_prompt_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/mlx_lm_cassettes/test_prompt_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_refusal_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_refusal_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_refusal_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_refusal_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_refusal_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- /mirascope-2.0.2/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml → /mirascope-2.1.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_call_with_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_refusal/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_refusal/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output/json/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output/strict/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output/tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output_with_tools/json/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output_with_tools/json/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output_with_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/test_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/test_call_with_thinking.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/test_call_with_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/test_prompt.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/test_structured_output.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/e2e/output/test_structured_output_with_tools.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/fixtures/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/calls/test_call_decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/content/test_audio_content.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/content/test_image_content.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/context/test_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/context/test_context_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/formatting/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/formatting/test_format.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/formatting/test_output_parser.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/formatting/test_partial.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/mcp/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/mcp/example_mcp_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/messages/test_messages.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/models/test_model.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/prompts/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/prompts/test_prompt_decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/anthropic/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/anthropic/test_anthropic_beta_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/anthropic/test_anthropic_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/base/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/base/test_base_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/base/test_params.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/google/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/google/test_google_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/mlx/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/mlx/conftest.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/mlx/encoding/test_transformers.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/mlx/test_client.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/mlx/test_mlx.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/mlx/test_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/openai/test_completions_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/openai/test_openai_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/openai/test_responses_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/test_ollama_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/test_openai_compatible_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/test_provider_registry.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/test_providers.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/providers/test_together_provider.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/responses/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/responses/test_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/responses/test_structured_stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/responses/test_utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/test_error_wrapping.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/tools/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/tools/test_decorator.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/llm/tools/test_tool_schema.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_async_version_registers_new_function.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_async_version_uses_existing_function.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_call.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_call_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_call_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_call_wrapped_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_context_call.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_context_call_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_context_call_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_context_call_with_tags.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_context_call_wrapped_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_async_context_call_wrapped_returns_trace.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_call_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_call_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_call_sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_call_with_tags.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_call_wrapped_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_call_wrapped_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_call_wrapped_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_context_call.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_context_call_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_context_call_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_context_call_with_metadata.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_context_call_with_tags.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_context_call_wrapped_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_traced_context_call_wrapped_returns_trace.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_version_registers_new_function.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_version_uses_existing_function.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_call.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_call_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_call_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_call_wrapped_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_call_wrapped_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_context_call.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_context_call_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_context_call_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_context_call_wrapped_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_async_context_call_wrapped_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_call_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_call_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_call_sync.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_call_with_tags.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_call_wrapped_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_call_wrapped_stream.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_context_call.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_context_call_call_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_context_call_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_context_call_wrapped_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/cassettes/test_versioned_context_call_wrapped_stream_method.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/closure_test_functions/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/closure_test_functions/fakepkg/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/closure_test_functions/main.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/closure_test_functions/other.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/exporters/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/exporters/conftest.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/exporters/test_processors.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/exporters/utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/__init__.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_async_context_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_async_context_stream_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_async_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_async_stream_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_context_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_context_stream_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_async_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_async_records_untracked_params_event.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_records_response_id.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_records_untracked_params_event.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_audio_content.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_base64_image.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_image.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_json_format.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_message_name.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_none_parameters.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_parameters.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_reasoning_model.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_stop_string.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_strict_tool.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_tool_outputs.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_tools.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_tracer_set_to_none.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_without_instrumentation.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_call_async_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_call_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_async_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_stream_async_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_stream_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_stream_async_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_stream_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_async_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_stream_async_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_stream_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_async_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_async_with_tracer_set_to_none.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_async_without_instrumentation.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_exports_genai_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_records_response_id.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_records_untracked_params_event.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_json_format.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_none_parameters.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_tools.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_tracer_set_to_none.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_without_instrumentation.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_stream_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/cassettes/test_tracer_context_with_model_call.yaml +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_common.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_cost_calculation.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_instrumentation.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_model_call_async.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_model_context_call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_model_context_call_async.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_model_context_stream.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_model_context_stream_async.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_model_stream_async.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/instrumentation/llm/test_response.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/test_configuration.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/test_context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/test_metadata_preservation.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/test_missing_dependencies.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/test_propagation.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/test_session.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/test_span.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/test_tracing.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/_internal/test_versioning.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/conftest.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/ops/utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/tests/test_imports.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/typechecking/call.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/typechecking/context.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/typechecking/format.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/typechecking/streams.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/typechecking/tool.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/typechecking/utils.py +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/typings/mlx/__init__.pyi +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/typings/mlx/core.pyi +0 -0
- {mirascope-2.0.2 → mirascope-2.1.0}/typings/mlx/nn.pyi +0 -0
mirascope-2.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mirascope
|
|
3
|
+
Version: 2.1.0
|
|
4
|
+
Summary: Every frontier LLM. One unified interface.
|
|
5
|
+
Project-URL: Homepage, https://mirascope.com
|
|
6
|
+
Project-URL: Documentation, https://mirascope.com/docs/mirascope/v2
|
|
7
|
+
Project-URL: Repository, https://github.com/Mirascope/mirascope/tree/v2
|
|
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>, Dandelion Mané <dandelion@mirascope.com>
|
|
11
|
+
Maintainer-email: William Bakst <william@mirascope.com>, Dandelion Mané <dandelion@mirascope.com>
|
|
12
|
+
License: MIT License
|
|
13
|
+
|
|
14
|
+
Copyright (c) 2026 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,context engineering,developer tools,gemini,llm,llm tools,openai,prompt engineering
|
|
35
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
36
|
+
Classifier: Intended Audience :: Developers
|
|
37
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
38
|
+
Classifier: Programming Language :: Python :: 3
|
|
39
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
42
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
43
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
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>=0.17.0
|
|
50
|
+
Requires-Dist: httpx>=0.27.0
|
|
51
|
+
Requires-Dist: jiter>=0.7.0
|
|
52
|
+
Requires-Dist: pydantic>=2.0.0
|
|
53
|
+
Requires-Dist: typing-extensions>=4.10.0
|
|
54
|
+
Provides-Extra: all
|
|
55
|
+
Requires-Dist: anthropic<1.0,>=0.76.0; extra == 'all'
|
|
56
|
+
Requires-Dist: google-genai<2,>=1.58.0; extra == 'all'
|
|
57
|
+
Requires-Dist: libcst>=1.8.6; extra == 'all'
|
|
58
|
+
Requires-Dist: mcp<2,>=1.25.0; extra == 'all'
|
|
59
|
+
Requires-Dist: mlx-lm<1,>=0.28.4; extra == 'all'
|
|
60
|
+
Requires-Dist: openai<3,>=2.15.0; extra == 'all'
|
|
61
|
+
Requires-Dist: opentelemetry-api<2,>=1.38.0; extra == 'all'
|
|
62
|
+
Requires-Dist: opentelemetry-exporter-otlp<2,>=1.38.0; extra == 'all'
|
|
63
|
+
Requires-Dist: opentelemetry-instrumentation-anthropic<1,>=0.50.0; extra == 'all'
|
|
64
|
+
Requires-Dist: opentelemetry-instrumentation-google-genai<1,>=0.3b0; extra == 'all'
|
|
65
|
+
Requires-Dist: opentelemetry-instrumentation-openai-v2<3,>=2.0b0; extra == 'all'
|
|
66
|
+
Requires-Dist: opentelemetry-instrumentation<1,>=0.59b0; extra == 'all'
|
|
67
|
+
Requires-Dist: opentelemetry-propagator-b3<2,>=1.38.0; extra == 'all'
|
|
68
|
+
Requires-Dist: opentelemetry-propagator-b3>=1.38.0; extra == 'all'
|
|
69
|
+
Requires-Dist: opentelemetry-propagator-jaeger>=1.38.0; extra == 'all'
|
|
70
|
+
Requires-Dist: opentelemetry-sdk<2,>=1.38.0; extra == 'all'
|
|
71
|
+
Requires-Dist: orjson>=3.11.4; extra == 'all'
|
|
72
|
+
Requires-Dist: packaging>=25.0; extra == 'all'
|
|
73
|
+
Requires-Dist: pillow<11,>=10.4.0; extra == 'all'
|
|
74
|
+
Requires-Dist: proto-plus>=1.24.0; extra == 'all'
|
|
75
|
+
Requires-Dist: pydantic-settings>=2.12.0; extra == 'all'
|
|
76
|
+
Provides-Extra: anthropic
|
|
77
|
+
Requires-Dist: anthropic<1.0,>=0.76.0; extra == 'anthropic'
|
|
78
|
+
Provides-Extra: api
|
|
79
|
+
Requires-Dist: pydantic-settings>=2.12.0; extra == 'api'
|
|
80
|
+
Provides-Extra: google
|
|
81
|
+
Requires-Dist: google-genai<2,>=1.58.0; extra == 'google'
|
|
82
|
+
Requires-Dist: pillow<11,>=10.4.0; extra == 'google'
|
|
83
|
+
Requires-Dist: proto-plus>=1.24.0; extra == 'google'
|
|
84
|
+
Provides-Extra: mcp
|
|
85
|
+
Requires-Dist: mcp<2,>=1.25.0; extra == 'mcp'
|
|
86
|
+
Provides-Extra: mlx
|
|
87
|
+
Requires-Dist: mlx-lm<1,>=0.28.4; extra == 'mlx'
|
|
88
|
+
Provides-Extra: openai
|
|
89
|
+
Requires-Dist: openai<3,>=2.15.0; extra == 'openai'
|
|
90
|
+
Provides-Extra: ops
|
|
91
|
+
Requires-Dist: libcst>=1.8.6; extra == 'ops'
|
|
92
|
+
Requires-Dist: opentelemetry-api<2,>=1.38.0; extra == 'ops'
|
|
93
|
+
Requires-Dist: opentelemetry-exporter-otlp<2,>=1.38.0; extra == 'ops'
|
|
94
|
+
Requires-Dist: opentelemetry-instrumentation-anthropic<1,>=0.50.0; extra == 'ops'
|
|
95
|
+
Requires-Dist: opentelemetry-instrumentation-google-genai<1,>=0.3b0; extra == 'ops'
|
|
96
|
+
Requires-Dist: opentelemetry-instrumentation-openai-v2<3,>=2.0b0; extra == 'ops'
|
|
97
|
+
Requires-Dist: opentelemetry-instrumentation<1,>=0.59b0; extra == 'ops'
|
|
98
|
+
Requires-Dist: opentelemetry-propagator-b3<2,>=1.38.0; extra == 'ops'
|
|
99
|
+
Requires-Dist: opentelemetry-propagator-b3>=1.38.0; extra == 'ops'
|
|
100
|
+
Requires-Dist: opentelemetry-propagator-jaeger>=1.38.0; extra == 'ops'
|
|
101
|
+
Requires-Dist: opentelemetry-sdk<2,>=1.38.0; extra == 'ops'
|
|
102
|
+
Requires-Dist: orjson>=3.11.4; extra == 'ops'
|
|
103
|
+
Requires-Dist: packaging>=25.0; extra == 'ops'
|
|
104
|
+
Description-Content-Type: text/markdown
|
|
105
|
+
|
|
106
|
+
# Mirascope Python
|
|
107
|
+
|
|
108
|
+
This directory contains the Python implementation of Mirascope: The LLM Anti-Framework. It's intended as a "Goldilocks API" that affords the fine-grained control you'd get from using raw provider APIs, as well as the type safety and easy ergonomics that are offered by higher-level agent frameworks. Think of Mirascope as the "React" of LLM development, where provider native APIs are HTML/CSS, and the agent frameworks are Angular.
|
|
109
|
+
|
|
110
|
+
## Documentation
|
|
111
|
+
|
|
112
|
+
- [Why use Mirascope?](https://mirascope.com/docs/why)
|
|
113
|
+
- [Mirascope Quickstart](https://mirascope.com/docs/quickstart)
|
|
114
|
+
- [Mirascope Concepts](https://mirascope.com/docs/learn/llm)
|
|
115
|
+
|
|
116
|
+
## Installation
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
# using uv, with all provider deps
|
|
120
|
+
uv add "mirascope[all]"
|
|
121
|
+
|
|
122
|
+
# using uv, with just Anthropic
|
|
123
|
+
uv add "mirascope[anthropic]"
|
|
124
|
+
|
|
125
|
+
# using pip, with all deps
|
|
126
|
+
pip install "mirascope[all]"
|
|
127
|
+
|
|
128
|
+
# using pip, just OpenAI
|
|
129
|
+
pip install "mirascope[openai]"
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
## Usage
|
|
133
|
+
|
|
134
|
+
Here's an example of creating a simple agent, with tool-calling and streaming, using Mirascope. For many more examples, [read the docs](https://mirascope.com/docs).
|
|
135
|
+
|
|
136
|
+
```python
|
|
137
|
+
from mirascope import llm
|
|
138
|
+
|
|
139
|
+
@llm.tool
|
|
140
|
+
def exp(a: float, b: float) -> float:
|
|
141
|
+
"""Compute an exponent"""
|
|
142
|
+
return a ** b
|
|
143
|
+
|
|
144
|
+
@llm.tool
|
|
145
|
+
def add(a: float, b: float) -> float:
|
|
146
|
+
"""Add two numbers"""
|
|
147
|
+
return a + b
|
|
148
|
+
|
|
149
|
+
model = llm.Model("anthropic/claude-haiku-4-5")
|
|
150
|
+
response = model.stream("What is 42 ** 4 + 37 ** 3?", tools=[exp, add])
|
|
151
|
+
|
|
152
|
+
while True:
|
|
153
|
+
for stream in response.streams():
|
|
154
|
+
if stream.content_type == "text":
|
|
155
|
+
for delta in stream:
|
|
156
|
+
print(delta, end="", flush=True)
|
|
157
|
+
elif stream.content_type == "tool_call":
|
|
158
|
+
stream.collect() # consume the stream
|
|
159
|
+
print(f"\n> Calling {stream.tool_name}({stream.partial_args})")
|
|
160
|
+
print()
|
|
161
|
+
if response.tool_calls:
|
|
162
|
+
response = response.resume(response.execute_tools())
|
|
163
|
+
else:
|
|
164
|
+
break
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
## Development Setup
|
|
168
|
+
|
|
169
|
+
1. **Environment Variables**: Copy `.env.example` to `.env` and fill in your API keys:
|
|
170
|
+
```bash
|
|
171
|
+
cp .env.example .env
|
|
172
|
+
# Edit .env with your API keys
|
|
173
|
+
# Necessary for updating e2e snapshot tests
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
2. **Install Dependencies**:
|
|
177
|
+
|
|
178
|
+
```bash
|
|
179
|
+
cd python
|
|
180
|
+
uv sync --all-extras --dev
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
## Helpful Commands:
|
|
184
|
+
|
|
185
|
+
Here are helpful development commands. All must be run from within the `python` directory.
|
|
186
|
+
|
|
187
|
+
- `uv run pyright .`
|
|
188
|
+
|
|
189
|
+
Run typechecking.
|
|
190
|
+
|
|
191
|
+
- `uv run ruff check --fix .`
|
|
192
|
+
|
|
193
|
+
Check ruff linter (fixing issues where possible).
|
|
194
|
+
|
|
195
|
+
- `uv run ruff format .`
|
|
196
|
+
|
|
197
|
+
Run ruff formatter.
|
|
198
|
+
|
|
199
|
+
- `uv run pytest`
|
|
200
|
+
|
|
201
|
+
Run all Python unit tests.
|
|
202
|
+
|
|
203
|
+
- `uv run pytest --cov --cov-config=.coverargc --cov-report=term-missing`
|
|
204
|
+
|
|
205
|
+
Run all Python unit tests, and report code coverage. (We require 100% coverage in CI.)
|
|
206
|
+
|
|
207
|
+
- `uv run pytest --fix`
|
|
208
|
+
|
|
209
|
+
Run all Python unit tests, and update any changed snapshots.
|
|
210
|
+
|
|
211
|
+
- `uvx codespell --config ../.codespellrc`
|
|
212
|
+
|
|
213
|
+
Run codespell, identifying many common spelling mistakes.
|
|
214
|
+
|
|
215
|
+
## Typechecking
|
|
216
|
+
|
|
217
|
+
We prize type safety, both on the API surface and internally. You can run typechecking via `uv run pyright .` within this `python/` directory. (We're looking into supporting `ty` so as to speed up our typechecking.)
|
|
218
|
+
|
|
219
|
+
## Testing
|
|
220
|
+
|
|
221
|
+
This project makes extensive use of e2e tests, which replay real interactions with various LLM providers to ensure that Mirascope truly works on the providers' APIs. We use [VCR.py](https://vcrpy.readthedocs.io/) and [inline-snapshot](https://15r10nk.github.io/inline-snapshot/) to maintain these e2e tests. For more details, read [tests/e2e/README.md](./tests/e2e/README.md).
|
|
222
|
+
|
|
223
|
+
If you make changes to Mirascope that require new snapshots, you should manually delete the outdated cassette files, and then run `uv run pytest python/tests/e2e --fix`. Note that doing so requires real API keys in your `.env` file.
|
|
224
|
+
|
|
225
|
+
We require 100% code coverage in CI. You can get a code coverage report via:
|
|
226
|
+
|
|
227
|
+
`uv run pytest --cov --cov-config=.coverargc --cov-report=term-missing`
|
|
228
|
+
|
|
229
|
+
## Read More
|
|
230
|
+
|
|
231
|
+
For more info on contributing, read [the contributing page in our docs](https://mirascope.com/docs/contributing).
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# Mirascope Python
|
|
2
|
+
|
|
3
|
+
This directory contains the Python implementation of Mirascope: The LLM Anti-Framework. It's intended as a "Goldilocks API" that affords the fine-grained control you'd get from using raw provider APIs, as well as the type safety and easy ergonomics that are offered by higher-level agent frameworks. Think of Mirascope as the "React" of LLM development, where provider native APIs are HTML/CSS, and the agent frameworks are Angular.
|
|
4
|
+
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
- [Why use Mirascope?](https://mirascope.com/docs/why)
|
|
8
|
+
- [Mirascope Quickstart](https://mirascope.com/docs/quickstart)
|
|
9
|
+
- [Mirascope Concepts](https://mirascope.com/docs/learn/llm)
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# using uv, with all provider deps
|
|
15
|
+
uv add "mirascope[all]"
|
|
16
|
+
|
|
17
|
+
# using uv, with just Anthropic
|
|
18
|
+
uv add "mirascope[anthropic]"
|
|
19
|
+
|
|
20
|
+
# using pip, with all deps
|
|
21
|
+
pip install "mirascope[all]"
|
|
22
|
+
|
|
23
|
+
# using pip, just OpenAI
|
|
24
|
+
pip install "mirascope[openai]"
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Usage
|
|
28
|
+
|
|
29
|
+
Here's an example of creating a simple agent, with tool-calling and streaming, using Mirascope. For many more examples, [read the docs](https://mirascope.com/docs).
|
|
30
|
+
|
|
31
|
+
```python
|
|
32
|
+
from mirascope import llm
|
|
33
|
+
|
|
34
|
+
@llm.tool
|
|
35
|
+
def exp(a: float, b: float) -> float:
|
|
36
|
+
"""Compute an exponent"""
|
|
37
|
+
return a ** b
|
|
38
|
+
|
|
39
|
+
@llm.tool
|
|
40
|
+
def add(a: float, b: float) -> float:
|
|
41
|
+
"""Add two numbers"""
|
|
42
|
+
return a + b
|
|
43
|
+
|
|
44
|
+
model = llm.Model("anthropic/claude-haiku-4-5")
|
|
45
|
+
response = model.stream("What is 42 ** 4 + 37 ** 3?", tools=[exp, add])
|
|
46
|
+
|
|
47
|
+
while True:
|
|
48
|
+
for stream in response.streams():
|
|
49
|
+
if stream.content_type == "text":
|
|
50
|
+
for delta in stream:
|
|
51
|
+
print(delta, end="", flush=True)
|
|
52
|
+
elif stream.content_type == "tool_call":
|
|
53
|
+
stream.collect() # consume the stream
|
|
54
|
+
print(f"\n> Calling {stream.tool_name}({stream.partial_args})")
|
|
55
|
+
print()
|
|
56
|
+
if response.tool_calls:
|
|
57
|
+
response = response.resume(response.execute_tools())
|
|
58
|
+
else:
|
|
59
|
+
break
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Development Setup
|
|
63
|
+
|
|
64
|
+
1. **Environment Variables**: Copy `.env.example` to `.env` and fill in your API keys:
|
|
65
|
+
```bash
|
|
66
|
+
cp .env.example .env
|
|
67
|
+
# Edit .env with your API keys
|
|
68
|
+
# Necessary for updating e2e snapshot tests
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
2. **Install Dependencies**:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
cd python
|
|
75
|
+
uv sync --all-extras --dev
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## Helpful Commands:
|
|
79
|
+
|
|
80
|
+
Here are helpful development commands. All must be run from within the `python` directory.
|
|
81
|
+
|
|
82
|
+
- `uv run pyright .`
|
|
83
|
+
|
|
84
|
+
Run typechecking.
|
|
85
|
+
|
|
86
|
+
- `uv run ruff check --fix .`
|
|
87
|
+
|
|
88
|
+
Check ruff linter (fixing issues where possible).
|
|
89
|
+
|
|
90
|
+
- `uv run ruff format .`
|
|
91
|
+
|
|
92
|
+
Run ruff formatter.
|
|
93
|
+
|
|
94
|
+
- `uv run pytest`
|
|
95
|
+
|
|
96
|
+
Run all Python unit tests.
|
|
97
|
+
|
|
98
|
+
- `uv run pytest --cov --cov-config=.coverargc --cov-report=term-missing`
|
|
99
|
+
|
|
100
|
+
Run all Python unit tests, and report code coverage. (We require 100% coverage in CI.)
|
|
101
|
+
|
|
102
|
+
- `uv run pytest --fix`
|
|
103
|
+
|
|
104
|
+
Run all Python unit tests, and update any changed snapshots.
|
|
105
|
+
|
|
106
|
+
- `uvx codespell --config ../.codespellrc`
|
|
107
|
+
|
|
108
|
+
Run codespell, identifying many common spelling mistakes.
|
|
109
|
+
|
|
110
|
+
## Typechecking
|
|
111
|
+
|
|
112
|
+
We prize type safety, both on the API surface and internally. You can run typechecking via `uv run pyright .` within this `python/` directory. (We're looking into supporting `ty` so as to speed up our typechecking.)
|
|
113
|
+
|
|
114
|
+
## Testing
|
|
115
|
+
|
|
116
|
+
This project makes extensive use of e2e tests, which replay real interactions with various LLM providers to ensure that Mirascope truly works on the providers' APIs. We use [VCR.py](https://vcrpy.readthedocs.io/) and [inline-snapshot](https://15r10nk.github.io/inline-snapshot/) to maintain these e2e tests. For more details, read [tests/e2e/README.md](./tests/e2e/README.md).
|
|
117
|
+
|
|
118
|
+
If you make changes to Mirascope that require new snapshots, you should manually delete the outdated cassette files, and then run `uv run pytest python/tests/e2e --fix`. Note that doing so requires real API keys in your `.env` file.
|
|
119
|
+
|
|
120
|
+
We require 100% code coverage in CI. You can get a code coverage report via:
|
|
121
|
+
|
|
122
|
+
`uv run pytest --cov --cov-config=.coverargc --cov-report=term-missing`
|
|
123
|
+
|
|
124
|
+
## Read More
|
|
125
|
+
|
|
126
|
+
For more info on contributing, read [the contributing page in our docs](https://mirascope.com/docs/contributing).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from mirascope import llm
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
@llm.call("anthropic/claude-sonnet-4-5", tools=[llm.WebSearchTool()])
|
|
5
|
+
def weather_assistant(query: str):
|
|
6
|
+
return query
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
response = weather_assistant("What's the current weather in San Francisco?")
|
|
10
|
+
print(response.text())
|
|
11
|
+
# Today features intervals of clouds and sunshine with a couple of showers, with a high of 62°F
|
|
12
|
+
# Partly cloudy skies this morning will give way to occasional showers during the afternoon, with a high of 61°F and a 40% chance of rain
|
|
13
|
+
|
|
14
|
+
# Tonight, expect light rain transitioning to a few showers by morning, with a low of 51°F and a 60% chance of rain
|
|
15
|
+
# The air quality is poor and unhealthy for sensitive groups
|