mirascope 2.0.0__tar.gz → 2.0.0a1__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.0.0a1/.coveragerc +39 -0
- mirascope-2.0.0a1/.env.example +14 -0
- mirascope-2.0.0a1/.gitignore +182 -0
- mirascope-2.0.0a1/LICENSE +21 -0
- mirascope-2.0.0a1/PKG-INFO +126 -0
- mirascope-2.0.0a1/README.md +56 -0
- mirascope-2.0.0a1/examples/intro/context/decorator.py +40 -0
- mirascope-2.0.0a1/examples/intro/context/model.py +41 -0
- mirascope-2.0.0a1/examples/intro/decorator/async.py +17 -0
- mirascope-2.0.0a1/examples/intro/decorator/async_stream.py +18 -0
- mirascope-2.0.0a1/examples/intro/decorator/stream.py +15 -0
- mirascope-2.0.0a1/examples/intro/decorator/sync.py +14 -0
- mirascope-2.0.0a1/examples/intro/format/decorator.py +22 -0
- mirascope-2.0.0a1/examples/intro/format/model.py +26 -0
- mirascope-2.0.0a1/examples/intro/model/async.py +18 -0
- mirascope-2.0.0a1/examples/intro/model/async_stream.py +19 -0
- mirascope-2.0.0a1/examples/intro/model/stream.py +16 -0
- mirascope-2.0.0a1/examples/intro/model/sync.py +15 -0
- mirascope-2.0.0a1/examples/intro/override/decorator.py +16 -0
- mirascope-2.0.0a1/examples/intro/override/model.py +18 -0
- mirascope-2.0.0a1/examples/intro/parameters/decorator.py +18 -0
- mirascope-2.0.0a1/examples/intro/parameters/model.py +19 -0
- mirascope-2.0.0a1/examples/intro/resume/decorator.py +17 -0
- mirascope-2.0.0a1/examples/intro/resume/model.py +18 -0
- mirascope-2.0.0a1/examples/intro/system_messages/decorator.py +18 -0
- mirascope-2.0.0a1/examples/intro/system_messages/model.py +20 -0
- mirascope-2.0.0a1/examples/intro/tool_call/decorator.py +36 -0
- mirascope-2.0.0a1/examples/intro/tool_call/model.py +36 -0
- mirascope-2.0.0a1/examples/misc/anthropic_redacted_thinking.py +18 -0
- mirascope-2.0.0a1/examples/misc/openai_responses_reasoning.py +20 -0
- mirascope-2.0.0a1/examples/sazed/sazed.py +27 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async.py +30 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_context.py +38 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_context_structured.py +50 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_stream.py +31 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_stream_context.py +41 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_stream_context_structured.py +50 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_stream_structured.py +40 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_stream_tools.py +51 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_stream_tools_context.py +63 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_stream_tools_context_structured.py +72 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_stream_tools_structured.py +60 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_structured.py +40 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_tools.py +40 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_tools_context.py +50 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_tools_context_structured.py +62 -0
- mirascope-2.0.0a1/examples/sazed/sazed_async_tools_structured.py +50 -0
- mirascope-2.0.0a1/examples/sazed/sazed_context.py +36 -0
- mirascope-2.0.0a1/examples/sazed/sazed_context_structured.py +46 -0
- mirascope-2.0.0a1/examples/sazed/sazed_stream.py +28 -0
- mirascope-2.0.0a1/examples/sazed/sazed_stream_context.py +37 -0
- mirascope-2.0.0a1/examples/sazed/sazed_stream_context_structured.py +48 -0
- mirascope-2.0.0a1/examples/sazed/sazed_stream_structured.py +37 -0
- mirascope-2.0.0a1/examples/sazed/sazed_stream_tools.py +48 -0
- mirascope-2.0.0a1/examples/sazed/sazed_stream_tools_context.py +59 -0
- mirascope-2.0.0a1/examples/sazed/sazed_stream_tools_context_structured.py +70 -0
- mirascope-2.0.0a1/examples/sazed/sazed_stream_tools_structured.py +57 -0
- mirascope-2.0.0a1/examples/sazed/sazed_structured.py +37 -0
- mirascope-2.0.0a1/examples/sazed/sazed_tools.py +37 -0
- mirascope-2.0.0a1/examples/sazed/sazed_tools_context.py +48 -0
- mirascope-2.0.0a1/examples/sazed/sazed_tools_context_structured.py +58 -0
- mirascope-2.0.0a1/examples/sazed/sazed_tools_structured.py +47 -0
- mirascope-2.0.0a1/lint-staged.ts +39 -0
- mirascope-2.0.0a1/mirascope/__init__.py +5 -0
- mirascope-2.0.0a1/mirascope/graphs/__init__.py +22 -0
- mirascope-2.0.0a1/mirascope/graphs/finite_state_machine.py +625 -0
- mirascope-2.0.0a1/mirascope/llm/__init__.py +216 -0
- mirascope-2.0.0a1/mirascope/llm/agents/__init__.py +15 -0
- mirascope-2.0.0a1/mirascope/llm/agents/agent.py +97 -0
- mirascope-2.0.0a1/mirascope/llm/agents/agent_template.py +45 -0
- mirascope-2.0.0a1/mirascope/llm/agents/decorator.py +176 -0
- mirascope-2.0.0a1/mirascope/llm/calls/__init__.py +16 -0
- mirascope-2.0.0a1/mirascope/llm/calls/base_call.py +33 -0
- mirascope-2.0.0a1/mirascope/llm/calls/calls.py +315 -0
- mirascope-2.0.0a1/mirascope/llm/calls/decorator.py +255 -0
- mirascope-2.0.0a1/mirascope/llm/clients/__init__.py +34 -0
- mirascope-2.0.0a1/mirascope/llm/clients/_missing_import_stubs.py +47 -0
- mirascope-2.0.0a1/mirascope/llm/clients/anthropic/__init__.py +25 -0
- mirascope-2.0.0a1/mirascope/llm/clients/anthropic/_utils/__init__.py +13 -0
- mirascope-2.0.0a1/mirascope/llm/clients/anthropic/_utils/decode.py +244 -0
- mirascope-2.0.0a1/mirascope/llm/clients/anthropic/_utils/encode.py +243 -0
- mirascope-2.0.0a1/mirascope/llm/clients/anthropic/clients.py +819 -0
- mirascope-2.0.0a1/mirascope/llm/clients/anthropic/model_ids.py +8 -0
- mirascope-2.0.0a1/mirascope/llm/clients/base/__init__.py +15 -0
- mirascope-2.0.0a1/mirascope/llm/clients/base/_utils.py +192 -0
- mirascope-2.0.0a1/mirascope/llm/clients/base/client.py +1256 -0
- mirascope-2.0.0a1/mirascope/llm/clients/base/params.py +93 -0
- mirascope-2.0.0a1/mirascope/llm/clients/google/__init__.py +20 -0
- mirascope-2.0.0a1/mirascope/llm/clients/google/_utils/__init__.py +13 -0
- mirascope-2.0.0a1/mirascope/llm/clients/google/_utils/decode.py +231 -0
- mirascope-2.0.0a1/mirascope/llm/clients/google/_utils/encode.py +279 -0
- mirascope-2.0.0a1/mirascope/llm/clients/google/clients.py +853 -0
- mirascope-2.0.0a1/mirascope/llm/clients/google/model_ids.py +15 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/__init__.py +25 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/completions/__init__.py +28 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/completions/_utils/__init__.py +13 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/completions/_utils/decode.py +187 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/completions/_utils/encode.py +358 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/completions/_utils/model_features.py +81 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/completions/clients.py +833 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/completions/model_ids.py +8 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/responses/__init__.py +26 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/responses/_utils/__init__.py +13 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/responses/_utils/decode.py +194 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/responses/_utils/encode.py +333 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/responses/_utils/model_features.py +87 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/responses/clients.py +832 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/responses/model_ids.py +8 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/shared/__init__.py +7 -0
- mirascope-2.0.0a1/mirascope/llm/clients/openai/shared/_utils.py +55 -0
- mirascope-2.0.0a1/mirascope/llm/clients/providers.py +175 -0
- mirascope-2.0.0a1/mirascope/llm/content/__init__.py +70 -0
- mirascope-2.0.0a1/mirascope/llm/content/tool_call.py +63 -0
- mirascope-2.0.0a1/mirascope/llm/content/tool_output.py +26 -0
- mirascope-2.0.0a1/mirascope/llm/context/_utils.py +28 -0
- mirascope-2.0.0a1/mirascope/llm/exceptions.py +105 -0
- mirascope-2.0.0a1/mirascope/llm/formatting/__init__.py +22 -0
- mirascope-2.0.0a1/mirascope/llm/formatting/_utils.py +74 -0
- mirascope-2.0.0a1/mirascope/llm/formatting/format.py +104 -0
- mirascope-2.0.0a1/mirascope/llm/formatting/from_call_args.py +30 -0
- mirascope-2.0.0a1/mirascope/llm/formatting/partial.py +58 -0
- mirascope-2.0.0a1/mirascope/llm/formatting/types.py +109 -0
- mirascope-2.0.0a1/mirascope/llm/mcp/__init__.py +5 -0
- mirascope-2.0.0a1/mirascope/llm/mcp/client.py +118 -0
- mirascope-2.0.0a1/mirascope/llm/messages/__init__.py +32 -0
- mirascope-2.0.0a1/mirascope/llm/messages/message.py +182 -0
- mirascope-2.0.0a1/mirascope/llm/models/__init__.py +16 -0
- mirascope-2.0.0a1/mirascope/llm/models/models.py +1243 -0
- mirascope-2.0.0a1/mirascope/llm/prompts/__init__.py +33 -0
- mirascope-2.0.0a1/mirascope/llm/prompts/_utils.py +60 -0
- mirascope-2.0.0a1/mirascope/llm/prompts/decorator.py +286 -0
- mirascope-2.0.0a1/mirascope/llm/prompts/protocols.py +99 -0
- mirascope-2.0.0a1/mirascope/llm/responses/__init__.py +57 -0
- mirascope-2.0.0a1/mirascope/llm/responses/_utils.py +56 -0
- mirascope-2.0.0a1/mirascope/llm/responses/base_response.py +91 -0
- mirascope-2.0.0a1/mirascope/llm/responses/base_stream_response.py +697 -0
- mirascope-2.0.0a1/mirascope/llm/responses/finish_reason.py +27 -0
- mirascope-2.0.0a1/mirascope/llm/responses/response.py +345 -0
- mirascope-2.0.0a1/mirascope/llm/responses/root_response.py +177 -0
- mirascope-2.0.0a1/mirascope/llm/responses/stream_response.py +572 -0
- mirascope-2.0.0a1/mirascope/llm/tools/__init__.py +40 -0
- mirascope-2.0.0a1/mirascope/llm/tools/_utils.py +25 -0
- mirascope-2.0.0a1/mirascope/llm/tools/decorator.py +175 -0
- mirascope-2.0.0a1/mirascope/llm/tools/protocols.py +96 -0
- mirascope-2.0.0a1/mirascope/llm/tools/tool_schema.py +246 -0
- mirascope-2.0.0a1/mirascope/llm/tools/toolkit.py +152 -0
- mirascope-2.0.0a1/mirascope/llm/tools/tools.py +169 -0
- mirascope-2.0.0a1/pyproject.toml +164 -0
- mirascope-2.0.0a1/scripts/example_generator.ts +334 -0
- mirascope-2.0.0a1/scripts/regenerate_examples.ts +127 -0
- mirascope-2.0.0a1/scripts/update_openai_completions_model_features.py +233 -0
- mirascope-2.0.0a1/scripts/update_openai_responses_model_features.py +224 -0
- mirascope-2.0.0a1/tests/conftest.py +22 -0
- mirascope-2.0.0a1/tests/e2e/conftest.py +166 -0
- mirascope-2.0.0a1/tests/e2e/input/README.md +60 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_image_content/anthropic_claude_sonnet_4_0.yaml +110 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_image_url/anthropic_claude_sonnet_4_0.yaml +110 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_params/anthropic_claude_sonnet_4_0.yaml +108 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_params/google_gemini_2_5_flash.yaml +63 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_params/openai_completions_gpt_4o.yaml +110 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_params/openai_responses_gpt_4o.yaml +103 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/anthropic_claude_sonnet_4_0.yaml +119 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/google_gemini_2_5_flash.yaml +74 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/openai_completions_gpt_4o.yaml +122 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/openai_responses_gpt_4o.yaml +115 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override/anthropic_claude_sonnet_4_0.yaml +169 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override/openai_completions_gpt_4o.yaml +213 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override/openai_responses_gpt_4o.yaml +210 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override_context/anthropic_claude_sonnet_4_0.yaml +170 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override_context/google_gemini_2_5_flash.yaml +168 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override_context/openai_completions_gpt_4o.yaml +214 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override_context/openai_responses_gpt_4o.yaml +211 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/anthropic_claude_sonnet_4_0.yaml +185 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/google_gemini_2_5_flash.yaml +188 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/openai_completions_gpt_4o.yaml +231 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/openai_responses_gpt_4o.yaml +228 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_0.yaml +114 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/google_gemini_2_5_flash.yaml +70 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_0.yaml +112 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/google_gemini_2_5_flash.yaml +66 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/google_gemini_2_5_flash.yaml +70 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_0.yaml +114 -0
- mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/google_gemini_2_5_flash.yaml +83 -0
- mirascope-2.0.0a1/tests/e2e/input/conftest.py +116 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_audio/anthropic_claude_sonnet_4_0_snapshots.py +13 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_audio/google_gemini_2_5_flash_snapshots.py +58 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_audio/openai_completions_gpt_4o_snapshots.py +13 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_audio/openai_completions_gpt_audio_snapshots.py +46 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_audio/openai_responses_gpt_4o_snapshots.py +13 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_image_content/anthropic_claude_sonnet_4_0_snapshots.py +55 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_image_content/google_gemini_2_5_flash_snapshots.py +62 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_image_content/openai_completions_gpt_4o_snapshots.py +50 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_image_content/openai_responses_gpt_4o_snapshots.py +61 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_image_url/anthropic_claude_sonnet_4_0_snapshots.py +54 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_image_url/google_gemini_2_5_flash_snapshots.py +13 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_image_url/openai_completions_gpt_4o_snapshots.py +49 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_image_url/openai_responses_gpt_4o_snapshots.py +60 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_params/anthropic_claude_sonnet_4_0_snapshots.py +50 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_params/google_gemini_2_5_flash_snapshots.py +72 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_params/openai_completions_gpt_4o_snapshots.py +48 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_params/openai_responses_gpt_4o_snapshots.py +61 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override/anthropic_claude_sonnet_4_0_snapshots.py +67 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override/google_gemini_2_5_flash_snapshots.py +73 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override/openai_completions_gpt_4o_snapshots.py +51 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override/openai_responses_gpt_4o_snapshots.py +60 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override_context/anthropic_claude_sonnet_4_0_snapshots.py +67 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override_context/google_gemini_2_5_flash_snapshots.py +77 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override_context/openai_completions_gpt_4o_snapshots.py +53 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override_context/openai_responses_gpt_4o_snapshots.py +62 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/anthropic_claude_sonnet_4_0_snapshots.py +138 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/google_gemini_2_5_flash_snapshots.py +112 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_completions_gpt_4o_snapshots.py +106 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_responses_gpt_4o_snapshots.py +111 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_0_snapshots.py +77 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/google_gemini_2_5_flash_snapshots.py +79 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_0_snapshots.py +84 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/google_gemini_2_5_flash_snapshots.py +91 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_completions_gpt_4o_snapshots.py +79 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_responses_gpt_4o_snapshots.py +90 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_completions_gpt_4o_snapshots.py +67 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_responses_gpt_4o_snapshots.py +78 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_0_snapshots.py +14 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/google_gemini_2_5_flash_snapshots.py +79 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_completions_gpt_4o_snapshots.py +67 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_responses_gpt_4o_snapshots.py +78 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_0_snapshots.py +77 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/google_gemini_2_5_flash_snapshots.py +87 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_completions_gpt_4o_snapshots.py +76 -0
- mirascope-2.0.0a1/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_responses_gpt_4o_snapshots.py +72 -0
- mirascope-2.0.0a1/tests/e2e/input/test_call_with_audio.py +43 -0
- mirascope-2.0.0a1/tests/e2e/input/test_call_with_image.py +61 -0
- mirascope-2.0.0a1/tests/e2e/input/test_call_with_params.py +53 -0
- mirascope-2.0.0a1/tests/e2e/input/test_call_with_text_encoded_thoughts.py +92 -0
- mirascope-2.0.0a1/tests/e2e/input/test_resume_with_override.py +74 -0
- mirascope-2.0.0a1/tests/e2e/input/test_resume_with_override_thinking_and_tools.py +63 -0
- mirascope-2.0.0a1/tests/e2e/input/test_structured_output_with_formatting_instructions.py +59 -0
- mirascope-2.0.0a1/tests/e2e/output/README.md +86 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/async.yaml +108 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/async_stream.yaml +163 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/stream.yaml +162 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/sync.yaml +108 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/openai_completions_gpt_4o/async_stream.yaml +155 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/openai_completions_gpt_4o/stream.yaml +140 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/anthropic_claude_sonnet_4_0/async.yaml +302 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/anthropic_claude_sonnet_4_0/async_stream.yaml +476 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/anthropic_claude_sonnet_4_0/stream.yaml +554 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/anthropic_claude_sonnet_4_0/sync.yaml +387 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/google_gemini_2_5_flash/async.yaml +146 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/google_gemini_2_5_flash/async_stream.yaml +177 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/google_gemini_2_5_flash/stream.yaml +227 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/google_gemini_2_5_flash/sync.yaml +200 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/openai_responses_gpt_5/async.yaml +247 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/openai_responses_gpt_5/async_stream.yaml +1342 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/openai_responses_gpt_5/stream.yaml +1184 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_thinking_true/openai_responses_gpt_5/sync.yaml +261 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/async.yaml +224 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/async_stream.yaml +399 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/stream.yaml +399 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/sync.yaml +225 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/openai_completions_gpt_4o/async.yaml +223 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/openai_completions_gpt_4o/async_stream.yaml +379 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/openai_completions_gpt_4o/stream.yaml +378 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/openai_completions_gpt_4o/sync.yaml +223 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/openai_responses_gpt_4o/async.yaml +218 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/openai_responses_gpt_4o/async_stream.yaml +467 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/openai_responses_gpt_4o/stream.yaml +489 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call_with_tools/openai_responses_gpt_4o/sync.yaml +218 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/async.yaml +109 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/async_stream.yaml +177 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/stream.yaml +176 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/sync.yaml +109 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/openai_completions_gpt_4o/async_stream.yaml +274 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/openai_completions_gpt_4o/stream.yaml +278 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/async.yaml +122 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/async_stream.yaml +1036 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/stream.yaml +1024 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/sync.yaml +121 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/openai_completions_gpt_4o/async_stream.yaml +152 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/openai_completions_gpt_4o/stream.yaml +144 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/async.yaml +117 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/async_stream.yaml +266 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/stream.yaml +259 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/sync.yaml +117 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/async.yaml +71 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/async_stream.yaml +69 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/stream.yaml +69 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/sync.yaml +71 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/async.yaml +123 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/async_stream.yaml +194 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/stream.yaml +206 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/sync.yaml +123 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/async.yaml +76 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/async_stream.yaml +80 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/stream.yaml +80 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/sync.yaml +76 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/openai_completions_gpt_4o/async.yaml +121 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/openai_completions_gpt_4o/async_stream.yaml +276 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/openai_completions_gpt_4o/stream.yaml +276 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/openai_completions_gpt_4o/async_stream.yaml +203 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/openai_completions_gpt_4o/stream.yaml +203 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/async.yaml +71 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/async_stream.yaml +69 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/stream.yaml +69 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/sync.yaml +71 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/openai_completions_gpt_4o/async_stream.yaml +203 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/openai_completions_gpt_4o/stream.yaml +203 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/async.yaml +117 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/async_stream.yaml +271 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/stream.yaml +285 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/sync.yaml +117 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/async.yaml +89 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/async_stream.yaml +76 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/stream.yaml +76 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/sync.yaml +90 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/openai_completions_gpt_4o/async.yaml +117 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/openai_completions_gpt_4o/async_stream.yaml +204 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/openai_completions_gpt_4o/stream.yaml +204 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/async.yaml +230 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/async_stream.yaml +389 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/stream.yaml +398 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/sync.yaml +230 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/async.yaml +206 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/async_stream.yaml +152 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/stream.yaml +152 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/sync.yaml +207 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/async.yaml +239 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/async_stream.yaml +378 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/stream.yaml +387 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/sync.yaml +239 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_completions_gpt_4o/async.yaml +237 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_completions_gpt_4o/async_stream.yaml +353 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_completions_gpt_4o/stream.yaml +404 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_completions_gpt_4o/sync.yaml +237 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_responses_gpt_4o/async.yaml +233 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_responses_gpt_4o/async_stream.yaml +536 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_responses_gpt_4o/stream.yaml +536 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_responses_gpt_4o/sync.yaml +233 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_completions_gpt_4o/async.yaml +223 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_completions_gpt_4o/async_stream.yaml +339 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_completions_gpt_4o/stream.yaml +339 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_completions_gpt_4o/sync.yaml +223 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_responses_gpt_4o/async.yaml +223 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_responses_gpt_4o/async_stream.yaml +447 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_responses_gpt_4o/stream.yaml +447 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_responses_gpt_4o/sync.yaml +223 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_completions_gpt_4o/async.yaml +226 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_completions_gpt_4o/async_stream.yaml +339 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_completions_gpt_4o/stream.yaml +339 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_completions_gpt_4o/sync.yaml +226 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_responses_gpt_4o/async.yaml +223 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_responses_gpt_4o/async_stream.yaml +447 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_responses_gpt_4o/stream.yaml +615 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_responses_gpt_4o/sync.yaml +224 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/async.yaml +230 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/async_stream.yaml +424 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/stream.yaml +431 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/sync.yaml +230 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/async.yaml +221 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/async_stream.yaml +152 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/stream.yaml +152 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/sync.yaml +185 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_completions_gpt_4o/async.yaml +231 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_completions_gpt_4o/async_stream.yaml +345 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_completions_gpt_4o/stream.yaml +345 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_completions_gpt_4o/sync.yaml +231 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_responses_gpt_4o/async.yaml +232 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_responses_gpt_4o/async_stream.yaml +448 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_responses_gpt_4o/stream.yaml +448 -0
- mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_responses_gpt_4o/sync.yaml +231 -0
- mirascope-2.0.0a1/tests/e2e/output/conftest.py +157 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call/anthropic_claude_sonnet_4_0_snapshots.py +116 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call/google_gemini_2_5_flash_snapshots.py +242 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call/openai_completions_gpt_4o_snapshots.py +100 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call/openai_responses_gpt_4o_snapshots.py +152 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call_with_thinking_true/anthropic_claude_sonnet_4_0_snapshots.py +704 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call_with_thinking_true/google_gemini_2_5_flash_snapshots.py +783 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call_with_thinking_true/openai_responses_gpt_5_snapshots.py +683 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +515 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call_with_tools/google_gemini_2_5_flash_snapshots.py +613 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call_with_tools/openai_completions_gpt_4o_snapshots.py +423 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_call_with_tools/openai_responses_gpt_4o_snapshots.py +515 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_max_tokens/anthropic_claude_sonnet_4_0_snapshots.py +239 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_max_tokens/google_gemini_2_5_flash_snapshots.py +179 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_max_tokens/openai_completions_gpt_4o_snapshots.py +189 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_max_tokens/openai_responses_gpt_4o_snapshots.py +214 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_refusal/anthropic_claude_sonnet_4_0_snapshots.py +322 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_refusal/google_gemini_2_5_flash_snapshots.py +280 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_refusal/openai_completions_gpt_4o_snapshots.py +187 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_refusal/openai_responses_gpt_4o_snapshots.py +225 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/anthropic_claude_sonnet_4_0_snapshots.py +349 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/google_gemini_2_5_flash_snapshots.py +368 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/json/anthropic_claude_sonnet_4_0_snapshots.py +771 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/json/google_gemini_2_5_flash_snapshots.py +821 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/json/openai_completions_gpt_4o_snapshots.py +719 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/json/openai_responses_gpt_4o_snapshots.py +789 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/openai_completions_gpt_4o_snapshots.py +272 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/openai_responses_gpt_4o_snapshots.py +324 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_claude_sonnet_4_0_snapshots.py +50 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/strict/google_gemini_2_5_flash_snapshots.py +386 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/strict/openai_completions_gpt_4o_snapshots.py +272 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/strict/openai_responses_gpt_4o_snapshots.py +324 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_claude_sonnet_4_0_snapshots.py +349 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/tool/google_gemini_2_5_flash_snapshots.py +389 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/tool/openai_completions_gpt_4o_snapshots.py +307 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output/tool/openai_responses_gpt_4o_snapshots.py +317 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +499 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/google_gemini_2_5_flash_snapshots.py +579 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0_snapshots.py +803 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/json/google_gemini_2_5_flash_snapshots.py +46 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_completions_gpt_4o_snapshots.py +694 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_responses_gpt_4o_snapshots.py +791 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_completions_gpt_4o_snapshots.py +412 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_responses_gpt_4o_snapshots.py +474 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_0_snapshots.py +50 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/google_gemini_2_5_flash_snapshots.py +46 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_completions_gpt_4o_snapshots.py +412 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_responses_gpt_4o_snapshots.py +508 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0_snapshots.py +499 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/google_gemini_2_5_flash_snapshots.py +579 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_completions_gpt_4o_snapshots.py +451 -0
- mirascope-2.0.0a1/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_responses_gpt_4o_snapshots.py +471 -0
- mirascope-2.0.0a1/tests/e2e/output/test_call.py +188 -0
- mirascope-2.0.0a1/tests/e2e/output/test_call_with_thinking_true.py +112 -0
- mirascope-2.0.0a1/tests/e2e/output/test_call_with_tools.py +393 -0
- mirascope-2.0.0a1/tests/e2e/output/test_max_tokens.py +94 -0
- mirascope-2.0.0a1/tests/e2e/output/test_refusal.py +118 -0
- mirascope-2.0.0a1/tests/e2e/output/test_structured_output.py +326 -0
- mirascope-2.0.0a1/tests/e2e/output/test_structured_output_with_tools.py +434 -0
- mirascope-2.0.0a1/tests/llm/calls/cassettes/TestCall.test_call_decorator_e2e_model_override.yaml +274 -0
- mirascope-2.0.0a1/tests/llm/calls/cassettes/TestContextCall.test_context_call_decorator_e2e_model_override.yaml +273 -0
- mirascope-2.0.0a1/tests/llm/calls/test_decorator.py +395 -0
- mirascope-2.0.0a1/tests/llm/clients/anthropic/test_client.py +51 -0
- mirascope-2.0.0a1/tests/llm/clients/base/test_params.py +55 -0
- mirascope-2.0.0a1/tests/llm/clients/base/test_utils.py +150 -0
- mirascope-2.0.0a1/tests/llm/clients/google/test_client.py +71 -0
- mirascope-2.0.0a1/tests/llm/clients/openai/test_completions_client.py +160 -0
- mirascope-2.0.0a1/tests/llm/clients/openai/test_responses_client.py +108 -0
- mirascope-2.0.0a1/tests/llm/clients/test_providers.py +53 -0
- mirascope-2.0.0a1/tests/llm/content/test_audio_content.py +265 -0
- mirascope-2.0.0a1/tests/llm/content/test_image_content.py +290 -0
- mirascope-2.0.0a1/tests/llm/formatting/test_format.py +149 -0
- mirascope-2.0.0a1/tests/llm/messages/test_messages.py +163 -0
- mirascope-2.0.0a1/tests/llm/models/test_model.py +46 -0
- mirascope-2.0.0a1/tests/llm/prompts/test_decorator.py +285 -0
- mirascope-2.0.0a1/tests/llm/responses/test_response.py +765 -0
- mirascope-2.0.0a1/tests/llm/responses/test_stream_response.py +1805 -0
- mirascope-2.0.0a1/tests/llm/responses/test_utils.py +176 -0
- mirascope-2.0.0a1/tests/llm/tools/test_decorator.py +415 -0
- mirascope-2.0.0a1/tests/llm/tools/test_tool_schema.py +416 -0
- mirascope-2.0.0a1/tests/llm/tools/test_toolkit.py +190 -0
- mirascope-2.0.0a1/tests/utils.py +181 -0
- mirascope-2.0.0a1/typechecking/agent.py +85 -0
- mirascope-2.0.0a1/typechecking/call.py +172 -0
- mirascope-2.0.0a1/typechecking/tool.py +71 -0
- mirascope-2.0.0a1/typechecking/utils.py +87 -0
- mirascope-2.0.0a1/uv.lock +2032 -0
- mirascope-2.0.0/.coveragerc +0 -44
- mirascope-2.0.0/.env.example +0 -17
- mirascope-2.0.0/.gitignore +0 -183
- mirascope-2.0.0/AGENTS.md +0 -44
- mirascope-2.0.0/LICENSE +0 -21
- mirascope-2.0.0/PKG-INFO +0 -203
- mirascope-2.0.0/README.md +0 -104
- mirascope-2.0.0/examples/agents/basic.py +0 -97
- mirascope-2.0.0/examples/async/async_streaming.py +0 -17
- mirascope-2.0.0/examples/async/async_tools.py +0 -28
- mirascope-2.0.0/examples/async/basic.py +0 -16
- mirascope-2.0.0/examples/async/basic_model.py +0 -13
- mirascope-2.0.0/examples/async/basic_prompt.py +0 -16
- mirascope-2.0.0/examples/async/parallel.py +0 -19
- mirascope-2.0.0/examples/calls/access_prompt.py +0 -20
- mirascope-2.0.0/examples/calls/basic.py +0 -10
- mirascope-2.0.0/examples/calls/override.py +0 -12
- mirascope-2.0.0/examples/calls/return_types.py +0 -13
- mirascope-2.0.0/examples/calls/with_params.py +0 -10
- mirascope-2.0.0/examples/chaining/basic_call.py +0 -26
- mirascope-2.0.0/examples/chaining/basic_model.py +0 -26
- mirascope-2.0.0/examples/chaining/basic_prompt.py +0 -26
- mirascope-2.0.0/examples/chaining/conditional_call.py +0 -35
- mirascope-2.0.0/examples/chaining/conditional_model.py +0 -39
- mirascope-2.0.0/examples/chaining/conditional_prompt.py +0 -34
- mirascope-2.0.0/examples/chaining/nested_call.py +0 -34
- mirascope-2.0.0/examples/chaining/nested_model.py +0 -32
- mirascope-2.0.0/examples/chaining/nested_prompt.py +0 -34
- mirascope-2.0.0/examples/chaining/parallel_call.py +0 -39
- mirascope-2.0.0/examples/chaining/parallel_model.py +0 -41
- mirascope-2.0.0/examples/chaining/parallel_prompt.py +0 -42
- mirascope-2.0.0/examples/context/async_context.py +0 -36
- mirascope-2.0.0/examples/context/basic_call.py +0 -31
- mirascope-2.0.0/examples/context/basic_model.py +0 -31
- mirascope-2.0.0/examples/context/basic_prompt.py +0 -32
- mirascope-2.0.0/examples/errors/basic.py +0 -17
- mirascope-2.0.0/examples/intro/context/decorator.py +0 -40
- mirascope-2.0.0/examples/intro/context/model.py +0 -41
- mirascope-2.0.0/examples/intro/decorator/async.py +0 -17
- mirascope-2.0.0/examples/intro/decorator/async_stream.py +0 -18
- mirascope-2.0.0/examples/intro/decorator/stream.py +0 -15
- mirascope-2.0.0/examples/intro/decorator/sync.py +0 -14
- mirascope-2.0.0/examples/intro/format/decorator.py +0 -22
- mirascope-2.0.0/examples/intro/format/model.py +0 -25
- mirascope-2.0.0/examples/intro/local_model/decorator.py +0 -21
- mirascope-2.0.0/examples/intro/local_model/model.py +0 -17
- mirascope-2.0.0/examples/intro/mlx/decorator.py +0 -14
- mirascope-2.0.0/examples/intro/mlx/model.py +0 -10
- mirascope-2.0.0/examples/intro/model/async.py +0 -17
- mirascope-2.0.0/examples/intro/model/async_stream.py +0 -18
- mirascope-2.0.0/examples/intro/model/stream.py +0 -15
- mirascope-2.0.0/examples/intro/model/sync.py +0 -14
- mirascope-2.0.0/examples/intro/override/decorator.py +0 -16
- mirascope-2.0.0/examples/intro/override/model.py +0 -17
- mirascope-2.0.0/examples/intro/parameters/decorator.py +0 -17
- mirascope-2.0.0/examples/intro/parameters/model.py +0 -17
- mirascope-2.0.0/examples/intro/register_provider/decorator.py +0 -25
- mirascope-2.0.0/examples/intro/register_provider/model.py +0 -21
- mirascope-2.0.0/examples/intro/resume/decorator.py +0 -17
- mirascope-2.0.0/examples/intro/resume/model.py +0 -17
- mirascope-2.0.0/examples/intro/system_messages/decorator.py +0 -18
- mirascope-2.0.0/examples/intro/system_messages/model.py +0 -20
- mirascope-2.0.0/examples/intro/tool_call/decorator.py +0 -35
- mirascope-2.0.0/examples/intro/tool_call/model.py +0 -35
- mirascope-2.0.0/examples/local_models/local_mlx.py +0 -14
- mirascope-2.0.0/examples/local_models/local_ollama.py +0 -14
- mirascope-2.0.0/examples/local_models/local_vllm.py +0 -21
- mirascope-2.0.0/examples/mcp/basic_call.py +0 -23
- mirascope-2.0.0/examples/mcp/basic_model.py +0 -23
- mirascope-2.0.0/examples/mcp/basic_prompt.py +0 -25
- mirascope-2.0.0/examples/mcp/combined_tools.py +0 -43
- mirascope-2.0.0/examples/mcp_with_thinking.py +0 -35
- mirascope-2.0.0/examples/messages/audio_content.py +0 -10
- mirascope-2.0.0/examples/messages/basic.py +0 -8
- mirascope-2.0.0/examples/messages/image_content.py +0 -13
- mirascope-2.0.0/examples/messages/multimodal.py +0 -12
- mirascope-2.0.0/examples/messages/roles.py +0 -16
- mirascope-2.0.0/examples/messages/text_content.py +0 -7
- mirascope-2.0.0/examples/misc/anthropic_redacted_thinking.py +0 -18
- mirascope-2.0.0/examples/misc/ask_llm.py +0 -86
- mirascope-2.0.0/examples/misc/local_clickhouse_verify.py +0 -253
- mirascope-2.0.0/examples/misc/local_versioning_example.py +0 -92
- mirascope-2.0.0/examples/misc/openai_responses_reasoning.py +0 -20
- mirascope-2.0.0/examples/misc/opentelemetry_call_trace.py +0 -84
- mirascope-2.0.0/examples/misc/opentelemetry_genai.py +0 -30
- mirascope-2.0.0/examples/misc/search_span.py +0 -253
- mirascope-2.0.0/examples/models/basic.py +0 -5
- mirascope-2.0.0/examples/models/call_patterns.py +0 -24
- mirascope-2.0.0/examples/models/override.py +0 -14
- mirascope-2.0.0/examples/models/with_params.py +0 -5
- mirascope-2.0.0/examples/ops/basic_trace.py +0 -12
- mirascope-2.0.0/examples/ops/configure_basic.py +0 -11
- mirascope-2.0.0/examples/ops/configure_cloud.py +0 -9
- mirascope-2.0.0/examples/ops/configure_otlp.py +0 -15
- mirascope-2.0.0/examples/ops/context_propagation.py +0 -32
- mirascope-2.0.0/examples/ops/instrument_llm.py +0 -15
- mirascope-2.0.0/examples/ops/session_attributes.py +0 -18
- mirascope-2.0.0/examples/ops/session_basic.py +0 -16
- mirascope-2.0.0/examples/ops/span_basic.py +0 -18
- mirascope-2.0.0/examples/ops/span_events.py +0 -27
- mirascope-2.0.0/examples/ops/trace_llm_call.py +0 -12
- mirascope-2.0.0/examples/ops/trace_with_metadata.py +0 -11
- mirascope-2.0.0/examples/ops/trace_wrapped.py +0 -14
- mirascope-2.0.0/examples/ops/version_basic.py +0 -18
- mirascope-2.0.0/examples/ops/version_llm_call.py +0 -18
- mirascope-2.0.0/examples/ops/version_with_metadata.py +0 -23
- mirascope-2.0.0/examples/prompts/basic.py +0 -10
- mirascope-2.0.0/examples/prompts/basic_without_prompt.py +0 -10
- mirascope-2.0.0/examples/prompts/messages_method.py +0 -12
- mirascope-2.0.0/examples/prompts/return_types.py +0 -25
- mirascope-2.0.0/examples/prompts/with_params.py +0 -12
- mirascope-2.0.0/examples/providers/custom_api_key.py +0 -11
- mirascope-2.0.0/examples/providers/openai_compatible.py +0 -22
- mirascope-2.0.0/examples/providers/scope_matching.py +0 -15
- mirascope-2.0.0/examples/reliability/basic_retry.py +0 -17
- mirascope-2.0.0/examples/reliability/fallback_call.py +0 -31
- mirascope-2.0.0/examples/reliability/fallback_model.py +0 -30
- mirascope-2.0.0/examples/reliability/fallback_prompt.py +0 -30
- mirascope-2.0.0/examples/reliability/retry_specific_errors.py +0 -21
- mirascope-2.0.0/examples/reliability/stream_retry.py +0 -20
- mirascope-2.0.0/examples/reliability/tool_error_recovery.py +0 -40
- mirascope-2.0.0/examples/reliability/validation_retry.py +0 -28
- mirascope-2.0.0/examples/responses/basic.py +0 -6
- mirascope-2.0.0/examples/responses/content_access.py +0 -18
- mirascope-2.0.0/examples/responses/finish_reason.py +0 -11
- mirascope-2.0.0/examples/responses/metadata.py +0 -12
- mirascope-2.0.0/examples/responses/resume.py +0 -13
- mirascope-2.0.0/examples/responses/usage.py +0 -9
- mirascope-2.0.0/examples/sazed/sazed.py +0 -26
- mirascope-2.0.0/examples/sazed/sazed_async.py +0 -29
- mirascope-2.0.0/examples/sazed/sazed_async_context.py +0 -37
- mirascope-2.0.0/examples/sazed/sazed_async_context_structured.py +0 -49
- mirascope-2.0.0/examples/sazed/sazed_async_stream.py +0 -30
- mirascope-2.0.0/examples/sazed/sazed_async_stream_context.py +0 -40
- mirascope-2.0.0/examples/sazed/sazed_async_stream_context_structured.py +0 -49
- mirascope-2.0.0/examples/sazed/sazed_async_stream_structured.py +0 -39
- mirascope-2.0.0/examples/sazed/sazed_async_stream_tools.py +0 -50
- mirascope-2.0.0/examples/sazed/sazed_async_stream_tools_context.py +0 -62
- mirascope-2.0.0/examples/sazed/sazed_async_stream_tools_context_structured.py +0 -71
- mirascope-2.0.0/examples/sazed/sazed_async_stream_tools_structured.py +0 -59
- mirascope-2.0.0/examples/sazed/sazed_async_structured.py +0 -39
- mirascope-2.0.0/examples/sazed/sazed_async_tools.py +0 -39
- mirascope-2.0.0/examples/sazed/sazed_async_tools_context.py +0 -49
- mirascope-2.0.0/examples/sazed/sazed_async_tools_context_structured.py +0 -61
- mirascope-2.0.0/examples/sazed/sazed_async_tools_structured.py +0 -49
- mirascope-2.0.0/examples/sazed/sazed_context.py +0 -35
- mirascope-2.0.0/examples/sazed/sazed_context_structured.py +0 -45
- mirascope-2.0.0/examples/sazed/sazed_stream.py +0 -27
- mirascope-2.0.0/examples/sazed/sazed_stream_context.py +0 -36
- mirascope-2.0.0/examples/sazed/sazed_stream_context_structured.py +0 -47
- mirascope-2.0.0/examples/sazed/sazed_stream_structured.py +0 -36
- mirascope-2.0.0/examples/sazed/sazed_stream_tools.py +0 -47
- mirascope-2.0.0/examples/sazed/sazed_stream_tools_context.py +0 -58
- mirascope-2.0.0/examples/sazed/sazed_stream_tools_context_structured.py +0 -69
- mirascope-2.0.0/examples/sazed/sazed_stream_tools_structured.py +0 -56
- mirascope-2.0.0/examples/sazed/sazed_structured.py +0 -36
- mirascope-2.0.0/examples/sazed/sazed_tools.py +0 -36
- mirascope-2.0.0/examples/sazed/sazed_tools_context.py +0 -47
- mirascope-2.0.0/examples/sazed/sazed_tools_context_structured.py +0 -57
- mirascope-2.0.0/examples/sazed/sazed_tools_structured.py +0 -46
- mirascope-2.0.0/examples/streaming/accumulated.py +0 -19
- mirascope-2.0.0/examples/streaming/async_basic.py +0 -17
- mirascope-2.0.0/examples/streaming/basic_call.py +0 -11
- mirascope-2.0.0/examples/streaming/basic_model.py +0 -7
- mirascope-2.0.0/examples/streaming/basic_prompt.py +0 -11
- mirascope-2.0.0/examples/streaming/chunk_stream.py +0 -16
- mirascope-2.0.0/examples/streaming/error_handling.py +0 -19
- mirascope-2.0.0/examples/streaming/replay.py +0 -21
- mirascope-2.0.0/examples/streaming/streams.py +0 -40
- mirascope-2.0.0/examples/streaming/structured_stream.py +0 -26
- mirascope-2.0.0/examples/streaming/with_tools.py +0 -28
- mirascope-2.0.0/examples/structured_output/advanced_model_features.py +0 -29
- mirascope-2.0.0/examples/structured_output/basemodel.py +0 -18
- mirascope-2.0.0/examples/structured_output/basic_call.py +0 -11
- mirascope-2.0.0/examples/structured_output/basic_model.py +0 -7
- mirascope-2.0.0/examples/structured_output/basic_prompt.py +0 -11
- mirascope-2.0.0/examples/structured_output/custom_instructions.py +0 -28
- mirascope-2.0.0/examples/structured_output/explicit_mode.py +0 -18
- mirascope-2.0.0/examples/structured_output/generic_collection.py +0 -21
- mirascope-2.0.0/examples/structured_output/output_parser.py +0 -38
- mirascope-2.0.0/examples/structured_output/primitives.py +0 -11
- mirascope-2.0.0/examples/structured_output/with_tools.py +0 -34
- mirascope-2.0.0/examples/thinking/access_thoughts.py +0 -17
- mirascope-2.0.0/examples/thinking/basic.py +0 -10
- mirascope-2.0.0/examples/thinking/config.py +0 -13
- mirascope-2.0.0/examples/thinking/encode_as_text.py +0 -22
- mirascope-2.0.0/examples/tools/async_tools.py +0 -28
- mirascope-2.0.0/examples/tools/basic.py +0 -29
- mirascope-2.0.0/examples/tools/loop.py +0 -32
- mirascope-2.0.0/examples/tools/parallel.py +0 -27
- mirascope-2.0.0/examples/tools/with_call.py +0 -23
- mirascope-2.0.0/examples/tools/with_model.py +0 -19
- mirascope-2.0.0/examples/tools/with_prompt.py +0 -24
- mirascope-2.0.0/lint-staged.ts +0 -39
- mirascope-2.0.0/mirascope/__init__.py +0 -14
- mirascope-2.0.0/mirascope/_stubs.py +0 -363
- mirascope-2.0.0/mirascope/api/__init__.py +0 -14
- mirascope-2.0.0/mirascope/api/_generated/README.md +0 -207
- mirascope-2.0.0/mirascope/api/_generated/__init__.py +0 -440
- mirascope-2.0.0/mirascope/api/_generated/annotations/__init__.py +0 -33
- mirascope-2.0.0/mirascope/api/_generated/annotations/client.py +0 -506
- mirascope-2.0.0/mirascope/api/_generated/annotations/raw_client.py +0 -1414
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/__init__.py +0 -31
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_create_request_label.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_create_response.py +0 -48
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_create_response_label.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_get_response.py +0 -48
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_get_response_label.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_list_request_label.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_list_response.py +0 -21
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item.py +0 -50
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item_label.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_update_request_label.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_update_response.py +0 -48
- mirascope-2.0.0/mirascope/api/_generated/annotations/types/annotations_update_response_label.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/api_keys/__init__.py +0 -17
- mirascope-2.0.0/mirascope/api/_generated/api_keys/client.py +0 -530
- mirascope-2.0.0/mirascope/api/_generated/api_keys/raw_client.py +0 -1236
- mirascope-2.0.0/mirascope/api/_generated/api_keys/types/__init__.py +0 -15
- mirascope-2.0.0/mirascope/api/_generated/api_keys/types/api_keys_create_response.py +0 -28
- mirascope-2.0.0/mirascope/api/_generated/api_keys/types/api_keys_get_response.py +0 -27
- mirascope-2.0.0/mirascope/api/_generated/api_keys/types/api_keys_list_all_for_org_response_item.py +0 -40
- mirascope-2.0.0/mirascope/api/_generated/api_keys/types/api_keys_list_response_item.py +0 -27
- mirascope-2.0.0/mirascope/api/_generated/client.py +0 -211
- mirascope-2.0.0/mirascope/api/_generated/core/__init__.py +0 -52
- mirascope-2.0.0/mirascope/api/_generated/core/api_error.py +0 -23
- mirascope-2.0.0/mirascope/api/_generated/core/client_wrapper.py +0 -46
- mirascope-2.0.0/mirascope/api/_generated/core/datetime_utils.py +0 -28
- mirascope-2.0.0/mirascope/api/_generated/core/file.py +0 -67
- mirascope-2.0.0/mirascope/api/_generated/core/force_multipart.py +0 -16
- mirascope-2.0.0/mirascope/api/_generated/core/http_client.py +0 -543
- mirascope-2.0.0/mirascope/api/_generated/core/http_response.py +0 -55
- mirascope-2.0.0/mirascope/api/_generated/core/jsonable_encoder.py +0 -100
- mirascope-2.0.0/mirascope/api/_generated/core/pydantic_utilities.py +0 -255
- mirascope-2.0.0/mirascope/api/_generated/core/query_encoder.py +0 -58
- mirascope-2.0.0/mirascope/api/_generated/core/remove_none_from_dict.py +0 -11
- mirascope-2.0.0/mirascope/api/_generated/core/request_options.py +0 -35
- mirascope-2.0.0/mirascope/api/_generated/core/serialization.py +0 -276
- mirascope-2.0.0/mirascope/api/_generated/docs/__init__.py +0 -4
- mirascope-2.0.0/mirascope/api/_generated/docs/client.py +0 -91
- mirascope-2.0.0/mirascope/api/_generated/docs/raw_client.py +0 -178
- mirascope-2.0.0/mirascope/api/_generated/environment.py +0 -9
- mirascope-2.0.0/mirascope/api/_generated/environments/__init__.py +0 -23
- mirascope-2.0.0/mirascope/api/_generated/environments/client.py +0 -649
- mirascope-2.0.0/mirascope/api/_generated/environments/raw_client.py +0 -1567
- mirascope-2.0.0/mirascope/api/_generated/environments/types/__init__.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/environments/types/environments_create_response.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/environments/types/environments_get_analytics_response.py +0 -60
- mirascope-2.0.0/mirascope/api/_generated/environments/types/environments_get_analytics_response_top_functions_item.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/environments/types/environments_get_analytics_response_top_models_item.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/environments/types/environments_get_response.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/environments/types/environments_list_response_item.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/environments/types/environments_update_response.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/errors/__init__.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/errors/bad_request_error.py +0 -14
- mirascope-2.0.0/mirascope/api/_generated/errors/conflict_error.py +0 -14
- mirascope-2.0.0/mirascope/api/_generated/errors/forbidden_error.py +0 -11
- mirascope-2.0.0/mirascope/api/_generated/errors/internal_server_error.py +0 -10
- mirascope-2.0.0/mirascope/api/_generated/errors/not_found_error.py +0 -11
- mirascope-2.0.0/mirascope/api/_generated/errors/payment_required_error.py +0 -15
- mirascope-2.0.0/mirascope/api/_generated/errors/service_unavailable_error.py +0 -14
- mirascope-2.0.0/mirascope/api/_generated/errors/too_many_requests_error.py +0 -15
- mirascope-2.0.0/mirascope/api/_generated/errors/unauthorized_error.py +0 -11
- mirascope-2.0.0/mirascope/api/_generated/functions/__init__.py +0 -39
- mirascope-2.0.0/mirascope/api/_generated/functions/client.py +0 -647
- mirascope-2.0.0/mirascope/api/_generated/functions/raw_client.py +0 -1890
- mirascope-2.0.0/mirascope/api/_generated/functions/types/__init__.py +0 -53
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_create_request_dependencies_value.py +0 -20
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_create_response.py +0 -37
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_create_response_dependencies_value.py +0 -20
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_find_by_hash_response.py +0 -39
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_find_by_hash_response_dependencies_value.py +0 -20
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_get_by_env_response.py +0 -53
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_get_by_env_response_dependencies_value.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_get_response.py +0 -37
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_get_response_dependencies_value.py +0 -20
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_list_by_env_response.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item.py +0 -56
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item_dependencies_value.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_list_response.py +0 -21
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_list_response_functions_item.py +0 -41
- mirascope-2.0.0/mirascope/api/_generated/functions/types/functions_list_response_functions_item_dependencies_value.py +0 -20
- mirascope-2.0.0/mirascope/api/_generated/health/__init__.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/health/client.py +0 -92
- mirascope-2.0.0/mirascope/api/_generated/health/raw_client.py +0 -175
- mirascope-2.0.0/mirascope/api/_generated/health/types/__init__.py +0 -8
- mirascope-2.0.0/mirascope/api/_generated/health/types/health_check_response.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/health/types/health_check_response_status.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/__init__.py +0 -33
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/client.py +0 -546
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/raw_client.py +0 -1519
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/__init__.py +0 -53
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response.py +0 -34
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_request_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response.py +0 -48
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_status.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response.py +0 -48
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_status.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item.py +0 -48
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_status.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_memberships/__init__.py +0 -19
- mirascope-2.0.0/mirascope/api/_generated/organization_memberships/client.py +0 -302
- mirascope-2.0.0/mirascope/api/_generated/organization_memberships/raw_client.py +0 -736
- mirascope-2.0.0/mirascope/api/_generated/organization_memberships/types/__init__.py +0 -27
- mirascope-2.0.0/mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item.py +0 -33
- mirascope-2.0.0/mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_memberships/types/organization_memberships_update_request_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response.py +0 -31
- mirascope-2.0.0/mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organizations/__init__.py +0 -51
- mirascope-2.0.0/mirascope/api/_generated/organizations/client.py +0 -869
- mirascope-2.0.0/mirascope/api/_generated/organizations/raw_client.py +0 -2593
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/__init__.py +0 -71
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_create_payment_intent_response.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_create_response.py +0 -26
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_create_response_role.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_get_response.py +0 -26
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_get_response_role.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_list_response_item.py +0 -26
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_list_response_item_role.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_request_target_plan.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response.py +0 -47
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item.py +0 -33
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item_resource.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_router_balance_response.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_subscription_response.py +0 -53
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_subscription_response_current_plan.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_subscription_response_payment_method.py +0 -26
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change.py +0 -34
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change_target_plan.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_update_response.py +0 -26
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_update_response_role.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_update_subscription_request_target_plan.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/organizations/types/organizations_update_subscription_response.py +0 -35
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/__init__.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/client.py +0 -437
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/raw_client.py +0 -1039
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/types/__init__.py +0 -29
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/types/project_memberships_create_request_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/types/project_memberships_create_response.py +0 -35
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/types/project_memberships_create_response_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item.py +0 -33
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/types/project_memberships_update_request_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/types/project_memberships_update_response.py +0 -35
- mirascope-2.0.0/mirascope/api/_generated/project_memberships/types/project_memberships_update_response_role.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/projects/__init__.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/projects/client.py +0 -428
- mirascope-2.0.0/mirascope/api/_generated/projects/raw_client.py +0 -1302
- mirascope-2.0.0/mirascope/api/_generated/projects/types/__init__.py +0 -10
- mirascope-2.0.0/mirascope/api/_generated/projects/types/projects_create_response.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/projects/types/projects_get_response.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/projects/types/projects_list_response_item.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/projects/types/projects_update_response.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/reference.md +0 -4915
- mirascope-2.0.0/mirascope/api/_generated/tags/__init__.py +0 -19
- mirascope-2.0.0/mirascope/api/_generated/tags/client.py +0 -504
- mirascope-2.0.0/mirascope/api/_generated/tags/raw_client.py +0 -1288
- mirascope-2.0.0/mirascope/api/_generated/tags/types/__init__.py +0 -17
- mirascope-2.0.0/mirascope/api/_generated/tags/types/tags_create_response.py +0 -41
- mirascope-2.0.0/mirascope/api/_generated/tags/types/tags_get_response.py +0 -41
- mirascope-2.0.0/mirascope/api/_generated/tags/types/tags_list_response.py +0 -23
- mirascope-2.0.0/mirascope/api/_generated/tags/types/tags_list_response_tags_item.py +0 -41
- mirascope-2.0.0/mirascope/api/_generated/tags/types/tags_update_response.py +0 -41
- mirascope-2.0.0/mirascope/api/_generated/token_cost/__init__.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/token_cost/client.py +0 -160
- mirascope-2.0.0/mirascope/api/_generated/token_cost/raw_client.py +0 -264
- mirascope-2.0.0/mirascope/api/_generated/token_cost/types/__init__.py +0 -8
- mirascope-2.0.0/mirascope/api/_generated/token_cost/types/token_cost_calculate_request_usage.py +0 -54
- mirascope-2.0.0/mirascope/api/_generated/token_cost/types/token_cost_calculate_response.py +0 -52
- mirascope-2.0.0/mirascope/api/_generated/traces/__init__.py +0 -97
- mirascope-2.0.0/mirascope/api/_generated/traces/client.py +0 -1103
- mirascope-2.0.0/mirascope/api/_generated/traces/raw_client.py +0 -2322
- mirascope-2.0.0/mirascope/api/_generated/traces/types/__init__.py +0 -155
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item.py +0 -29
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource.py +0 -27
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item.py +0 -23
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value.py +0 -38
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_array_value.py +0 -19
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value_values_item.py +0 -20
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item.py +0 -29
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope.py +0 -31
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item.py +0 -23
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value.py +0 -38
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_array_value.py +0 -19
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value.py +0 -22
- mirascope-2.0.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 -22
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item.py +0 -48
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item.py +0 -23
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value.py +0 -38
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_array_value.py +0 -19
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value.py +0 -24
- mirascope-2.0.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 -22
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_status.py +0 -20
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_response.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_create_response_partial_success.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_get_analytics_summary_response.py +0 -60
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_functions_item.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_models_item.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response.py +0 -33
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response_spans_item.py +0 -88
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_get_trace_detail_response.py +0 -33
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_get_trace_detail_response_spans_item.py +0 -88
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_list_by_function_hash_response.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_list_by_function_hash_response_traces_item.py +0 -44
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item.py +0 -26
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item_operator.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_by.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_order.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_by_env_response.py +0 -26
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_by_env_response_spans_item.py +0 -50
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item.py +0 -26
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item_operator.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_request_sort_by.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_request_sort_order.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_response.py +0 -26
- mirascope-2.0.0/mirascope/api/_generated/traces/types/traces_search_response_spans_item.py +0 -50
- mirascope-2.0.0/mirascope/api/_generated/types/__init__.py +0 -85
- mirascope-2.0.0/mirascope/api/_generated/types/already_exists_error.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/types/already_exists_error_tag.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/types/bad_request_error_body.py +0 -50
- mirascope-2.0.0/mirascope/api/_generated/types/click_house_error.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/types/database_error.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/types/database_error_tag.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/types/date.py +0 -3
- mirascope-2.0.0/mirascope/api/_generated/types/http_api_decode_error.py +0 -27
- mirascope-2.0.0/mirascope/api/_generated/types/http_api_decode_error_tag.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/types/immutable_resource_error.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/types/internal_server_error_body.py +0 -49
- mirascope-2.0.0/mirascope/api/_generated/types/issue.py +0 -38
- mirascope-2.0.0/mirascope/api/_generated/types/issue_tag.py +0 -10
- mirascope-2.0.0/mirascope/api/_generated/types/not_found_error_body.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/types/not_found_error_tag.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/types/number_from_string.py +0 -3
- mirascope-2.0.0/mirascope/api/_generated/types/permission_denied_error.py +0 -22
- mirascope-2.0.0/mirascope/api/_generated/types/permission_denied_error_tag.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/types/plan_limit_exceeded_error.py +0 -32
- mirascope-2.0.0/mirascope/api/_generated/types/plan_limit_exceeded_error_tag.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/types/pricing_unavailable_error.py +0 -23
- mirascope-2.0.0/mirascope/api/_generated/types/property_key.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/types/property_key_key.py +0 -25
- mirascope-2.0.0/mirascope/api/_generated/types/property_key_key_tag.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/types/rate_limit_error.py +0 -31
- mirascope-2.0.0/mirascope/api/_generated/types/rate_limit_error_tag.py +0 -5
- mirascope-2.0.0/mirascope/api/_generated/types/service_unavailable_error_body.py +0 -24
- mirascope-2.0.0/mirascope/api/_generated/types/service_unavailable_error_tag.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/types/stripe_error.py +0 -20
- mirascope-2.0.0/mirascope/api/_generated/types/subscription_past_due_error.py +0 -31
- mirascope-2.0.0/mirascope/api/_generated/types/subscription_past_due_error_tag.py +0 -7
- mirascope-2.0.0/mirascope/api/_generated/types/unauthorized_error_body.py +0 -21
- mirascope-2.0.0/mirascope/api/_generated/types/unauthorized_error_tag.py +0 -5
- mirascope-2.0.0/mirascope/api/client.py +0 -255
- mirascope-2.0.0/mirascope/api/settings.py +0 -99
- mirascope-2.0.0/mirascope/llm/__init__.py +0 -297
- mirascope-2.0.0/mirascope/llm/calls/__init__.py +0 -17
- mirascope-2.0.0/mirascope/llm/calls/calls.py +0 -341
- mirascope-2.0.0/mirascope/llm/calls/decorator.py +0 -275
- mirascope-2.0.0/mirascope/llm/content/__init__.py +0 -71
- mirascope-2.0.0/mirascope/llm/content/tool_call.py +0 -69
- mirascope-2.0.0/mirascope/llm/content/tool_output.py +0 -43
- mirascope-2.0.0/mirascope/llm/context/_utils.py +0 -41
- mirascope-2.0.0/mirascope/llm/exceptions.py +0 -360
- mirascope-2.0.0/mirascope/llm/formatting/__init__.py +0 -39
- mirascope-2.0.0/mirascope/llm/formatting/format.py +0 -293
- mirascope-2.0.0/mirascope/llm/formatting/from_call_args.py +0 -30
- mirascope-2.0.0/mirascope/llm/formatting/output_parser.py +0 -178
- mirascope-2.0.0/mirascope/llm/formatting/partial.py +0 -131
- mirascope-2.0.0/mirascope/llm/formatting/primitives.py +0 -192
- mirascope-2.0.0/mirascope/llm/formatting/types.py +0 -66
- mirascope-2.0.0/mirascope/llm/mcp/__init__.py +0 -5
- mirascope-2.0.0/mirascope/llm/mcp/mcp_client.py +0 -130
- mirascope-2.0.0/mirascope/llm/messages/__init__.py +0 -35
- mirascope-2.0.0/mirascope/llm/messages/_utils.py +0 -34
- mirascope-2.0.0/mirascope/llm/messages/message.py +0 -190
- mirascope-2.0.0/mirascope/llm/models/__init__.py +0 -21
- mirascope-2.0.0/mirascope/llm/models/models.py +0 -1419
- mirascope-2.0.0/mirascope/llm/models/params.py +0 -72
- mirascope-2.0.0/mirascope/llm/models/thinking_config.py +0 -61
- mirascope-2.0.0/mirascope/llm/prompts/__init__.py +0 -34
- mirascope-2.0.0/mirascope/llm/prompts/_utils.py +0 -31
- mirascope-2.0.0/mirascope/llm/prompts/decorator.py +0 -226
- mirascope-2.0.0/mirascope/llm/prompts/prompts.py +0 -487
- mirascope-2.0.0/mirascope/llm/prompts/protocols.py +0 -65
- mirascope-2.0.0/mirascope/llm/providers/__init__.py +0 -62
- mirascope-2.0.0/mirascope/llm/providers/anthropic/__init__.py +0 -11
- mirascope-2.0.0/mirascope/llm/providers/anthropic/_utils/__init__.py +0 -27
- mirascope-2.0.0/mirascope/llm/providers/anthropic/_utils/beta_decode.py +0 -282
- mirascope-2.0.0/mirascope/llm/providers/anthropic/_utils/beta_encode.py +0 -266
- mirascope-2.0.0/mirascope/llm/providers/anthropic/_utils/decode.py +0 -288
- mirascope-2.0.0/mirascope/llm/providers/anthropic/_utils/encode.py +0 -418
- mirascope-2.0.0/mirascope/llm/providers/anthropic/_utils/errors.py +0 -46
- mirascope-2.0.0/mirascope/llm/providers/anthropic/beta_provider.py +0 -374
- mirascope-2.0.0/mirascope/llm/providers/anthropic/model_id.py +0 -23
- mirascope-2.0.0/mirascope/llm/providers/anthropic/model_info.py +0 -87
- mirascope-2.0.0/mirascope/llm/providers/anthropic/provider.py +0 -479
- mirascope-2.0.0/mirascope/llm/providers/base/__init__.py +0 -14
- mirascope-2.0.0/mirascope/llm/providers/base/_utils.py +0 -253
- mirascope-2.0.0/mirascope/llm/providers/base/base_provider.py +0 -1579
- mirascope-2.0.0/mirascope/llm/providers/google/__init__.py +0 -6
- mirascope-2.0.0/mirascope/llm/providers/google/_utils/__init__.py +0 -17
- mirascope-2.0.0/mirascope/llm/providers/google/_utils/decode.py +0 -307
- mirascope-2.0.0/mirascope/llm/providers/google/_utils/encode.py +0 -401
- mirascope-2.0.0/mirascope/llm/providers/google/_utils/errors.py +0 -50
- mirascope-2.0.0/mirascope/llm/providers/google/model_id.py +0 -22
- mirascope-2.0.0/mirascope/llm/providers/google/model_info.py +0 -63
- mirascope-2.0.0/mirascope/llm/providers/google/provider.py +0 -492
- mirascope-2.0.0/mirascope/llm/providers/mirascope/__init__.py +0 -5
- mirascope-2.0.0/mirascope/llm/providers/mirascope/_utils.py +0 -73
- mirascope-2.0.0/mirascope/llm/providers/mirascope/provider.py +0 -349
- mirascope-2.0.0/mirascope/llm/providers/mlx/__init__.py +0 -9
- mirascope-2.0.0/mirascope/llm/providers/mlx/_utils.py +0 -141
- mirascope-2.0.0/mirascope/llm/providers/mlx/encoding/__init__.py +0 -8
- mirascope-2.0.0/mirascope/llm/providers/mlx/encoding/base.py +0 -72
- mirascope-2.0.0/mirascope/llm/providers/mlx/encoding/transformers.py +0 -150
- mirascope-2.0.0/mirascope/llm/providers/mlx/mlx.py +0 -254
- mirascope-2.0.0/mirascope/llm/providers/mlx/model_id.py +0 -17
- mirascope-2.0.0/mirascope/llm/providers/mlx/provider.py +0 -452
- mirascope-2.0.0/mirascope/llm/providers/model_id.py +0 -16
- mirascope-2.0.0/mirascope/llm/providers/ollama/__init__.py +0 -7
- mirascope-2.0.0/mirascope/llm/providers/ollama/provider.py +0 -71
- mirascope-2.0.0/mirascope/llm/providers/openai/__init__.py +0 -15
- mirascope-2.0.0/mirascope/llm/providers/openai/_utils/__init__.py +0 -5
- mirascope-2.0.0/mirascope/llm/providers/openai/_utils/errors.py +0 -46
- mirascope-2.0.0/mirascope/llm/providers/openai/completions/__init__.py +0 -7
- mirascope-2.0.0/mirascope/llm/providers/openai/completions/_utils/__init__.py +0 -15
- mirascope-2.0.0/mirascope/llm/providers/openai/completions/_utils/decode.py +0 -252
- mirascope-2.0.0/mirascope/llm/providers/openai/completions/_utils/encode.py +0 -376
- mirascope-2.0.0/mirascope/llm/providers/openai/completions/base_provider.py +0 -542
- mirascope-2.0.0/mirascope/llm/providers/openai/completions/provider.py +0 -22
- mirascope-2.0.0/mirascope/llm/providers/openai/model_id.py +0 -31
- mirascope-2.0.0/mirascope/llm/providers/openai/model_info.py +0 -303
- mirascope-2.0.0/mirascope/llm/providers/openai/provider.py +0 -441
- mirascope-2.0.0/mirascope/llm/providers/openai/responses/__init__.py +0 -5
- mirascope-2.0.0/mirascope/llm/providers/openai/responses/_utils/__init__.py +0 -15
- mirascope-2.0.0/mirascope/llm/providers/openai/responses/_utils/decode.py +0 -260
- mirascope-2.0.0/mirascope/llm/providers/openai/responses/_utils/encode.py +0 -384
- mirascope-2.0.0/mirascope/llm/providers/openai/responses/provider.py +0 -513
- mirascope-2.0.0/mirascope/llm/providers/provider_id.py +0 -24
- mirascope-2.0.0/mirascope/llm/providers/provider_registry.py +0 -299
- mirascope-2.0.0/mirascope/llm/providers/together/__init__.py +0 -7
- mirascope-2.0.0/mirascope/llm/providers/together/provider.py +0 -40
- mirascope-2.0.0/mirascope/llm/responses/__init__.py +0 -65
- mirascope-2.0.0/mirascope/llm/responses/_utils.py +0 -146
- mirascope-2.0.0/mirascope/llm/responses/base_response.py +0 -103
- mirascope-2.0.0/mirascope/llm/responses/base_stream_response.py +0 -820
- mirascope-2.0.0/mirascope/llm/responses/finish_reason.py +0 -28
- mirascope-2.0.0/mirascope/llm/responses/response.py +0 -366
- mirascope-2.0.0/mirascope/llm/responses/root_response.py +0 -248
- mirascope-2.0.0/mirascope/llm/responses/stream_response.py +0 -581
- mirascope-2.0.0/mirascope/llm/responses/usage.py +0 -95
- mirascope-2.0.0/mirascope/llm/tools/__init__.py +0 -47
- mirascope-2.0.0/mirascope/llm/tools/_utils.py +0 -34
- mirascope-2.0.0/mirascope/llm/tools/decorator.py +0 -184
- mirascope-2.0.0/mirascope/llm/tools/protocols.py +0 -96
- mirascope-2.0.0/mirascope/llm/tools/tool_schema.py +0 -314
- mirascope-2.0.0/mirascope/llm/tools/toolkit.py +0 -160
- mirascope-2.0.0/mirascope/llm/tools/tools.py +0 -263
- mirascope-2.0.0/mirascope/ops/__init__.py +0 -111
- mirascope-2.0.0/mirascope/ops/_internal/__init__.py +0 -5
- mirascope-2.0.0/mirascope/ops/_internal/closure.py +0 -1169
- mirascope-2.0.0/mirascope/ops/_internal/configuration.py +0 -177
- mirascope-2.0.0/mirascope/ops/_internal/context.py +0 -76
- mirascope-2.0.0/mirascope/ops/_internal/exporters/__init__.py +0 -26
- mirascope-2.0.0/mirascope/ops/_internal/exporters/exporters.py +0 -395
- mirascope-2.0.0/mirascope/ops/_internal/exporters/processors.py +0 -104
- mirascope-2.0.0/mirascope/ops/_internal/exporters/types.py +0 -165
- mirascope-2.0.0/mirascope/ops/_internal/exporters/utils.py +0 -29
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/__init__.py +0 -8
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/__init__.py +0 -8
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/common.py +0 -530
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/cost.py +0 -190
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/encode.py +0 -238
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/__init__.py +0 -38
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_input_messages.py +0 -31
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_output_messages.py +0 -38
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_system_instructions.py +0 -18
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/shared.py +0 -100
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/llm.py +0 -161
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/model.py +0 -1798
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/response.py +0 -521
- mirascope-2.0.0/mirascope/ops/_internal/instrumentation/llm/serialize.py +0 -300
- mirascope-2.0.0/mirascope/ops/_internal/propagation.py +0 -198
- mirascope-2.0.0/mirascope/ops/_internal/protocols.py +0 -133
- mirascope-2.0.0/mirascope/ops/_internal/session.py +0 -139
- mirascope-2.0.0/mirascope/ops/_internal/spans.py +0 -232
- mirascope-2.0.0/mirascope/ops/_internal/traced_calls.py +0 -375
- mirascope-2.0.0/mirascope/ops/_internal/traced_functions.py +0 -523
- mirascope-2.0.0/mirascope/ops/_internal/tracing.py +0 -353
- mirascope-2.0.0/mirascope/ops/_internal/types.py +0 -13
- mirascope-2.0.0/mirascope/ops/_internal/utils.py +0 -123
- mirascope-2.0.0/mirascope/ops/_internal/versioned_calls.py +0 -512
- mirascope-2.0.0/mirascope/ops/_internal/versioned_functions.py +0 -357
- mirascope-2.0.0/mirascope/ops/_internal/versioning.py +0 -303
- mirascope-2.0.0/mirascope/ops/exceptions.py +0 -21
- mirascope-2.0.0/pyproject.toml +0 -258
- mirascope-2.0.0/schemas/gen-ai/gen-ai-input-messages.json +0 -383
- mirascope-2.0.0/schemas/gen-ai/gen-ai-output-messages.json +0 -409
- mirascope-2.0.0/schemas/gen-ai/gen-ai-system-instructions.json +0 -329
- mirascope-2.0.0/scripts/__init__.py +0 -1
- mirascope-2.0.0/scripts/example_generator.ts +0 -334
- mirascope-2.0.0/scripts/generate_extra_imports.py +0 -240
- mirascope-2.0.0/scripts/model_features/__init__.py +0 -38
- mirascope-2.0.0/scripts/model_features/codegen_anthropic.py +0 -201
- mirascope-2.0.0/scripts/model_features/codegen_google.py +0 -167
- mirascope-2.0.0/scripts/model_features/codegen_openai.py +0 -230
- mirascope-2.0.0/scripts/model_features/core/__init__.py +0 -22
- mirascope-2.0.0/scripts/model_features/core/models.py +0 -131
- mirascope-2.0.0/scripts/model_features/core/registry.py +0 -187
- mirascope-2.0.0/scripts/model_features/core/runner.py +0 -349
- mirascope-2.0.0/scripts/model_features/core/testing.py +0 -72
- mirascope-2.0.0/scripts/model_features/data/anthropic.yaml +0 -115
- mirascope-2.0.0/scripts/model_features/data/google.yaml +0 -944
- mirascope-2.0.0/scripts/model_features/data/openai.yaml +0 -4296
- mirascope-2.0.0/scripts/model_features/test_anthropic.py +0 -380
- mirascope-2.0.0/scripts/model_features/test_google.py +0 -465
- mirascope-2.0.0/scripts/model_features/test_openai.py +0 -566
- mirascope-2.0.0/scripts/model_features/update_all.py +0 -143
- mirascope-2.0.0/scripts/regenerate_examples.ts +0 -118
- mirascope-2.0.0/scripts/validate_extra_imports.sh +0 -30
- mirascope-2.0.0/tests/api/test_client.py +0 -199
- mirascope-2.0.0/tests/api/test_missing_dependencies.py +0 -81
- mirascope-2.0.0/tests/api/test_settings.py +0 -53
- mirascope-2.0.0/tests/conftest.py +0 -41
- mirascope-2.0.0/tests/e2e/conftest.py +0 -219
- mirascope-2.0.0/tests/e2e/input/README.md +0 -60
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error/anthropic_beta_claude_sonnet_4_0.yaml +0 -82
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error/anthropic_claude_sonnet_4_0.yaml +0 -78
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error/google_gemini_2_5_flash.yaml +0 -62
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error/openai_gpt_4o_completions.yaml +0 -85
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error/openai_gpt_4o_responses.yaml +0 -87
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error_stream/anthropic_beta_claude_sonnet_4_0.yaml +0 -84
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error_stream/anthropic_claude_sonnet_4_0.yaml +0 -82
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error_stream/google_gemini_2_5_flash.yaml +0 -62
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error_stream/openai_gpt_4o_completions.yaml +0 -81
- mirascope-2.0.0/tests/e2e/input/cassettes/test_authentication_error_stream/openai_gpt_4o_responses.yaml +0 -83
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/anthropic_beta_claude_sonnet_4_0.yaml +0 -1104
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/anthropic_claude_sonnet_4_0.yaml +0 -1076
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/google_gemini_2_5_flash.yaml +0 -900
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/openai_gpt_4o_completions.yaml +0 -971
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/openai_gpt_4o_responses.yaml +0 -958
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_system_message/anthropic_beta_claude_sonnet_4_0.yaml +0 -659
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_system_message/anthropic_claude_sonnet_4_0.yaml +0 -652
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_system_message/google_gemini_2_5_flash.yaml +0 -527
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_system_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -120
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_system_message/openai_gpt_4o_completions.yaml +0 -636
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_system_message/openai_gpt_4o_responses.yaml +0 -632
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_tool/anthropic_beta_claude_sonnet_4_0.yaml +0 -640
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_tool/anthropic_claude_sonnet_4_0.yaml +0 -632
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_tool/google_gemini_2_5_flash.yaml +0 -552
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_tool/openai_gpt_4o_completions.yaml +0 -1271
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_tool/openai_gpt_4o_responses.yaml +0 -1741
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_user_message/anthropic_beta_claude_sonnet_4_0.yaml +0 -676
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_user_message/anthropic_claude_sonnet_4_0.yaml +0 -662
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_user_message/google_gemini_2_5_flash.yaml +0 -587
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_user_message/openai_gpt_4o_completions.yaml +0 -642
- mirascope-2.0.0/tests/e2e/input/cassettes/test_caching_user_message/openai_gpt_4o_responses.yaml +0 -634
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_non_openai_models_through_openai/anthropic_claude_sonnet_4_5.yaml +0 -89
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_audio/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -592
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_empty_string/google_gemini_2_5_flash.yaml +0 -94
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_empty_string/mlx_mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -120
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_empty_string/openai_gpt_4o_completions.yaml +0 -110
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_empty_string/openai_gpt_4o_responses.yaml +0 -110
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_image_content/anthropic_beta_claude_sonnet_4_0.yaml +0 -114
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_image_content/anthropic_claude_sonnet_4_0.yaml +0 -110
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_image_url/anthropic_beta_claude_sonnet_4_0.yaml +0 -114
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_image_url/anthropic_claude_sonnet_4_0.yaml +0 -110
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_mcp_tools/anthropic_claude_haiku_4_5.yaml +0 -417
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_params/anthropic_beta_claude_sonnet_4_0.yaml +0 -112
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_params/anthropic_claude_sonnet_4_0.yaml +0 -108
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_params/google_gemini_2_5_flash.yaml +0 -128
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_4o_completions.yaml +0 -112
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_4o_responses.yaml +0 -112
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_parse_error/anthropic_beta_claude_sonnet_4_0.yaml +0 -236
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_parse_error/anthropic_claude_sonnet_4_0.yaml +0 -344
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_parse_error/google_gemini_2_5_flash.yaml +0 -129
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_parse_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -120
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_parse_error/openai_gpt_4o_completions.yaml +0 -222
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_parse_error/openai_gpt_4o_responses.yaml +0 -222
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/anthropic_beta_claude_sonnet_4_5.yaml +0 -118
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -120
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_completions.yaml +0 -120
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_responses.yaml +0 -122
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/anthropic_beta_claude_sonnet_4_0.yaml +0 -142
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/anthropic_claude_sonnet_4_0.yaml +0 -139
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/google_gemini_2_5_flash.yaml +0 -152
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/openai_gpt_4o_completions.yaml +0 -124
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/openai_gpt_4o_responses.yaml +0 -123
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_tool_error/anthropic_beta_claude_sonnet_4_0.yaml +0 -347
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_tool_error/anthropic_claude_sonnet_4_0.yaml +0 -337
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_tool_error/google_gemini_2_5_flash.yaml +0 -221
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_tool_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -120
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_tool_error/openai_gpt_4o_completions.yaml +0 -226
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_tool_error/openai_gpt_4o_responses.yaml +0 -117
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_two_empty_string/google_gemini_2_5_flash.yaml +0 -65
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_two_empty_string/openai_gpt_4o_completions.yaml +0 -104
- mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_two_empty_string/openai_gpt_4o_responses.yaml +0 -104
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider/anthropic_claude_haiku_4_5.yaml +0 -106
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider/google_gemini_2_5_flash.yaml +0 -66
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider/openai_gpt_5_mini.yaml +0 -124
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider/openai_gpt_5_mini_completions.yaml +0 -116
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider/openai_gpt_5_mini_responses.yaml +0 -124
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider_streaming/anthropic_claude_haiku_4_5.yaml +0 -168
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider_streaming/google_gemini_2_5_flash.yaml +0 -70
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider_streaming/openai_gpt_5_mini.yaml +0 -150
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider_streaming/openai_gpt_5_mini_completions.yaml +0 -124
- mirascope-2.0.0/tests/e2e/input/cassettes/test_mirascope_provider_streaming/openai_gpt_5_mini_responses.yaml +0 -150
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found/anthropic_beta_claude_sonnet_4_0.yaml +0 -174
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found/anthropic_claude_sonnet_4_0.yaml +0 -166
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found/google_gemini_2_5_flash.yaml +0 -120
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -130
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found/openai_gpt_4o_completions.yaml +0 -174
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found/openai_gpt_4o_responses.yaml +0 -174
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found_stream/anthropic_beta_claude_sonnet_4_0.yaml +0 -178
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found_stream/anthropic_claude_sonnet_4_0.yaml +0 -174
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found_stream/google_gemini_2_5_flash.yaml +0 -114
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found_stream/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -130
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found_stream/openai_gpt_4o_completions.yaml +0 -166
- mirascope-2.0.0/tests/e2e/input/cassettes/test_model_not_found_stream/openai_gpt_4o_responses.yaml +0 -166
- mirascope-2.0.0/tests/e2e/input/cassettes/test_ollama_provider/ollama_gemma3_4b.yaml +0 -55
- mirascope-2.0.0/tests/e2e/input/cassettes/test_openai_completions_provider/openai_gpt_4o_mini.yaml +0 -110
- mirascope-2.0.0/tests/e2e/input/cassettes/test_openai_completions_provider/openai_gpt_4o_mini_completions.yaml +0 -104
- mirascope-2.0.0/tests/e2e/input/cassettes/test_openai_responses_provider/openai_gpt_4o_mini.yaml +0 -110
- mirascope-2.0.0/tests/e2e/input/cassettes/test_openai_responses_provider/openai_gpt_4o_mini_responses.yaml +0 -104
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override/anthropic_beta_claude_sonnet_4_0.yaml +0 -173
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override/anthropic_claude_sonnet_4_0.yaml +0 -169
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -292
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override/openai_gpt_4o_completions.yaml +0 -171
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override/openai_gpt_4o_responses.yaml +0 -170
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/anthropic_beta_claude_sonnet_4_0.yaml +0 -185
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/anthropic_claude_sonnet_4_0.yaml +0 -365
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/google_gemini_2_5_flash.yaml +0 -191
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -266
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/openai_gpt_4o_completions.yaml +0 -554
- mirascope-2.0.0/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/openai_gpt_4o_responses.yaml +0 -571
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode/anthropic_claude_sonnet_4_5.yaml +0 -114
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode/google_gemini_3_pro_preview.yaml +0 -77
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_streamed/anthropic_claude_sonnet_4_5.yaml +0 -164
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_streamed/google_gemini_3_pro_preview.yaml +0 -70
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_with_streamed_thinking/anthropic_claude_sonnet_4_5.yaml +0 -348
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_with_streamed_thinking/google_gemini_3_pro_preview.yaml +0 -166
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_with_thinking/anthropic_claude_sonnet_4_5.yaml +0 -131
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_with_thinking/google_gemini_3_pro_preview.yaml +0 -185
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_with_tools/anthropic_claude_sonnet_4_5.yaml +0 -229
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_with_tools/google_gemini_3_pro_preview.yaml +0 -154
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_with_tools_streamed/anthropic_claude_sonnet_4_5.yaml +0 -322
- mirascope-2.0.0/tests/e2e/input/cassettes/test_strict_mode_with_tools_streamed/google_gemini_3_pro_preview.yaml +0 -158
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_0.yaml +0 -114
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_5.yaml +0 -114
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/google_gemini_2_5_flash.yaml +0 -72
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_beta_claude_sonnet_4_0.yaml +0 -116
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_0.yaml +0 -112
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_5.yaml +0 -112
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/google_gemini_2_5_flash.yaml +0 -68
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_5.yaml +0 -116
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/google_gemini_2_5_flash.yaml +0 -72
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_beta_claude_sonnet_4_0.yaml +0 -118
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_0.yaml +0 -114
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_5.yaml +0 -114
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/google_gemini_2_5_flash.yaml +0 -84
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_output_parser/anthropic_claude_haiku_4_5.yaml +0 -110
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_primitive_types_int/anthropic_claude_haiku_4_5.yaml +0 -112
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_primitive_types_list/anthropic_claude_haiku_4_5.yaml +0 -114
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_stream_async/anthropic_claude_haiku_4_5.yaml +0 -269
- mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_stream_sync/anthropic_claude_haiku_4_5.yaml +0 -277
- mirascope-2.0.0/tests/e2e/input/cassettes/test_together_provider/meta_llama_Llama_3_3_70B_Instruct_Turbo.yaml +0 -105
- mirascope-2.0.0/tests/e2e/input/conftest.py +0 -115
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_caching_multi_turn_conversation_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -9107
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_caching_system_message_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -2985
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_caching_tool_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_caching_user_message_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -5360
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_audio_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_empty_array_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_empty_string_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1767
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_image_content_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_image_url_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_params_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -2519
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_parse_error_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.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 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_text_encoded_thoughts_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_tool_error_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_call_with_two_empty_string_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_conversation_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -9870
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_model_not_found_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_model_not_found_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_resume_with_override_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -787
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_resume_with_override_thinking_and_tools_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_system_message_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -5065
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_tool_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/input/mlx_lm_cassettes/test_user_message_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -7311
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -140
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/anthropic_claude_sonnet_4_0_snapshots.py +0 -139
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/google_gemini_2_5_flash_snapshots.py +0 -91
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -144
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/openai_gpt_4o_completions_snapshots.py +0 -40
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/openai_gpt_4o_responses_snapshots.py +0 -42
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_system_message/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -62
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_system_message/anthropic_claude_sonnet_4_0_snapshots.py +0 -62
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_system_message/google_gemini_2_5_flash_snapshots.py +0 -48
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_system_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -52
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_system_message/openai_gpt_4o_completions_snapshots.py +0 -26
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_system_message/openai_gpt_4o_responses_snapshots.py +0 -26
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -26
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -26
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_tool/google_gemini_2_5_flash_snapshots.py +0 -40
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_tool/openai_gpt_4o_completions_snapshots.py +0 -26
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_tool/openai_gpt_4o_responses_snapshots.py +0 -26
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_user_message/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -82
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_user_message/anthropic_claude_sonnet_4_0_snapshots.py +0 -78
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_user_message/google_gemini_2_5_flash_snapshots.py +0 -100
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_user_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -170
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_user_message/openai_gpt_4o_completions_snapshots.py +0 -40
- mirascope-2.0.0/tests/e2e/input/snapshots/test_caching_user_message/openai_gpt_4o_responses_snapshots.py +0 -36
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_non_openai_models_through_openai/anthropic_claude_sonnet_4_5_snapshots.py +0 -40
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_audio/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_audio/anthropic_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_audio/google_gemini_2_5_flash_snapshots.py +0 -78
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_audio/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_4o_completions_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_4o_responses_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_audio_snapshots.py +0 -57
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_array/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_array/anthropic_claude_sonnet_4_0_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_array/google_gemini_2_5_flash_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_array/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_array/openai_gpt_4o_completions_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_array/openai_gpt_4o_responses_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_string/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_string/anthropic_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_string/google_gemini_2_5_flash_snapshots.py +0 -338
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_string/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -62
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_string/openai_gpt_4o_completions_snapshots.py +0 -48
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_empty_string/openai_gpt_4o_responses_snapshots.py +0 -59
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_content/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -65
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_content/anthropic_claude_sonnet_4_0_snapshots.py +0 -66
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_content/google_gemini_2_5_flash_snapshots.py +0 -82
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_content/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_content/openai_gpt_4o_completions_snapshots.py +0 -61
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_content/openai_gpt_4o_responses_snapshots.py +0 -72
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_url/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -64
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_url/anthropic_claude_sonnet_4_0_snapshots.py +0 -65
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_url/google_gemini_2_5_flash_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_url/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_url/openai_gpt_4o_completions_snapshots.py +0 -60
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_image_url/openai_gpt_4o_responses_snapshots.py +0 -71
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_mcp_tools/anthropic_claude_haiku_4_5_snapshots.py +0 -352
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_params/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -58
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_params/anthropic_claude_sonnet_4_0_snapshots.py +0 -64
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_params/google_gemini_2_5_flash_snapshots.py +0 -94
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_params/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -81
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_4o_completions_snapshots.py +0 -59
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_4o_responses_snapshots.py +0 -75
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_parse_error/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -101
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_parse_error/anthropic_claude_sonnet_4_0_snapshots.py +0 -127
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_parse_error/google_gemini_2_5_flash_snapshots.py +0 -109
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_parse_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_parse_error/openai_gpt_4o_completions_snapshots.py +0 -78
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_parse_error/openai_gpt_4o_responses_snapshots.py +0 -100
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/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.0/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/anthropic_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/google_gemini_2_5_flash_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_completions_snapshots.py +0 -96
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_responses_snapshots.py +0 -92
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/openai_gpt_4o_responses_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_tool_error/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -182
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_tool_error/anthropic_claude_sonnet_4_0_snapshots.py +0 -193
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_tool_error/google_gemini_2_5_flash_snapshots.py +0 -204
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_tool_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_tool_error/openai_gpt_4o_completions_snapshots.py +0 -128
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_tool_error/openai_gpt_4o_responses_snapshots.py +0 -87
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_two_empty_string/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_two_empty_string/anthropic_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_two_empty_string/google_gemini_2_5_flash_snapshots.py +0 -96
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_two_empty_string/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_two_empty_string/openai_gpt_4o_completions_snapshots.py +0 -44
- mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_two_empty_string/openai_gpt_4o_responses_snapshots.py +0 -59
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider/anthropic_claude_haiku_4_5_snapshots.py +0 -49
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider/google_gemini_2_5_flash_snapshots.py +0 -84
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_completions_snapshots.py +0 -44
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_responses_snapshots.py +0 -60
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_snapshots.py +0 -60
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/anthropic_claude_haiku_4_5_snapshots.py +0 -43
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/google_gemini_2_5_flash_snapshots.py +0 -92
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_completions_snapshots.py +0 -40
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_responses_snapshots.py +0 -60
- mirascope-2.0.0/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_snapshots.py +0 -60
- mirascope-2.0.0/tests/e2e/input/snapshots/test_ollama_provider/ollama_gemma3_4b_snapshots.py +0 -40
- mirascope-2.0.0/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_completions_snapshots.py +0 -44
- mirascope-2.0.0/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_responses_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_snapshots.py +0 -44
- mirascope-2.0.0/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_completions_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_responses_snapshots.py +0 -55
- mirascope-2.0.0/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_snapshots.py +0 -55
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -79
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override/anthropic_claude_sonnet_4_0_snapshots.py +0 -80
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override/google_gemini_2_5_flash_snapshots.py +0 -91
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -79
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override/openai_gpt_4o_completions_snapshots.py +0 -75
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override/openai_gpt_4o_responses_snapshots.py +0 -84
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -120
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/anthropic_claude_sonnet_4_0_snapshots.py +0 -121
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/google_gemini_2_5_flash_snapshots.py +0 -132
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_gpt_4o_completions_snapshots.py +0 -116
- mirascope-2.0.0/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_gpt_4o_responses_snapshots.py +0 -127
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode/anthropic_claude_sonnet_4_5_snapshots.py +0 -73
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode/google_gemini_3_pro_preview_snapshots.py +0 -96
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_streamed/anthropic_claude_sonnet_4_5_snapshots.py +0 -68
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_streamed/google_gemini_3_pro_preview_snapshots.py +0 -104
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_with_streamed_thinking/anthropic_claude_sonnet_4_5_snapshots.py +0 -87
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_with_streamed_thinking/google_gemini_3_pro_preview_snapshots.py +0 -88
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_with_thinking/anthropic_claude_sonnet_4_5_snapshots.py +0 -94
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_with_thinking/google_gemini_3_pro_preview_snapshots.py +0 -96
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_with_tools/anthropic_claude_sonnet_4_5_snapshots.py +0 -137
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_with_tools/google_gemini_3_pro_preview_snapshots.py +0 -173
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_with_tools_streamed/anthropic_claude_sonnet_4_5_snapshots.py +0 -132
- mirascope-2.0.0/tests/e2e/input/snapshots/test_strict_mode_with_tools_streamed/google_gemini_3_pro_preview_snapshots.py +0 -222
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_0_snapshots.py +0 -88
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_5_snapshots.py +0 -88
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/google_gemini_2_5_flash_snapshots.py +0 -96
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -94
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_0_snapshots.py +0 -95
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_5_snapshots.py +0 -99
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/google_gemini_2_5_flash_snapshots.py +0 -108
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_completions_snapshots.py +0 -90
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_responses_snapshots.py +0 -101
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_gpt_4o_completions_snapshots.py +0 -78
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_gpt_4o_responses_snapshots.py +0 -89
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_0_snapshots.py +0 -13
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_5_snapshots.py +0 -87
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/google_gemini_2_5_flash_snapshots.py +0 -108
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_completions_snapshots.py +0 -78
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_responses_snapshots.py +0 -89
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -88
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -88
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_5_snapshots.py +0 -88
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/google_gemini_2_5_flash_snapshots.py +0 -106
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -10
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_completions_snapshots.py +0 -87
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_responses_snapshots.py +0 -83
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_output_parser/anthropic_claude_haiku_4_5_snapshots.py +0 -79
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_primitive_types_int/anthropic_claude_haiku_4_5_snapshots.py +0 -72
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_output_with_primitive_types_list/anthropic_claude_haiku_4_5_snapshots.py +0 -99
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_stream_async/anthropic_claude_haiku_4_5_snapshots.py +0 -229
- mirascope-2.0.0/tests/e2e/input/snapshots/test_structured_stream_sync/anthropic_claude_haiku_4_5_snapshots.py +0 -268
- mirascope-2.0.0/tests/e2e/input/snapshots/test_together_provider/meta_llama_Llama_3_3_70B_Instruct_Turbo_snapshots.py +0 -56
- mirascope-2.0.0/tests/e2e/input/test_authentication_error.py +0 -58
- mirascope-2.0.0/tests/e2e/input/test_caching.py +0 -288
- mirascope-2.0.0/tests/e2e/input/test_call_with_audio.py +0 -39
- mirascope-2.0.0/tests/e2e/input/test_call_with_image.py +0 -59
- mirascope-2.0.0/tests/e2e/input/test_call_with_mcp_tools.py +0 -61
- mirascope-2.0.0/tests/e2e/input/test_call_with_params.py +0 -55
- mirascope-2.0.0/tests/e2e/input/test_call_with_parse_error.py +0 -51
- mirascope-2.0.0/tests/e2e/input/test_call_with_strict_tool_and_optional_properties.py +0 -50
- mirascope-2.0.0/tests/e2e/input/test_call_with_text_encoded_thoughts.py +0 -91
- mirascope-2.0.0/tests/e2e/input/test_call_with_tool_error.py +0 -48
- mirascope-2.0.0/tests/e2e/input/test_empty_call.py +0 -64
- mirascope-2.0.0/tests/e2e/input/test_mirascope_provider.py +0 -88
- mirascope-2.0.0/tests/e2e/input/test_model_not_found.py +0 -49
- mirascope-2.0.0/tests/e2e/input/test_openai_compatibility_providers.py +0 -85
- mirascope-2.0.0/tests/e2e/input/test_provider_overriding.py +0 -80
- mirascope-2.0.0/tests/e2e/input/test_resume_with_override.py +0 -41
- mirascope-2.0.0/tests/e2e/input/test_resume_with_override_thinking_and_tools.py +0 -56
- mirascope-2.0.0/tests/e2e/input/test_strict_structured_output_compatibility.py +0 -254
- mirascope-2.0.0/tests/e2e/input/test_structured_output_parser.py +0 -58
- mirascope-2.0.0/tests/e2e/input/test_structured_output_primitive_types.py +0 -59
- mirascope-2.0.0/tests/e2e/input/test_structured_output_streaming.py +0 -73
- mirascope-2.0.0/tests/e2e/input/test_structured_output_with_formatting_instructions.py +0 -58
- mirascope-2.0.0/tests/e2e/mlx_lm_cassette.py +0 -331
- mirascope-2.0.0/tests/e2e/output/README.md +0 -86
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -112
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -151
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -167
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -112
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/async.yaml +0 -108
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -164
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/stream.yaml +0 -150
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/sync.yaml +0 -108
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/async_stream.yaml +0 -161
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/stream.yaml +0 -146
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -362
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -686
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -664
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -343
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/async.yaml +0 -329
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -750
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/stream.yaml +0 -635
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/sync.yaml +0 -327
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/async.yaml +0 -188
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/async_stream.yaml +0 -376
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/stream.yaml +0 -177
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/sync.yaml +0 -168
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/async.yaml +0 -274
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/async_stream.yaml +0 -1424
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/stream.yaml +0 -921
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/sync.yaml +0 -276
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -171
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -317
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -286
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -184
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/async.yaml +0 -179
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -341
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/stream.yaml +0 -310
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/sync.yaml +0 -167
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/async.yaml +0 -65
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/async_stream.yaml +0 -63
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/stream.yaml +0 -63
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/sync.yaml +0 -77
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/async.yaml +0 -113
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/async_stream.yaml +0 -142
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/stream.yaml +0 -142
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/sync.yaml +0 -113
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -233
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -426
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -423
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -233
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/async.yaml +0 -224
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -423
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/stream.yaml +0 -456
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/sync.yaml +0 -225
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/async.yaml +0 -675
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/async_stream.yaml +0 -1115
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/stream.yaml +0 -1103
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/sync.yaml +0 -675
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/async.yaml +0 -677
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/async_stream.yaml +0 -1390
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/stream.yaml +0 -1462
- mirascope-2.0.0/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/sync.yaml +0 -678
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -113
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -202
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -191
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -113
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/async.yaml +0 -109
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -195
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/stream.yaml +0 -178
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/sync.yaml +0 -109
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/async_stream.yaml +0 -274
- mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/stream.yaml +0 -273
- mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/async.yaml +0 -121
- mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -696
- mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/stream.yaml +0 -751
- mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/sync.yaml +0 -118
- mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/async_stream.yaml +0 -116
- mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/stream.yaml +0 -152
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/async.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -232
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/stream.yaml +0 -232
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/sync.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/async.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -220
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/stream.yaml +0 -241
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/sync.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/async.yaml +0 -73
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/async_stream.yaml +0 -71
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/stream.yaml +0 -71
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/sync.yaml +0 -73
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -127
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -209
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -204
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -126
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/async.yaml +0 -122
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -204
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/stream.yaml +0 -213
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/sync.yaml +0 -123
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/async.yaml +0 -123
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -207
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/stream.yaml +0 -207
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/sync.yaml +0 -123
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/async.yaml +0 -78
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/async_stream.yaml +0 -82
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/stream.yaml +0 -82
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/sync.yaml +0 -78
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/async.yaml +0 -124
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/async_stream.yaml +0 -276
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/stream.yaml +0 -276
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/async_stream.yaml +0 -203
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/stream.yaml +0 -203
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/async.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -186
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/stream.yaml +0 -185
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/sync.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/async.yaml +0 -73
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/async_stream.yaml +0 -71
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/stream.yaml +0 -71
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/sync.yaml +0 -73
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/async_stream.yaml +0 -203
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/stream.yaml +0 -203
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -121
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -239
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -238
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -121
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/async.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -244
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/stream.yaml +0 -241
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/sync.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/async.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -248
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/stream.yaml +0 -232
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/sync.yaml +0 -117
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/async.yaml +0 -104
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/async_stream.yaml +0 -78
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/stream.yaml +0 -78
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/sync.yaml +0 -95
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/async.yaml +0 -114
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/async_stream.yaml +0 -204
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/stream.yaml +0 -204
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/async.yaml +0 -231
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -407
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/stream.yaml +0 -428
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/sync.yaml +0 -231
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/async.yaml +0 -231
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -386
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/stream.yaml +0 -419
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/sync.yaml +0 -231
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/async.yaml +0 -200
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/async_stream.yaml +0 -156
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/stream.yaml +0 -156
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/sync.yaml +0 -192
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -246
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -406
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -391
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -246
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/async.yaml +0 -238
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -413
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/stream.yaml +0 -608
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/sync.yaml +0 -238
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/async.yaml +0 -248
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -832
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/stream.yaml +0 -821
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/sync.yaml +0 -248
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/async.yaml +0 -717
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/async_stream.yaml +0 -1232
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/stream.yaml +0 -1232
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/sync.yaml +0 -717
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/async.yaml +0 -723
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/async_stream.yaml +0 -1596
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/stream.yaml +0 -1596
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/sync.yaml +0 -723
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/async.yaml +0 -675
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/async_stream.yaml +0 -1037
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/stream.yaml +0 -1037
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/sync.yaml +0 -675
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/async.yaml +0 -693
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/async_stream.yaml +0 -1428
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/stream.yaml +0 -1517
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/sync.yaml +0 -693
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/async.yaml +0 -232
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -349
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/stream.yaml +0 -349
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/sync.yaml +0 -232
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/async.yaml +0 -679
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/async_stream.yaml +0 -1125
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/stream.yaml +0 -1125
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/sync.yaml +0 -679
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/async.yaml +0 -693
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/async_stream.yaml +0 -1517
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/stream.yaml +0 -1521
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/sync.yaml +0 -694
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -239
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -427
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -432
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -239
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/async.yaml +0 -231
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -406
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/stream.yaml +0 -398
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/sync.yaml +0 -231
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/async.yaml +0 -231
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -402
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/stream.yaml +0 -404
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/sync.yaml +0 -231
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/async.yaml +0 -187
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/async_stream.yaml +0 -156
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/stream.yaml +0 -156
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/sync.yaml +0 -186
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/async.yaml +0 -699
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/async_stream.yaml +0 -1055
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/stream.yaml +0 -1055
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/sync.yaml +0 -699
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/async.yaml +0 -718
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/async_stream.yaml +0 -1356
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/stream.yaml +0 -1356
- mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/sync.yaml +0 -717
- mirascope-2.0.0/tests/e2e/output/conftest.py +0 -200
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -254
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -254
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -254
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -254
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_prompt_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_prompt_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_prompt_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_prompt_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -3579
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_refusal_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_refusal_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_refusal_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_refusal_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.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 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -1
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -148
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call/anthropic_claude_sonnet_4_0_snapshots.py +0 -160
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call/google_gemini_2_5_flash_snapshots.py +0 -301
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -244
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call/openai_gpt_4o_completions_snapshots.py +0 -144
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call/openai_gpt_4o_responses_snapshots.py +0 -196
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -801
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_thinking/anthropic_claude_sonnet_4_0_snapshots.py +0 -788
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_thinking/google_gemini_2_5_flash_snapshots.py +0 -1204
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_thinking/openai_gpt_5_responses_snapshots.py +0 -731
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -423
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0_snapshots.py +0 -437
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash_snapshots.py +0 -330
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses_snapshots.py +0 -240
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -559
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +0 -567
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_tools/google_gemini_2_5_flash_snapshots.py +0 -703
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_tools/openai_gpt_4o_completions_snapshots.py +0 -473
- mirascope-2.0.0/tests/e2e/output/snapshots/test_call_with_tools/openai_gpt_4o_responses_snapshots.py +0 -559
- mirascope-2.0.0/tests/e2e/output/snapshots/test_max_tokens/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -281
- mirascope-2.0.0/tests/e2e/output/snapshots/test_max_tokens/anthropic_claude_sonnet_4_0_snapshots.py +0 -283
- mirascope-2.0.0/tests/e2e/output/snapshots/test_max_tokens/google_gemini_2_5_flash_snapshots.py +0 -237
- mirascope-2.0.0/tests/e2e/output/snapshots/test_max_tokens/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -165
- mirascope-2.0.0/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_4o_completions_snapshots.py +0 -234
- mirascope-2.0.0/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_4o_responses_snapshots.py +0 -242
- mirascope-2.0.0/tests/e2e/output/snapshots/test_refusal/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -46
- mirascope-2.0.0/tests/e2e/output/snapshots/test_refusal/anthropic_claude_sonnet_4_0_snapshots.py +0 -336
- mirascope-2.0.0/tests/e2e/output/snapshots/test_refusal/google_gemini_2_5_flash_snapshots.py +0 -340
- mirascope-2.0.0/tests/e2e/output/snapshots/test_refusal/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_refusal/openai_gpt_4o_completions_snapshots.py +0 -231
- mirascope-2.0.0/tests/e2e/output/snapshots/test_refusal/openai_gpt_4o_responses_snapshots.py +0 -269
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -46
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/anthropic_claude_sonnet_4_0_snapshots.py +0 -393
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/anthropic_claude_sonnet_4_5_snapshots.py +0 -393
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/google_gemini_2_5_flash_snapshots.py +0 -426
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -809
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/json/anthropic_claude_sonnet_4_0_snapshots.py +0 -815
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/json/anthropic_claude_sonnet_4_5_snapshots.py +0 -823
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/json/google_gemini_2_5_flash_snapshots.py +0 -881
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/json/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/json/openai_gpt_4o_completions_snapshots.py +0 -763
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/json/openai_gpt_4o_responses_snapshots.py +0 -833
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/openai_gpt_4o_completions_snapshots.py +0 -316
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/openai_gpt_4o_responses_snapshots.py +0 -368
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -46
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_claude_sonnet_4_0_snapshots.py +0 -46
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_claude_sonnet_4_5_snapshots.py +0 -352
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/strict/google_gemini_2_5_flash_snapshots.py +0 -444
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/strict/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/strict/openai_gpt_4o_completions_snapshots.py +0 -316
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/strict/openai_gpt_4o_responses_snapshots.py +0 -368
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -393
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -393
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_claude_sonnet_4_5_snapshots.py +0 -393
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/tool/google_gemini_2_5_flash_snapshots.py +0 -455
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/tool/openai_gpt_4o_completions_snapshots.py +0 -351
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output/tool/openai_gpt_4o_responses_snapshots.py +0 -361
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -46
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +0 -547
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_claude_sonnet_4_5_snapshots.py +0 -547
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/google_gemini_2_5_flash_snapshots.py +0 -661
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -843
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0_snapshots.py +0 -855
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5_snapshots.py +0 -969
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/google_gemini_2_5_flash_snapshots.py +0 -46
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_gpt_4o_completions_snapshots.py +0 -763
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_gpt_4o_responses_snapshots.py +0 -839
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_gpt_4o_completions_snapshots.py +0 -460
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_gpt_4o_responses_snapshots.py +0 -535
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -46
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_0_snapshots.py +0 -46
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5_snapshots.py +0 -510
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/google_gemini_2_5_flash_snapshots.py +0 -46
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_gpt_4o_completions_snapshots.py +0 -460
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_gpt_4o_responses_snapshots.py +0 -556
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -547
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -547
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5_snapshots.py +0 -547
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/google_gemini_2_5_flash_snapshots.py +0 -661
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -34
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_gpt_4o_completions_snapshots.py +0 -499
- mirascope-2.0.0/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_gpt_4o_responses_snapshots.py +0 -519
- mirascope-2.0.0/tests/e2e/output/test_call.py +0 -171
- mirascope-2.0.0/tests/e2e/output/test_call_with_thinking.py +0 -207
- mirascope-2.0.0/tests/e2e/output/test_call_with_tools.py +0 -379
- mirascope-2.0.0/tests/e2e/output/test_max_tokens.py +0 -76
- mirascope-2.0.0/tests/e2e/output/test_prompt.py +0 -171
- mirascope-2.0.0/tests/e2e/output/test_refusal.py +0 -98
- mirascope-2.0.0/tests/e2e/output/test_structured_output.py +0 -310
- mirascope-2.0.0/tests/e2e/output/test_structured_output_with_tools.py +0 -418
- mirascope-2.0.0/tests/fixtures/__init__.py +0 -1
- mirascope-2.0.0/tests/llm/calls/test_call_decorator.py +0 -53
- mirascope-2.0.0/tests/llm/content/test_audio_content.py +0 -273
- mirascope-2.0.0/tests/llm/content/test_image_content.py +0 -298
- mirascope-2.0.0/tests/llm/context/test_context_utils.py +0 -110
- mirascope-2.0.0/tests/llm/formatting/test_format.py +0 -279
- mirascope-2.0.0/tests/llm/formatting/test_output_parser.py +0 -103
- mirascope-2.0.0/tests/llm/formatting/test_partial.py +0 -196
- mirascope-2.0.0/tests/llm/formatting/test_primitive_types.py +0 -287
- mirascope-2.0.0/tests/llm/mcp/__init__.py +0 -1
- mirascope-2.0.0/tests/llm/mcp/example_mcp_client.py +0 -184
- mirascope-2.0.0/tests/llm/mcp/test_mcp_client.py +0 -285
- mirascope-2.0.0/tests/llm/messages/test_messages.py +0 -167
- mirascope-2.0.0/tests/llm/models/test_model.py +0 -120
- mirascope-2.0.0/tests/llm/prompts/test_prompt_decorator.py +0 -57
- mirascope-2.0.0/tests/llm/providers/anthropic/__init__.py +0 -1
- mirascope-2.0.0/tests/llm/providers/anthropic/test_anthropic_beta_provider.py +0 -151
- mirascope-2.0.0/tests/llm/providers/anthropic/test_anthropic_provider.py +0 -217
- mirascope-2.0.0/tests/llm/providers/base/test_base_provider.py +0 -224
- mirascope-2.0.0/tests/llm/providers/base/test_params.py +0 -55
- mirascope-2.0.0/tests/llm/providers/base/test_utils.py +0 -275
- mirascope-2.0.0/tests/llm/providers/google/test_google_provider.py +0 -278
- mirascope-2.0.0/tests/llm/providers/mlx/conftest.py +0 -14
- mirascope-2.0.0/tests/llm/providers/mlx/encoding/test_transformers.py +0 -24
- mirascope-2.0.0/tests/llm/providers/mlx/test_client.py +0 -11
- mirascope-2.0.0/tests/llm/providers/mlx/test_mlx.py +0 -86
- mirascope-2.0.0/tests/llm/providers/mlx/test_utils.py +0 -69
- mirascope-2.0.0/tests/llm/providers/openai/test_completions_encoding.py +0 -115
- mirascope-2.0.0/tests/llm/providers/openai/test_completions_provider.py +0 -130
- mirascope-2.0.0/tests/llm/providers/openai/test_openai_provider.py +0 -59
- mirascope-2.0.0/tests/llm/providers/openai/test_responses_encoding.py +0 -66
- mirascope-2.0.0/tests/llm/providers/openai/test_responses_provider.py +0 -130
- mirascope-2.0.0/tests/llm/providers/test_mirascope_provider.py +0 -411
- mirascope-2.0.0/tests/llm/providers/test_missing_dependencies.py +0 -424
- mirascope-2.0.0/tests/llm/providers/test_ollama_provider.py +0 -77
- mirascope-2.0.0/tests/llm/providers/test_openai_compatible_provider.py +0 -108
- mirascope-2.0.0/tests/llm/providers/test_provider_registry.py +0 -269
- mirascope-2.0.0/tests/llm/providers/test_providers.py +0 -53
- mirascope-2.0.0/tests/llm/providers/test_together_provider.py +0 -49
- mirascope-2.0.0/tests/llm/responses/test_response.py +0 -1335
- mirascope-2.0.0/tests/llm/responses/test_stream_response.py +0 -2148
- mirascope-2.0.0/tests/llm/responses/test_structured_stream.py +0 -465
- mirascope-2.0.0/tests/llm/responses/test_utils.py +0 -234
- mirascope-2.0.0/tests/llm/test_error_wrapping.py +0 -83
- mirascope-2.0.0/tests/llm/tools/test_decorator.py +0 -620
- mirascope-2.0.0/tests/llm/tools/test_tool_schema.py +0 -422
- mirascope-2.0.0/tests/llm/tools/test_toolkit.py +0 -240
- mirascope-2.0.0/tests/ops/_internal/__init__.py +0 -1
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_async_version_registers_new_function.yaml +0 -158
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_async_version_uses_existing_function.yaml +0 -40
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_call.yaml +0 -113
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_call_call_method.yaml +0 -114
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_call_stream_method.yaml +0 -595
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_call_wrapped_method.yaml +0 -113
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_context_call.yaml +0 -114
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_context_call_call_method.yaml +0 -109
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_context_call_stream_method.yaml +0 -273
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_context_call_with_tags.yaml +0 -114
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_context_call_wrapped_call_method.yaml +0 -114
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_async_context_call_wrapped_returns_trace.yaml +0 -108
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_call_call_method.yaml +0 -111
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_call_stream_method.yaml +0 -242
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_call_sync.yaml +0 -114
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_call_with_tags.yaml +0 -108
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_call_wrapped_call_method.yaml +0 -107
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_call_wrapped_method.yaml +0 -108
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_call_wrapped_stream.yaml +0 -712
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_context_call.yaml +0 -114
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_context_call_call_method.yaml +0 -108
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_context_call_stream_method.yaml +0 -614
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_context_call_with_metadata.yaml +0 -114
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_context_call_with_tags.yaml +0 -114
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_context_call_wrapped_call_method.yaml +0 -115
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_traced_context_call_wrapped_returns_trace.yaml +0 -108
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_version_registers_new_function.yaml +0 -116
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_version_uses_existing_function.yaml +0 -158
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_call.yaml +0 -361
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_call_call_method.yaml +0 -397
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_call_stream_method.yaml +0 -1619
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_call_wrapped_method.yaml +0 -398
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_call_wrapped_stream_method.yaml +0 -1842
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_context_call.yaml +0 -363
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_context_call_call_method.yaml +0 -401
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_context_call_stream_method.yaml +0 -2065
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_context_call_wrapped_method.yaml +0 -400
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_async_context_call_wrapped_stream_method.yaml +0 -1745
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_call_call_method.yaml +0 -397
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_call_stream_method.yaml +0 -1609
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_call_sync.yaml +0 -362
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_call_with_tags.yaml +0 -397
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_call_wrapped_method.yaml +0 -398
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_call_wrapped_stream.yaml +0 -1841
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_context_call.yaml +0 -362
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_context_call_call_method.yaml +0 -401
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_context_call_stream_method.yaml +0 -2164
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_context_call_wrapped_method.yaml +0 -402
- mirascope-2.0.0/tests/ops/_internal/cassettes/test_versioned_context_call_wrapped_stream_method.yaml +0 -1415
- mirascope-2.0.0/tests/ops/_internal/closure_test_functions/__init__.py +0 -119
- mirascope-2.0.0/tests/ops/_internal/closure_test_functions/fakepkg/__init__.py +0 -4
- mirascope-2.0.0/tests/ops/_internal/closure_test_functions/main.py +0 -519
- mirascope-2.0.0/tests/ops/_internal/closure_test_functions/other.py +0 -111
- mirascope-2.0.0/tests/ops/_internal/exporters/__init__.py +0 -1
- mirascope-2.0.0/tests/ops/_internal/exporters/conftest.py +0 -102
- mirascope-2.0.0/tests/ops/_internal/exporters/test_exporters.py +0 -631
- mirascope-2.0.0/tests/ops/_internal/exporters/test_processors.py +0 -210
- mirascope-2.0.0/tests/ops/_internal/exporters/utils.py +0 -133
- mirascope-2.0.0/tests/ops/_internal/instrumentation/__init__.py +0 -0
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/__init__.py +0 -0
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_async_context_response_resume_exports_mirascope_span.yaml +0 -220
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_async_context_stream_response_resume_exports_mirascope_span.yaml +0 -260
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_async_response_resume_exports_mirascope_span.yaml +0 -688
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_async_stream_response_resume_exports_mirascope_span.yaml +0 -259
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_context_response_resume_exports_mirascope_span.yaml +0 -220
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_context_stream_response_resume_exports_mirascope_span.yaml +0 -255
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_async_exports_genai_span.yaml +0 -111
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_async_records_untracked_params_event.yaml +0 -105
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_exports_genai_span.yaml +0 -110
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_records_response_id.yaml +0 -110
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_records_untracked_params_event.yaml +0 -105
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_audio_content.yaml +0 -66
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_base64_image.yaml +0 -110
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_image.yaml +0 -107
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_json_format.yaml +0 -107
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_message_name.yaml +0 -109
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_none_parameters.yaml +0 -104
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_parameters.yaml +0 -103
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_reasoning_model.yaml +0 -127
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_stop_string.yaml +0 -110
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_strict_tool.yaml +0 -114
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_tool_outputs.yaml +0 -438
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_tools.yaml +0 -307
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_tracer_set_to_none.yaml +0 -106
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_without_instrumentation.yaml +0 -108
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_call_async_exports_genai_span.yaml +0 -109
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_call_exports_genai_span.yaml +0 -111
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_async_exports_genai_span.yaml +0 -220
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_exports_genai_span.yaml +0 -220
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_stream_async_exports_genai_span.yaml +0 -260
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_stream_exports_genai_span.yaml +0 -255
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_stream_async_exports_genai_span.yaml +0 -148
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_stream_exports_genai_span.yaml +0 -148
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_async_exports_genai_span.yaml +0 -220
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_exports_genai_span.yaml +0 -221
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_stream_async_exports_genai_span.yaml +0 -255
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_stream_exports_genai_span.yaml +0 -260
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_async_exports_genai_span.yaml +0 -178
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_async_with_tracer_set_to_none.yaml +0 -178
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_async_without_instrumentation.yaml +0 -178
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_exports_genai_span.yaml +0 -180
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_records_response_id.yaml +0 -176
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_records_untracked_params_event.yaml +0 -176
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_json_format.yaml +0 -282
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_none_parameters.yaml +0 -171
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_tools.yaml +0 -390
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_tracer_set_to_none.yaml +0 -176
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_without_instrumentation.yaml +0 -176
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_response_resume_exports_mirascope_span.yaml +0 -221
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_stream_response_resume_exports_mirascope_span.yaml +0 -255
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/cassettes/test_tracer_context_with_model_call.yaml +0 -110
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_common.py +0 -232
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_cost_calculation.py +0 -457
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_instrumentation.py +0 -102
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_model_call.py +0 -839
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_model_call_async.py +0 -137
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_model_context_call.py +0 -66
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_model_context_call_async.py +0 -67
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_model_context_stream.py +0 -146
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_model_context_stream_async.py +0 -224
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_model_resume.py +0 -779
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_model_stream.py +0 -441
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_model_stream_async.py +0 -190
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_response.py +0 -353
- mirascope-2.0.0/tests/ops/_internal/instrumentation/llm/test_serialize.py +0 -598
- mirascope-2.0.0/tests/ops/_internal/test_closure.py +0 -1552
- mirascope-2.0.0/tests/ops/_internal/test_configuration.py +0 -192
- mirascope-2.0.0/tests/ops/_internal/test_context.py +0 -321
- mirascope-2.0.0/tests/ops/_internal/test_missing_dependencies.py +0 -81
- mirascope-2.0.0/tests/ops/_internal/test_propagation.py +0 -634
- mirascope-2.0.0/tests/ops/_internal/test_session.py +0 -200
- mirascope-2.0.0/tests/ops/_internal/test_span.py +0 -555
- mirascope-2.0.0/tests/ops/_internal/test_tracing.py +0 -1792
- mirascope-2.0.0/tests/ops/_internal/test_versioning.py +0 -1859
- mirascope-2.0.0/tests/ops/conftest.py +0 -161
- mirascope-2.0.0/tests/ops/utils.py +0 -99
- mirascope-2.0.0/tests/utils.py +0 -197
- mirascope-2.0.0/typechecking/call.py +0 -138
- mirascope-2.0.0/typechecking/tool.py +0 -71
- mirascope-2.0.0/typechecking/utils.py +0 -87
- mirascope-2.0.0/typings/mlx/__init__.pyi +0 -3
- mirascope-2.0.0/typings/mlx/core.pyi +0 -12
- mirascope-2.0.0/typings/mlx/nn.pyi +0 -6
- mirascope-2.0.0/uv.lock +0 -3490
- {mirascope-2.0.0/mirascope/llm/providers → mirascope-2.0.0a1/mirascope/llm/clients}/base/kwargs.py +0 -0
- {mirascope-2.0.0/mirascope/llm/providers → mirascope-2.0.0a1/mirascope/llm/clients}/google/message.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/content/audio.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/content/document.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/content/image.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/content/text.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/content/thought.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/context/__init__.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/context/context.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/responses/streams.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/types/__init__.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/types/dataclass.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/types/jsonable.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/mirascope/llm/types/type_vars.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/README.md +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/__init__.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/assets/audio/tagline.mp3 +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/assets/images/wikipedia.png +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/input/cassettes/test_call_with_audio/google_gemini_2_5_flash.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_audio/openai_gpt_audio.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_audio/openai_completions_gpt_audio.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/input/cassettes/test_call_with_image_content/google_gemini_2_5_flash.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_image_content/openai_gpt_4o_completions.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_image_content/openai_completions_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_image_content/openai_gpt_4o_responses.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_image_content/openai_responses_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_image_url/openai_gpt_4o_completions.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_image_url/openai_completions_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_call_with_image_url/openai_gpt_4o_responses.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_call_with_image_url/openai_responses_gpt_4o.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/input/cassettes/test_resume_with_override/google_gemini_2_5_flash.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_completions.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/openai_completions_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_responses.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/openai_responses_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/openai_gpt_4o_completions.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/openai_completions_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/openai_gpt_4o_responses.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/openai_responses_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_completions.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/openai_completions_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_responses.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/openai_responses_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_completions.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/openai_completions_gpt_4o.yaml +0 -0
- /mirascope-2.0.0/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_responses.yaml → /mirascope-2.0.0a1/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/openai_responses_gpt_4o.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/google_gemini_2_5_flash_snapshots.py +0 -0
- /mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/openai_gpt_4o_completions_snapshots.py → /mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/openai_completions_gpt_4o_snapshots.py +0 -0
- /mirascope-2.0.0/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/anthropic_beta_claude_sonnet_4_0_snapshots.py → /mirascope-2.0.0a1/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/openai_responses_gpt_4o_snapshots.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/openai_completions_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/openai_completions_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/openai_responses_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/openai_responses_gpt_4o}/async_stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/openai_responses_gpt_4o}/stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_call/openai_responses_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/openai_completions_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/openai_completions_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/openai_responses_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/openai_responses_gpt_4o}/async_stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/openai_responses_gpt_4o}/stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_max_tokens/openai_responses_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/openai_completions_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/openai_completions_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/openai_responses_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/openai_responses_gpt_4o}/async_stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/openai_responses_gpt_4o}/stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_refusal/openai_responses_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/openai_completions_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/openai_responses_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/openai_responses_gpt_4o}/async_stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/openai_responses_gpt_4o}/stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/json/openai_responses_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/openai_completions_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/openai_completions_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/openai_responses_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/openai_responses_gpt_4o}/async_stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/openai_responses_gpt_4o}/stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/openai_responses_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/openai_completions_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/openai_completions_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/openai_responses_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/openai_responses_gpt_4o}/async_stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/openai_responses_gpt_4o}/stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/strict/openai_responses_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/openai_completions_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/openai_responses_gpt_4o}/async.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/openai_responses_gpt_4o}/async_stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/openai_responses_gpt_4o}/stream.yaml +0 -0
- {mirascope-2.0.0/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses → mirascope-2.0.0a1/tests/e2e/output/cassettes/test_structured_output/tool/openai_responses_gpt_4o}/sync.yaml +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/llm/__init__.py +0 -0
- {mirascope-2.0.0/tests/llm/formatting → mirascope-2.0.0a1/tests/llm/clients}/__init__.py +0 -0
- {mirascope-2.0.0/tests/llm/prompts → mirascope-2.0.0a1/tests/llm/clients/anthropic}/__init__.py +0 -0
- {mirascope-2.0.0/tests/llm/providers → mirascope-2.0.0a1/tests/llm/clients/base}/__init__.py +0 -0
- {mirascope-2.0.0/tests/llm/providers/base → mirascope-2.0.0a1/tests/llm/clients/google}/__init__.py +0 -0
- {mirascope-2.0.0/tests/llm/providers/google → mirascope-2.0.0a1/tests/llm/clients/openai}/__init__.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/llm/context/test_context.py +0 -0
- {mirascope-2.0.0/tests/llm/providers/mlx → mirascope-2.0.0a1/tests/llm/formatting}/__init__.py +0 -0
- {mirascope-2.0.0/tests/llm/responses → mirascope-2.0.0a1/tests/llm/prompts}/__init__.py +0 -0
- {mirascope-2.0.0/tests/llm/tools → mirascope-2.0.0a1/tests/llm/responses}/__init__.py +0 -0
- {mirascope-2.0.0/tests/ops → mirascope-2.0.0a1/tests/llm/tools}/__init__.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/tests/test_imports.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/typechecking/context.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/typechecking/format.py +0 -0
- {mirascope-2.0.0 → mirascope-2.0.0a1}/typechecking/streams.py +0 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[run]
|
|
2
|
+
# Exclude modules from coverage tracking until they have full test coverage
|
|
3
|
+
# Remove items from this list as we add comprehensive tests for each module
|
|
4
|
+
# Goal: When this exclude list is empty, we have 100% coverage across the entire codebase
|
|
5
|
+
omit =
|
|
6
|
+
# LLM modules to exclude (remove as we add full test coverage)
|
|
7
|
+
mirascope/llm/mcp/client.py
|
|
8
|
+
mirascope/llm/formatting/partial.py
|
|
9
|
+
|
|
10
|
+
# Exclude other top-level modules for now
|
|
11
|
+
mirascope/graphs/*
|
|
12
|
+
|
|
13
|
+
# Exclude examples and tests from coverage
|
|
14
|
+
examples/*
|
|
15
|
+
tests/*
|
|
16
|
+
|
|
17
|
+
[report]
|
|
18
|
+
# Show lines that weren't covered
|
|
19
|
+
show_missing = True
|
|
20
|
+
|
|
21
|
+
# Fail if coverage is below 100% for tracked files
|
|
22
|
+
fail_under = 100
|
|
23
|
+
|
|
24
|
+
# Exclude patterns from coverage analysis
|
|
25
|
+
exclude_also =
|
|
26
|
+
pragma: no cover
|
|
27
|
+
def __repr__
|
|
28
|
+
if self.debug:
|
|
29
|
+
if settings.DEBUG
|
|
30
|
+
raise AssertionError
|
|
31
|
+
raise NotImplementedError
|
|
32
|
+
if __name__ == .__main__.:
|
|
33
|
+
class .*\bProtocol\):
|
|
34
|
+
@(abc\.)?abstractmethod
|
|
35
|
+
if TYPE_CHECKING:
|
|
36
|
+
@overload
|
|
37
|
+
|
|
38
|
+
[html]
|
|
39
|
+
directory = htmlcov
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Example environment file for Mirascope v2
|
|
2
|
+
# Copy this file to .env and fill in your API keys
|
|
3
|
+
|
|
4
|
+
# Anthropic API Key
|
|
5
|
+
# Get your API key from: https://console.anthropic.com/
|
|
6
|
+
ANTHROPIC_API_KEY=your_anthropic_api_key_here
|
|
7
|
+
|
|
8
|
+
# OpenAI API Key (if using OpenAI models)
|
|
9
|
+
# Get your API key from: https://platform.openai.com/api-keys
|
|
10
|
+
OPENAI_API_KEY=your_openai_api_key_here
|
|
11
|
+
|
|
12
|
+
# Google Generative AI API Key (if using Gemini models)
|
|
13
|
+
# Get your API key from: https://makersuite.google.com/app/apikey
|
|
14
|
+
GOOGLE_API_KEY=your_google_api_key_here
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
# pyenv
|
|
2
|
+
.python-version
|
|
3
|
+
.python-versions
|
|
4
|
+
|
|
5
|
+
# Claude
|
|
6
|
+
CLAUDE.md
|
|
7
|
+
|
|
8
|
+
# Byte-compiled / optimized / DLL files
|
|
9
|
+
__pycache__/
|
|
10
|
+
*.py[cod]
|
|
11
|
+
*$py.class
|
|
12
|
+
|
|
13
|
+
# Mac
|
|
14
|
+
.DS_Store
|
|
15
|
+
|
|
16
|
+
# C extensions
|
|
17
|
+
*.so
|
|
18
|
+
|
|
19
|
+
# Distribution / packaging
|
|
20
|
+
.Python
|
|
21
|
+
build/
|
|
22
|
+
develop-eggs/
|
|
23
|
+
dist/
|
|
24
|
+
downloads/
|
|
25
|
+
eggs/
|
|
26
|
+
.eggs/
|
|
27
|
+
lib/
|
|
28
|
+
lib64/
|
|
29
|
+
parts/
|
|
30
|
+
sdist/
|
|
31
|
+
var/
|
|
32
|
+
wheels/
|
|
33
|
+
share/python-wheels/
|
|
34
|
+
*.egg-info/
|
|
35
|
+
.installed.cfg
|
|
36
|
+
*.egg
|
|
37
|
+
MANIFEST
|
|
38
|
+
|
|
39
|
+
# PyInstaller
|
|
40
|
+
# Usually these files are written by a python script from a template
|
|
41
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
42
|
+
*.manifest
|
|
43
|
+
*.spec
|
|
44
|
+
|
|
45
|
+
# Installer logs
|
|
46
|
+
pip-log.txt
|
|
47
|
+
pip-delete-this-directory.txt
|
|
48
|
+
|
|
49
|
+
# Unit test / coverage reports
|
|
50
|
+
htmlcov/
|
|
51
|
+
.tox/
|
|
52
|
+
.nox/
|
|
53
|
+
.coverage
|
|
54
|
+
.coverage.*
|
|
55
|
+
.cache
|
|
56
|
+
nosetests.xml
|
|
57
|
+
coverage.xml
|
|
58
|
+
*.cover
|
|
59
|
+
*.py,cover
|
|
60
|
+
.hypothesis/
|
|
61
|
+
.pytest_cache/
|
|
62
|
+
cover/
|
|
63
|
+
|
|
64
|
+
# Translations
|
|
65
|
+
*.mo
|
|
66
|
+
*.pot
|
|
67
|
+
|
|
68
|
+
# Django stuff:
|
|
69
|
+
*.log
|
|
70
|
+
local_settings.py
|
|
71
|
+
db.sqlite3
|
|
72
|
+
db.sqlite3-journal
|
|
73
|
+
|
|
74
|
+
# Flask stuff:
|
|
75
|
+
instance/
|
|
76
|
+
.webassets-cache
|
|
77
|
+
|
|
78
|
+
# Scrapy stuff:
|
|
79
|
+
.scrapy
|
|
80
|
+
|
|
81
|
+
# Sphinx documentation
|
|
82
|
+
docs/_build/
|
|
83
|
+
|
|
84
|
+
# PyBuilder
|
|
85
|
+
.pybuilder/
|
|
86
|
+
target/
|
|
87
|
+
|
|
88
|
+
# Jupyter Notebook
|
|
89
|
+
.ipynb_checkpoints
|
|
90
|
+
|
|
91
|
+
# IPython
|
|
92
|
+
profile_default/
|
|
93
|
+
ipython_config.py
|
|
94
|
+
|
|
95
|
+
# pyenv
|
|
96
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
97
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
98
|
+
# .python-version
|
|
99
|
+
|
|
100
|
+
# pipenv
|
|
101
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
102
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
103
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
104
|
+
# install all needed dependencies.
|
|
105
|
+
#Pipfile.lock
|
|
106
|
+
|
|
107
|
+
# poetry
|
|
108
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
109
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
110
|
+
# commonly ignored for libraries.
|
|
111
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
112
|
+
#poetry.lock
|
|
113
|
+
|
|
114
|
+
# pdm
|
|
115
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
116
|
+
#pdm.lock
|
|
117
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
118
|
+
# in version control.
|
|
119
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
120
|
+
.pdm.toml
|
|
121
|
+
|
|
122
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
123
|
+
__pypackages__/
|
|
124
|
+
|
|
125
|
+
# Celery stuff
|
|
126
|
+
celerybeat-schedule
|
|
127
|
+
celerybeat.pid
|
|
128
|
+
|
|
129
|
+
# SageMath parsed files
|
|
130
|
+
*.sage.py
|
|
131
|
+
|
|
132
|
+
# Environments
|
|
133
|
+
.env
|
|
134
|
+
.venv
|
|
135
|
+
env/
|
|
136
|
+
venv/
|
|
137
|
+
ENV/
|
|
138
|
+
env.bak/
|
|
139
|
+
venv.bak/
|
|
140
|
+
|
|
141
|
+
# Spyder project settings
|
|
142
|
+
.spyderproject
|
|
143
|
+
.spyproject
|
|
144
|
+
|
|
145
|
+
# Rope project settings
|
|
146
|
+
.ropeproject
|
|
147
|
+
|
|
148
|
+
# mkdocs documentation
|
|
149
|
+
/site
|
|
150
|
+
docs/**/*.html.md
|
|
151
|
+
docs/llms.txt
|
|
152
|
+
build/snippets/
|
|
153
|
+
mkdocs.dev.yml
|
|
154
|
+
|
|
155
|
+
# mypy
|
|
156
|
+
.mypy_cache/
|
|
157
|
+
.dmypy.json
|
|
158
|
+
dmypy.json
|
|
159
|
+
|
|
160
|
+
# Pyre type checker
|
|
161
|
+
.pyre/
|
|
162
|
+
|
|
163
|
+
# pytype static type analyzer
|
|
164
|
+
.pytype/
|
|
165
|
+
|
|
166
|
+
# Cython debug symbols
|
|
167
|
+
cython_debug/
|
|
168
|
+
|
|
169
|
+
# PyCharm
|
|
170
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
171
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
172
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
173
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
174
|
+
#.idea/
|
|
175
|
+
|
|
176
|
+
#sqlite
|
|
177
|
+
database.db
|
|
178
|
+
|
|
179
|
+
# Cloudflare
|
|
180
|
+
.wrangler
|
|
181
|
+
|
|
182
|
+
node_modules
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Mirascope, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mirascope
|
|
3
|
+
Version: 2.0.0a1
|
|
4
|
+
Summary: LLM abstractions that aren't obstructions
|
|
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) 2023 Mirascope, Inc.
|
|
15
|
+
|
|
16
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
17
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
18
|
+
in the Software without restriction, including without limitation the rights
|
|
19
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
20
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
21
|
+
furnished to do so, subject to the following conditions:
|
|
22
|
+
|
|
23
|
+
The above copyright notice and this permission notice shall be included in all
|
|
24
|
+
copies or substantial portions of the Software.
|
|
25
|
+
|
|
26
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
27
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
28
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
29
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
30
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
31
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
32
|
+
SOFTWARE.
|
|
33
|
+
License-File: LICENSE
|
|
34
|
+
Keywords: agents,artificial intelligence,developer tools,llm,llm tools,prompt engineering
|
|
35
|
+
Classifier: Development Status :: 3 - Alpha
|
|
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: Topic :: File Formats :: JSON
|
|
44
|
+
Classifier: Topic :: File Formats :: JSON :: JSON Schema
|
|
45
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
46
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
47
|
+
Requires-Python: >=3.10
|
|
48
|
+
Requires-Dist: docstring-parser>=0.17.0
|
|
49
|
+
Requires-Dist: httpx>=0.27.0
|
|
50
|
+
Requires-Dist: pydantic>=2.0.0
|
|
51
|
+
Requires-Dist: typing-extensions>=4.10.0
|
|
52
|
+
Provides-Extra: all
|
|
53
|
+
Requires-Dist: anthropic<1.0,>=0.72.0; extra == 'all'
|
|
54
|
+
Requires-Dist: google-genai<2,>=1.48.0; extra == 'all'
|
|
55
|
+
Requires-Dist: mcp<2,>=1.0.0; extra == 'all'
|
|
56
|
+
Requires-Dist: openai<3,>=2.7.1; extra == 'all'
|
|
57
|
+
Requires-Dist: pillow<11,>=10.4.0; extra == 'all'
|
|
58
|
+
Requires-Dist: proto-plus>=1.24.0; extra == 'all'
|
|
59
|
+
Provides-Extra: anthropic
|
|
60
|
+
Requires-Dist: anthropic<1.0,>=0.72.0; extra == 'anthropic'
|
|
61
|
+
Provides-Extra: google
|
|
62
|
+
Requires-Dist: google-genai<2,>=1.48.0; extra == 'google'
|
|
63
|
+
Requires-Dist: pillow<11,>=10.4.0; extra == 'google'
|
|
64
|
+
Requires-Dist: proto-plus>=1.24.0; extra == 'google'
|
|
65
|
+
Provides-Extra: mcp
|
|
66
|
+
Requires-Dist: mcp<2,>=1.0.0; extra == 'mcp'
|
|
67
|
+
Provides-Extra: openai
|
|
68
|
+
Requires-Dist: openai<3,>=2.7.1; extra == 'openai'
|
|
69
|
+
Description-Content-Type: text/markdown
|
|
70
|
+
|
|
71
|
+
## Mirascope v2 Python
|
|
72
|
+
|
|
73
|
+
This directory contains the Python implementation of Mirascope.
|
|
74
|
+
|
|
75
|
+
## Development Setup
|
|
76
|
+
|
|
77
|
+
1. **Environment Variables**: Copy `.env.example` to `.env` and fill in your API keys:
|
|
78
|
+
```bash
|
|
79
|
+
cp .env.example .env
|
|
80
|
+
# Edit .env with your API keys
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
2. **Install Dependencies**:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
uv sync --all-extras --dev
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
3. **Run Tests**:
|
|
90
|
+
```bash
|
|
91
|
+
uv run pytest
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Testing
|
|
95
|
+
|
|
96
|
+
### VCR Cassettes
|
|
97
|
+
|
|
98
|
+
The project uses [VCR.py](https://vcrpy.readthedocs.io/) to record and replay HTTP interactions with LLM APIs. This allows tests to run quickly and consistently without making actual API calls.
|
|
99
|
+
|
|
100
|
+
- **Cassettes Location**: Test cassettes are stored in `tests/llm/clients/*/cassettes/`
|
|
101
|
+
- **Recording Mode**: Tests use `"once"` mode - records new interactions if no cassette exists, replays existing cassettes otherwise
|
|
102
|
+
- **CI/CD**: In CI environments, tests use existing cassettes and never make real API calls
|
|
103
|
+
|
|
104
|
+
### Inline Snapshots
|
|
105
|
+
|
|
106
|
+
The project uses [inline-snapshot](https://15r10nk.github.io/inline-snapshot/) to capture expected test outputs directly in the test code.
|
|
107
|
+
|
|
108
|
+
- **Update Snapshots**: Run `uv run pytest --inline-snapshot=fix` to update all snapshots with actual values
|
|
109
|
+
- **Review Changes**: Run `uv run pytest --inline-snapshot=review` to preview what would change
|
|
110
|
+
- **Formatted Output**: Snapshots are automatically formatted with `ruff` for consistency
|
|
111
|
+
|
|
112
|
+
Example:
|
|
113
|
+
```python
|
|
114
|
+
def test_api_response():
|
|
115
|
+
response = client.call(messages=[user("Hello")])
|
|
116
|
+
assert response.content == snapshot([Text(text="Hi there!")])
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### Recording New Test Interactions
|
|
120
|
+
|
|
121
|
+
To record new test interactions:
|
|
122
|
+
|
|
123
|
+
1. Ensure your API keys are set in `.env`
|
|
124
|
+
2. Delete the relevant cassette file (if updating an existing test)
|
|
125
|
+
3. Run the specific test: `uv run pytest tests/path/to/test.py::test_name`
|
|
126
|
+
4. The cassette will be automatically created/updated
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
## Mirascope v2 Python
|
|
2
|
+
|
|
3
|
+
This directory contains the Python implementation of Mirascope.
|
|
4
|
+
|
|
5
|
+
## Development Setup
|
|
6
|
+
|
|
7
|
+
1. **Environment Variables**: Copy `.env.example` to `.env` and fill in your API keys:
|
|
8
|
+
```bash
|
|
9
|
+
cp .env.example .env
|
|
10
|
+
# Edit .env with your API keys
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
2. **Install Dependencies**:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
uv sync --all-extras --dev
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
3. **Run Tests**:
|
|
20
|
+
```bash
|
|
21
|
+
uv run pytest
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Testing
|
|
25
|
+
|
|
26
|
+
### VCR Cassettes
|
|
27
|
+
|
|
28
|
+
The project uses [VCR.py](https://vcrpy.readthedocs.io/) to record and replay HTTP interactions with LLM APIs. This allows tests to run quickly and consistently without making actual API calls.
|
|
29
|
+
|
|
30
|
+
- **Cassettes Location**: Test cassettes are stored in `tests/llm/clients/*/cassettes/`
|
|
31
|
+
- **Recording Mode**: Tests use `"once"` mode - records new interactions if no cassette exists, replays existing cassettes otherwise
|
|
32
|
+
- **CI/CD**: In CI environments, tests use existing cassettes and never make real API calls
|
|
33
|
+
|
|
34
|
+
### Inline Snapshots
|
|
35
|
+
|
|
36
|
+
The project uses [inline-snapshot](https://15r10nk.github.io/inline-snapshot/) to capture expected test outputs directly in the test code.
|
|
37
|
+
|
|
38
|
+
- **Update Snapshots**: Run `uv run pytest --inline-snapshot=fix` to update all snapshots with actual values
|
|
39
|
+
- **Review Changes**: Run `uv run pytest --inline-snapshot=review` to preview what would change
|
|
40
|
+
- **Formatted Output**: Snapshots are automatically formatted with `ruff` for consistency
|
|
41
|
+
|
|
42
|
+
Example:
|
|
43
|
+
```python
|
|
44
|
+
def test_api_response():
|
|
45
|
+
response = client.call(messages=[user("Hello")])
|
|
46
|
+
assert response.content == snapshot([Text(text="Hi there!")])
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Recording New Test Interactions
|
|
50
|
+
|
|
51
|
+
To record new test interactions:
|
|
52
|
+
|
|
53
|
+
1. Ensure your API keys are set in `.env`
|
|
54
|
+
2. Delete the relevant cassette file (if updating an existing test)
|
|
55
|
+
3. Run the specific test: `uv run pytest tests/path/to/test.py::test_name`
|
|
56
|
+
4. The cassette will be automatically created/updated
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
from mirascope import llm
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class Library:
|
|
5
|
+
available_books: list[str]
|
|
6
|
+
detailed_book_info: dict[str, str]
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@llm.tool()
|
|
10
|
+
# [!code highlight:2]
|
|
11
|
+
def get_book_info(ctx: llm.Context[Library], book: str) -> str:
|
|
12
|
+
return ctx.deps.detailed_book_info.get(book, "Book not found")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@llm.call(provider="openai", model_id="gpt-5", tools=[get_book_info])
|
|
16
|
+
# [!code highlight:2]
|
|
17
|
+
def librarian(ctx: llm.Context[Library], query: str):
|
|
18
|
+
book_list = "\n".join(ctx.deps.available_books)
|
|
19
|
+
return [
|
|
20
|
+
llm.messages.system(
|
|
21
|
+
f"You are a librarian, with access to these books: ${book_list}"
|
|
22
|
+
),
|
|
23
|
+
query,
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def main():
|
|
28
|
+
library = Library()
|
|
29
|
+
query = "Please recommend a mind-bending book from the library."
|
|
30
|
+
ctx = llm.Context(deps=library) # [!code highlight]
|
|
31
|
+
response: llm.ContextResponse[Library] = librarian(ctx, query) # [!code highlight]
|
|
32
|
+
|
|
33
|
+
while response.tool_calls:
|
|
34
|
+
tool_outputs = response.execute_tools(ctx) # [!code highlight]
|
|
35
|
+
response = response.resume(ctx, tool_outputs) # [!code highlight]
|
|
36
|
+
|
|
37
|
+
print(response.pretty())
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
main()
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
from mirascope import llm
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class Library:
|
|
5
|
+
available_books: list[str]
|
|
6
|
+
detailed_book_info: dict[str, str]
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@llm.tool()
|
|
10
|
+
# [!code highlight:2]
|
|
11
|
+
def get_book_info(ctx: llm.Context[Library], book: str) -> str:
|
|
12
|
+
return ctx.deps.detailed_book_info.get(book, "Book not found")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# [!code highlight:2]
|
|
16
|
+
def librarian(ctx: llm.Context[Library], query: str):
|
|
17
|
+
model = llm.use_model(provider="openai", model_id="gpt-5")
|
|
18
|
+
book_list = "\n".join(ctx.deps.available_books)
|
|
19
|
+
messages = [
|
|
20
|
+
llm.messages.system(
|
|
21
|
+
f"You are a librarian, with access to these books: ${book_list}"
|
|
22
|
+
),
|
|
23
|
+
query,
|
|
24
|
+
]
|
|
25
|
+
# [!code highlight:2]
|
|
26
|
+
return model.context_call(ctx=ctx, messages=messages, tools=[get_book_info])
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def main():
|
|
30
|
+
query = "Please recommend a mind-bending book from the library."
|
|
31
|
+
ctx = llm.Context(deps=Library()) # [!code highlight]
|
|
32
|
+
response: llm.ContextResponse[Library] = librarian(ctx, query) # [!code highlight]
|
|
33
|
+
|
|
34
|
+
while response.tool_calls:
|
|
35
|
+
tool_outputs = response.execute_tools(ctx) # [!code highlight]
|
|
36
|
+
response = response.resume(ctx, tool_outputs) # [!code highlight]
|
|
37
|
+
|
|
38
|
+
print(response.pretty())
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
main()
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import asyncio
|
|
2
|
+
|
|
3
|
+
from mirascope import llm
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@llm.call(provider="openai", model_id="gpt-5")
|
|
7
|
+
async def recommend_book(genre: str):
|
|
8
|
+
return f"Please recommend a book in {genre}."
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
async def main():
|
|
12
|
+
response: llm.AsyncResponse = await recommend_book("fantasy")
|
|
13
|
+
print(response.pretty())
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
if __name__ == "__main__":
|
|
17
|
+
asyncio.run(main())
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import asyncio
|
|
2
|
+
|
|
3
|
+
from mirascope import llm
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@llm.call(provider="openai", model_id="gpt-5")
|
|
7
|
+
async def recommend_book(genre: str):
|
|
8
|
+
return f"Please recommend a book in {genre}."
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
async def main():
|
|
12
|
+
response: llm.AsyncStreamResponse = await recommend_book.stream("fantasy")
|
|
13
|
+
async for chunk in response.pretty_stream():
|
|
14
|
+
print(chunk, flush=True, end="")
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
if __name__ == "__main__":
|
|
18
|
+
asyncio.run(main())
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from mirascope import llm
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
@llm.call(provider="openai", model_id="gpt-5")
|
|
5
|
+
def recommend_book(genre: str):
|
|
6
|
+
return f"Please recommend a book in {genre}."
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def main():
|
|
10
|
+
response: llm.StreamResponse = recommend_book.stream("fantasy")
|
|
11
|
+
for chunk in response.pretty_stream():
|
|
12
|
+
print(chunk, flush=True, end="")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
main()
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from mirascope import llm
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
@llm.call(provider="openai", model_id="gpt-5")
|
|
5
|
+
def recommend_book(genre: str):
|
|
6
|
+
return f"Please recommend a book in {genre}."
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def main():
|
|
10
|
+
response: llm.Response = recommend_book("fantasy")
|
|
11
|
+
print(response.pretty())
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
main()
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
|
|
3
|
+
from mirascope import llm
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Book(BaseModel):
|
|
7
|
+
title: str
|
|
8
|
+
author: str
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@llm.call(provider="openai", model_id="gpt-5", format=Book)
|
|
12
|
+
def recommend_book(genre: str):
|
|
13
|
+
return f"Please recommend a book in {genre}."
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def main():
|
|
17
|
+
response: llm.Response[Book] = recommend_book("fantasy")
|
|
18
|
+
book: Book = response.parse()
|
|
19
|
+
print(f"{book.title} by {book.author}")
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
main()
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
|
|
3
|
+
from mirascope import llm
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Book(BaseModel):
|
|
7
|
+
title: str
|
|
8
|
+
author: str
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def recommend_book(genre: str) -> llm.Response[Book]:
|
|
12
|
+
model: llm.Model = llm.use_model(provider="openai", model_id="gpt-5")
|
|
13
|
+
message = llm.messages.user(f"Please recommend a book in {genre}.")
|
|
14
|
+
return model.call(
|
|
15
|
+
messages=[message],
|
|
16
|
+
format=Book, # [!code highlight]
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def main():
|
|
21
|
+
response: llm.Response[Book] = recommend_book("fantasy")
|
|
22
|
+
book: Book = response.parse()
|
|
23
|
+
print(f"{book.title} by {book.author}")
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
main()
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import asyncio
|
|
2
|
+
|
|
3
|
+
from mirascope import llm
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
async def recommend_book(genre: str) -> llm.AsyncResponse:
|
|
7
|
+
model: llm.Model = llm.use_model(provider="openai", model_id="gpt-5")
|
|
8
|
+
message = llm.messages.user(f"Please recommend a book in {genre}.")
|
|
9
|
+
return await model.call_async(messages=[message])
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
async def main():
|
|
13
|
+
response: llm.AsyncResponse = await recommend_book("fantasy")
|
|
14
|
+
print(response.pretty())
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
if __name__ == "__main__":
|
|
18
|
+
asyncio.run(main())
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import asyncio
|
|
2
|
+
|
|
3
|
+
from mirascope import llm
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
async def recommend_book(genre: str) -> llm.AsyncStreamResponse:
|
|
7
|
+
model: llm.Model = llm.use_model(provider="openai", model_id="gpt-5")
|
|
8
|
+
message = llm.messages.user(f"Please recommend a book in {genre}.")
|
|
9
|
+
return await model.stream_async(messages=[message])
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
async def main():
|
|
13
|
+
response: llm.AsyncStreamResponse = await recommend_book("fantasy")
|
|
14
|
+
async for chunk in response.pretty_stream():
|
|
15
|
+
print(chunk, flush=True, end="")
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
if __name__ == "__main__":
|
|
19
|
+
asyncio.run(main())
|