mirascope 2.1.0__tar.gz → 2.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mirascope-2.1.0 → mirascope-2.1.1}/PKG-INFO +1 -1
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/__init__.py +3 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/completions/_utils/__init__.py +3 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/completions/_utils/encode.py +27 -32
- mirascope-2.1.1/mirascope/llm/providers/openai/completions/_utils/feature_info.py +50 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/completions/base_provider.py +21 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/completions/provider.py +8 -2
- mirascope-2.1.1/mirascope/llm/providers/openrouter/__init__.py +5 -0
- mirascope-2.1.1/mirascope/llm/providers/openrouter/provider.py +67 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/provider_id.py +2 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/provider_registry.py +6 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/pyproject.toml +1 -1
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/conftest.py +1 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/conftest.py +2 -0
- mirascope-2.1.1/tests/e2e/input/cassettes/test_openrouter_reasoning_model_skips_temperature/openrouter_openai_o1.yaml +80 -0
- mirascope-2.1.1/tests/e2e/input/cassettes/test_openrouter_stream/openrouter_anthropic_claude_3_5_sonnet_20241022.yaml +100 -0
- mirascope-2.1.1/tests/e2e/input/cassettes/test_openrouter_stream/openrouter_openai_gpt_4o.yaml +91 -0
- mirascope-2.1.1/tests/e2e/input/cassettes/test_openrouter_sync/openrouter_anthropic_claude_3_5_sonnet_20241022.yaml +81 -0
- mirascope-2.1.1/tests/e2e/input/cassettes/test_openrouter_sync/openrouter_openai_gpt_4o.yaml +81 -0
- mirascope-2.1.1/tests/e2e/input/cassettes/test_openrouter_with_temperature/openrouter_anthropic_claude_3_5_sonnet_20241022.yaml +81 -0
- mirascope-2.1.1/tests/e2e/input/cassettes/test_openrouter_with_temperature/openrouter_openai_gpt_4o.yaml +81 -0
- mirascope-2.1.1/tests/e2e/input/snapshots/test_openrouter_reasoning_model_skips_temperature/openrouter_openai_o1_snapshots.py +44 -0
- mirascope-2.1.1/tests/e2e/input/snapshots/test_openrouter_stream/openrouter_anthropic_claude_3_5_sonnet_20241022_snapshots.py +41 -0
- mirascope-2.1.1/tests/e2e/input/snapshots/test_openrouter_stream/openrouter_openai_gpt_4o_snapshots.py +41 -0
- mirascope-2.1.1/tests/e2e/input/snapshots/test_openrouter_sync/openrouter_anthropic_claude_3_5_sonnet_20241022_snapshots.py +41 -0
- mirascope-2.1.1/tests/e2e/input/snapshots/test_openrouter_sync/openrouter_openai_gpt_4o_snapshots.py +41 -0
- mirascope-2.1.1/tests/e2e/input/snapshots/test_openrouter_with_temperature/openrouter_anthropic_claude_3_5_sonnet_20241022_snapshots.py +44 -0
- mirascope-2.1.1/tests/e2e/input/snapshots/test_openrouter_with_temperature/openrouter_openai_gpt_4o_snapshots.py +44 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_authentication_error.py +3 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_call_with_audio.py +6 -1
- mirascope-2.1.1/tests/e2e/input/test_openai_compatibility_providers.py +205 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/openai/test_completions_encoding.py +87 -1
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/test_missing_dependencies.py +7 -0
- mirascope-2.1.1/tests/llm/providers/test_openrouter_provider.py +196 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/test_providers.py +10 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_closure.py +2 -2
- {mirascope-2.1.0 → mirascope-2.1.1}/uv.lock +1 -1
- mirascope-2.1.0/tests/e2e/input/test_openai_compatibility_providers.py +0 -85
- {mirascope-2.1.0 → mirascope-2.1.1}/.coveragerc +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/.env.example +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/.gitignore +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/AGENTS.md +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/LICENSE +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/README.md +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/agents/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/async/async_streaming.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/async/async_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/async/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/async/basic_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/async/basic_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/async/parallel.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/calls/access_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/calls/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/calls/override.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/calls/return_types.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/calls/with_params.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/basic_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/basic_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/basic_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/conditional_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/conditional_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/conditional_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/nested_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/nested_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/nested_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/parallel_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/parallel_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/chaining/parallel_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/context/async_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/context/basic_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/context/basic_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/context/basic_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/errors/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/context/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/context/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/decorator/async.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/decorator/async_stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/decorator/stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/decorator/sync.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/format/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/format/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/local_model/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/local_model/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/mlx/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/mlx/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/model/async.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/model/async_stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/model/stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/model/sync.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/override/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/override/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/parameters/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/parameters/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/register_provider/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/register_provider/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/resume/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/resume/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/system_messages/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/system_messages/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/tool_call/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/tool_call/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/intro/welcome.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/local_models/local_mlx.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/local_models/local_ollama.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/local_models/local_vllm.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/mcp/basic_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/mcp/basic_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/mcp/basic_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/mcp/combined_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/mcp_with_thinking.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/messages/audio_content.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/messages/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/messages/image_content.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/messages/multimodal.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/messages/roles.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/messages/text_content.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/misc/anthropic_redacted_thinking.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/misc/ask_llm.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/misc/local_clickhouse_verify.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/misc/local_versioning_example.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/misc/openai_responses_reasoning.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/misc/opentelemetry_call_trace.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/misc/opentelemetry_genai.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/misc/search_span.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/models/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/models/call_patterns.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/models/override.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/models/with_params.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/basic_trace.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/configure_basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/configure_cloud.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/configure_otlp.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/context_propagation.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/instrument_llm.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/session_attributes.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/session_basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/span_basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/span_events.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/trace_llm_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/trace_with_metadata.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/trace_wrapped.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/version_basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/version_llm_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/ops/version_with_metadata.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/prompts/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/prompts/basic_without_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/prompts/messages_method.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/prompts/return_types.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/prompts/with_params.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/providers/custom_api_key.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/providers/openai_compatible.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/providers/scope_matching.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/reliability/basic_retry.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/reliability/fallback_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/reliability/fallback_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/reliability/fallback_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/reliability/retry_specific_errors.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/reliability/stream_retry.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/reliability/tool_error_recovery.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/reliability/validation_retry.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/responses/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/responses/content_access.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/responses/finish_reason.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/responses/metadata.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/responses/resume.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/responses/usage.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_context_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_stream_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_stream_context_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_stream_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_stream_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_stream_tools_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_stream_tools_context_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_stream_tools_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_tools_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_tools_context_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_async_tools_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_context_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_stream_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_stream_context_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_stream_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_stream_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_stream_tools_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_stream_tools_context_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_stream_tools_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_tools_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_tools_context_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/sazed/sazed_tools_structured.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/accumulated.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/async_basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/basic_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/basic_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/basic_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/chunk_stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/error_handling.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/replay.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/streams.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/structured_stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/streaming/with_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/advanced_model_features.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/basemodel.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/basic_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/basic_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/basic_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/custom_instructions.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/explicit_mode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/generic_collection.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/output_parser.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/primitives.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/structured_output/with_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/thinking/access_thoughts.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/thinking/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/thinking/config.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/thinking/encode_as_text.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/tools/async_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/tools/basic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/tools/loop.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/tools/parallel.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/tools/web_search.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/tools/with_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/tools/with_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/examples/tools/with_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/lint-staged.ts +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/_stubs.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/README.md +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_create_request_label.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_create_response_label.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_get_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_get_response_label.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_list_request_label.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_list_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item_label.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_update_request_label.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_update_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/annotations/types/annotations_update_response_label.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/api_keys/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/api_keys/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/api_keys/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/api_keys/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/api_keys/types/api_keys_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/api_keys/types/api_keys_get_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/api_keys/types/api_keys_list_all_for_org_response_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/api_keys/types/api_keys_list_response_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/api_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/client_wrapper.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/datetime_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/file.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/force_multipart.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/http_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/http_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/jsonable_encoder.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/pydantic_utilities.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/query_encoder.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/remove_none_from_dict.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/request_options.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/core/serialization.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/docs/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/docs/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/docs/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environment.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/types/environments_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/types/environments_get_analytics_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/types/environments_get_analytics_response_top_functions_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/types/environments_get_analytics_response_top_models_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/types/environments_get_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/types/environments_list_response_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/environments/types/environments_update_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/bad_request_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/conflict_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/forbidden_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/internal_server_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/not_found_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/payment_required_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/service_unavailable_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/too_many_requests_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/errors/unauthorized_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_create_request_dependencies_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_create_response_dependencies_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_find_by_hash_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_find_by_hash_response_dependencies_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_get_by_env_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_get_by_env_response_dependencies_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_get_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_get_response_dependencies_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_list_by_env_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item_dependencies_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_list_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_list_response_functions_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/functions/types/functions_list_response_functions_item_dependencies_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/health/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/health/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/health/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/health/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/health/types/health_check_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/health/types/health_check_response_status.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_request_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_status.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_status.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_status.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_memberships/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_memberships/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_memberships/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_memberships/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_memberships/types/organization_memberships_update_request_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_create_payment_intent_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_create_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_get_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_get_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_list_response_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_list_response_item_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_request_target_plan.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item_resource.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_router_balance_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_subscription_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_subscription_response_current_plan.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_subscription_response_payment_method.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change_target_plan.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_update_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_update_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_update_subscription_request_target_plan.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/organizations/types/organizations_update_subscription_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_create_request_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_create_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_get_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_get_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_update_request_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_update_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/project_memberships/types/project_memberships_update_response_role.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/projects/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/projects/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/projects/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/projects/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/projects/types/projects_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/projects/types/projects_get_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/projects/types/projects_list_response_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/projects/types/projects_update_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/reference.md +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/tags/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/tags/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/tags/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/tags/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/tags/types/tags_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/tags/types/tags_get_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/tags/types/tags_list_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/tags/types/tags_list_response_tags_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/tags/types/tags_update_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/token_cost/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/token_cost/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/token_cost/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/token_cost/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/token_cost/types/token_cost_calculate_request_usage.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/token_cost/types/token_cost_calculate_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/raw_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_array_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value_values_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_array_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value_values_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_array_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value_values_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_status.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_create_response_partial_success.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_get_analytics_summary_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_functions_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_models_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response_spans_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_get_trace_detail_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_get_trace_detail_response_spans_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_list_by_function_hash_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_list_by_function_hash_response_traces_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item_operator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_by.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_order.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_by_env_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_by_env_response_spans_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item_operator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_request_sort_by.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_request_sort_order.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/traces/types/traces_search_response_spans_item.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/already_exists_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/already_exists_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/bad_request_error_body.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/click_house_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/database_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/database_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/date.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/http_api_decode_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/http_api_decode_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/immutable_resource_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/internal_server_error_body.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/issue.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/issue_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/not_found_error_body.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/not_found_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/number_from_string.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/permission_denied_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/permission_denied_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/plan_limit_exceeded_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/plan_limit_exceeded_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/pricing_unavailable_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/property_key.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/property_key_key.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/property_key_key_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/rate_limit_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/rate_limit_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/service_unavailable_error_body.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/service_unavailable_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/stripe_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/subscription_past_due_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/subscription_past_due_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/unauthorized_error_body.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/_generated/types/unauthorized_error_tag.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/api/settings.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/calls/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/calls/calls.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/calls/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/content/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/content/audio.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/content/document.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/content/image.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/content/text.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/content/thought.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/content/tool_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/content/tool_output.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/context/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/context/_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/context/context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/exceptions.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/formatting/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/formatting/format.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/formatting/from_call_args.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/formatting/output_parser.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/formatting/partial.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/formatting/primitives.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/formatting/types.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/mcp/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/mcp/mcp_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/messages/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/messages/_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/messages/message.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/models/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/models/models.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/models/params.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/models/thinking_config.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/prompts/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/prompts/_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/prompts/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/prompts/prompts.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/prompts/protocols.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/_utils/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/_utils/beta_decode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/_utils/beta_encode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/_utils/decode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/_utils/encode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/_utils/errors.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/beta_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/model_id.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/model_info.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/anthropic/provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/base/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/base/_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/base/base_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/base/kwargs.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/google/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/google/_utils/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/google/_utils/decode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/google/_utils/encode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/google/_utils/errors.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/google/message.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/google/model_id.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/google/model_info.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/google/provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mirascope/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mirascope/_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mirascope/provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mlx/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mlx/_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mlx/encoding/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mlx/encoding/base.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mlx/encoding/transformers.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mlx/mlx.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mlx/model_id.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/mlx/provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/model_id.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/ollama/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/ollama/provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/_utils/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/_utils/errors.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/completions/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/completions/_utils/decode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/model_id.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/model_info.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/responses/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/responses/_utils/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/responses/_utils/decode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/responses/_utils/encode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/responses/provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/together/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/together/provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/base_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/base_stream_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/finish_reason.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/root_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/stream_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/streams.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/responses/usage.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/protocols.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/provider_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/tool_schema.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/toolkit.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/types.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/tools/web_search_tool.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/types/dataclass.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/types/jsonable.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/types/type_vars.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/closure.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/configuration.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/exporters/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/exporters/exporters.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/exporters/processors.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/exporters/types.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/exporters/utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/common.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/cost.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/encode.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_input_messages.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_output_messages.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_system_instructions.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/gen_ai_types/shared.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/llm.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/llm/serialize.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/providers/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/providers/anthropic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/providers/base.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/providers/google_genai.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/instrumentation/providers/openai.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/propagation.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/protocols.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/session.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/spans.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/traced_calls.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/traced_functions.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/tracing.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/types.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/versioned_calls.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/versioned_functions.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/_internal/versioning.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/mirascope/ops/exceptions.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/schemas/gen-ai/gen-ai-input-messages.json +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/schemas/gen-ai/gen-ai-output-messages.json +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/schemas/gen-ai/gen-ai-system-instructions.json +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/example_generator.ts +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/generate_extra_imports.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/codegen_anthropic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/codegen_google.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/codegen_openai.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/core/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/core/models.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/core/registry.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/core/runner.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/core/testing.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/data/anthropic.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/data/google.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/data/openai.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/test_anthropic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/test_google.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/test_openai.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/model_features/update_all.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/regenerate_examples.ts +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/scripts/validate_extra_imports.sh +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/api/test_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/api/test_missing_dependencies.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/api/test_settings.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/README.md +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/assets/audio/tagline.mp3 +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/assets/images/wikipedia.png +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/README.md +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error_stream/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error_stream/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error_stream/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error_stream/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_authentication_error_stream/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_multi_turn_conversation/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_system_message/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_system_message/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_system_message/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_system_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_system_message/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_system_message/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_tool/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_tool/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_tool/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_tool/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_tool/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_user_message/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_user_message/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_user_message/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_user_message/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_caching_user_message/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_non_openai_models_through_openai/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_audio/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_audio/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_audio/openai_gpt_audio.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_empty_string/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_empty_string/mlx_mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_empty_string/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_empty_string/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_image_content/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_image_content/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_image_content/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_image_content/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_image_content/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_image_url/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_image_url/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_image_url/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_image_url/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_mcp_tools/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_params/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_params/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_params/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_5_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_params/openai_gpt_5_mini_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_parse_error/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_parse_error/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_parse_error/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_parse_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_parse_error/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_parse_error/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/anthropic_beta_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_text_encoded_thoughts/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_tool_error/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_tool_error/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_tool_error/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_tool_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_tool_error/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_tool_error/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_two_empty_string/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_two_empty_string/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_call_with_two_empty_string/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider/openai_gpt_5_mini.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider/openai_gpt_5_mini_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider/openai_gpt_5_mini_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/openai_gpt_5_mini.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/openai_gpt_5_mini_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_mirascope_provider_streaming/openai_gpt_5_mini_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found_stream/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found_stream/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found_stream/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found_stream/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found_stream/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_model_not_found_stream/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_ollama_provider/ollama_gemma3_4b.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_openai_completions_provider/openai_gpt_4o_mini.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_openai_completions_provider/openai_gpt_4o_mini_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_openai_responses_provider/openai_gpt_4o_mini.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_openai_responses_provider/openai_gpt_4o_mini_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_resume_with_override_thinking_and_tools/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_streamed/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_streamed/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_with_streamed_thinking/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_with_streamed_thinking/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_with_thinking/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_with_thinking/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_with_tools/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_with_tools/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_with_tools_streamed/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_strict_mode_with_tools_streamed/google_gemini_3_pro_preview.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_completions.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_output_parser/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_primitive_types_int/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_output_with_primitive_types_list/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_stream_async/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_structured_stream_sync/anthropic_claude_haiku_4_5.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_together_provider/meta_llama_Llama_3_3_70B_Instruct_Turbo.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_web_search_tool/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_web_search_tool/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_web_search_tool/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_web_search_tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_web_search_tool/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_web_search_tool_stream/anthropic_beta_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_web_search_tool_stream/anthropic_claude_sonnet_4_0.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_web_search_tool_stream/google_gemini_2_5_flash.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/cassettes/test_web_search_tool_stream/openai_gpt_4o_responses.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/conftest.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_caching_multi_turn_conversation_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_caching_system_message_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_caching_tool_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_caching_user_message_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_audio_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_empty_array_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_empty_string_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_image_content_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_image_url_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_params_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_parse_error_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_strict_tool_and_optional_properties_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_text_encoded_thoughts_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_tool_error_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_call_with_two_empty_string_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_conversation_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_model_not_found_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_model_not_found_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_resume_with_override_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_resume_with_override_thinking_and_tools_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_structured_output_with_formatting_instructions_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_system_message_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_tool_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_unsupported_provider_tool_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_user_message_caching_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_web_search_tool_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/mlx_lm_cassettes/test_web_search_tool_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_multi_turn_conversation/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_system_message/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_system_message/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_system_message/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_system_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_system_message/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_system_message/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_tool/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_tool/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_tool/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_user_message/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_user_message/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_user_message/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_user_message/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_user_message/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_caching_user_message/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_non_openai_models_through_openai/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_audio/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_audio/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_audio/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_audio/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_audio/openai_gpt_audio_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_array/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_array/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_array/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_array/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_array/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_array/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_string/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_string/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_string/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_string/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_string/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_empty_string/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_content/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_content/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_content/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_content/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_content/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_content/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_url/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_url/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_url/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_url/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_url/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_image_url/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_mcp_tools/anthropic_claude_haiku_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_params/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_params/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_params/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_params/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_5_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_params/openai_gpt_5_mini_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_parse_error/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_parse_error/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_parse_error/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_parse_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_parse_error/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_parse_error/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/anthropic_beta_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_strict_tool_and_optional_properties/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_text_encoded_thoughts/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_tool_error/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_tool_error/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_tool_error/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_tool_error/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_tool_error/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_tool_error/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_two_empty_string/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_two_empty_string/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_two_empty_string/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_two_empty_string/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_two_empty_string/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_call_with_two_empty_string/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider/anthropic_claude_haiku_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider/openai_gpt_5_mini_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider_streaming/anthropic_claude_haiku_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider_streaming/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_mirascope_provider_streaming/openai_gpt_5_mini_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_ollama_provider/ollama_gemma3_4b_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_openai_completions_provider/openai_gpt_4o_mini_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_openai_responses_provider/openai_gpt_4o_mini_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_resume_with_override_thinking_and_tools/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode/google_gemini_3_pro_preview_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_streamed/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_streamed/google_gemini_3_pro_preview_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_with_streamed_thinking/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_with_streamed_thinking/google_gemini_3_pro_preview_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_with_thinking/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_with_thinking/google_gemini_3_pro_preview_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_with_tools/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_with_tools/google_gemini_3_pro_preview_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_with_tools_streamed/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_strict_mode_with_tools_streamed/google_gemini_3_pro_preview_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/json/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/strict/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_formatting_instructions/tool/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_output_parser/anthropic_claude_haiku_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_primitive_types_int/anthropic_claude_haiku_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_output_with_primitive_types_list/anthropic_claude_haiku_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_stream_async/anthropic_claude_haiku_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_structured_stream_sync/anthropic_claude_haiku_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_together_provider/meta_llama_Llama_3_3_70B_Instruct_Turbo_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_unsupported_provider_tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_unsupported_provider_tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_unsupported_provider_tool/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_unsupported_provider_tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_unsupported_provider_tool/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_unsupported_provider_tool/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool_stream/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool_stream/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool_stream/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool_stream/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool_stream/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/snapshots/test_web_search_tool_stream/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_caching.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_call_with_image.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_call_with_mcp_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_call_with_params.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_call_with_parse_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_call_with_strict_tool_and_optional_properties.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_call_with_text_encoded_thoughts.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_call_with_tool_error.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_empty_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_mirascope_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_model_not_found.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_provider_overriding.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_resume_with_override.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_resume_with_override_thinking_and_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_strict_structured_output_compatibility.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_structured_output_parser.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_structured_output_primitive_types.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_structured_output_streaming.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_structured_output_with_formatting_instructions.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_unsupported_provider_tool.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/input/test_web_search_tool.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/mlx_lm_cassette.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/README.md +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking/openai_gpt_5_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_call_with_tools/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_5_mini_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_5_mini_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_5_mini_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_max_tokens/openai_gpt_5_mini_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_refusal/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/json/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/strict/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output/tool/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/json/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/strict/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/google_gemini_2_5_flash/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_completions/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/async.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/async_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/cassettes/test_structured_output_with_tools/tool/openai_gpt_4o_responses/sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/conftest.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_call_with_tools_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_max_tokens_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_prompt_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_prompt_stream_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_prompt_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_prompt_sync_context_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_prompt_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_refusal_async_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_refusal_async_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_refusal_stream_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_refusal_sync_mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_async_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_sync_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_async_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_stream_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_None-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_context_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_json-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_strict-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/mlx_lm_cassettes/test_structured_output_with_tools_sync_tool-mlx-community_Qwen3-0.6B-4bit-DWQ-053125_.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_thinking/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_thinking/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_thinking/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_thinking/openai_gpt_5_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_thinking_no_include_thoughts/openai_gpt_5_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_tools/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_tools/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_call_with_tools/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_max_tokens/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_max_tokens/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_max_tokens/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_max_tokens/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_max_tokens/openai_gpt_5_mini_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_refusal/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_refusal/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_refusal/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_refusal/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_refusal/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_refusal/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/json/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/json/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/json/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/json/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/json/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/json/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/strict/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/strict/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/strict/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/strict/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/strict/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/tool/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/tool/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/tool/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output/tool/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/json/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/json/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/json/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/json/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/strict/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_beta_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_0_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/anthropic_claude_sonnet_4_5_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/google_gemini_2_5_flash_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/mlx_community_Qwen3_0_6B_4bit_DWQ_053125_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_gpt_4o_completions_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/snapshots/test_structured_output_with_tools/tool/openai_gpt_4o_responses_snapshots.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/test_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/test_call_with_thinking.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/test_call_with_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/test_max_tokens.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/test_prompt.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/test_refusal.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/test_structured_output.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/e2e/output/test_structured_output_with_tools.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/fixtures/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/calls/test_call_decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/content/test_audio_content.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/content/test_image_content.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/context/test_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/context/test_context_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/formatting/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/formatting/test_format.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/formatting/test_output_parser.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/formatting/test_partial.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/formatting/test_primitive_types.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/mcp/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/mcp/example_mcp_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/mcp/test_mcp_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/messages/test_messages.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/models/test_model.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/prompts/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/prompts/test_prompt_decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/anthropic/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/anthropic/test_anthropic_beta_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/anthropic/test_anthropic_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/base/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/base/test_base_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/base/test_params.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/base/test_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/google/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/google/test_google_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/mlx/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/mlx/conftest.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/mlx/encoding/test_transformers.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/mlx/test_client.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/mlx/test_mlx.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/mlx/test_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/openai/test_completions_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/openai/test_openai_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/openai/test_responses_encoding.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/openai/test_responses_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/test_mirascope_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/test_ollama_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/test_openai_compatible_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/test_provider_registry.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/providers/test_together_provider.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/responses/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/responses/test_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/responses/test_stream_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/responses/test_structured_stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/responses/test_utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/test_error_wrapping.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/tools/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/tools/test_decorator.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/tools/test_tool_schema.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/llm/tools/test_toolkit.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_async_version_registers_new_function.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_async_version_uses_existing_function.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_call.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_call_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_call_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_call_wrapped_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_context_call.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_context_call_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_context_call_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_context_call_with_tags.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_context_call_wrapped_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_async_context_call_wrapped_returns_trace.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_call_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_call_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_call_sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_call_with_tags.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_call_wrapped_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_call_wrapped_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_call_wrapped_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_context_call.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_context_call_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_context_call_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_context_call_with_metadata.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_context_call_with_tags.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_context_call_wrapped_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_traced_context_call_wrapped_returns_trace.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_version_registers_new_function.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_version_uses_existing_function.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_call.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_call_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_call_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_call_wrapped_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_call_wrapped_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_context_call.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_context_call_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_context_call_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_context_call_wrapped_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_async_context_call_wrapped_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_call_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_call_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_call_sync.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_call_with_tags.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_call_wrapped_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_call_wrapped_stream.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_context_call.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_context_call_call_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_context_call_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_context_call_wrapped_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/cassettes/test_versioned_context_call_wrapped_stream_method.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/closure_test_functions/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/closure_test_functions/fakepkg/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/closure_test_functions/main.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/closure_test_functions/other.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/exporters/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/exporters/conftest.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/exporters/test_exporters.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/exporters/test_processors.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/exporters/utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_async_context_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_async_context_stream_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_async_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_async_stream_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_context_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_context_stream_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_async_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_async_records_untracked_params_event.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_records_response_id.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_records_untracked_params_event.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_audio_content.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_base64_image.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_image.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_json_format.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_message_name.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_none_parameters.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_parameters.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_reasoning_model.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_stop_string.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_strict_tool.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_tool_outputs.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_tools.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_with_tracer_set_to_none.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_call_without_instrumentation.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_call_async_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_call_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_async_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_stream_async_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_resume_stream_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_stream_async_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_context_stream_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_async_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_stream_async_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_resume_stream_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_async_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_async_with_tracer_set_to_none.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_async_without_instrumentation.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_exports_genai_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_records_response_id.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_records_untracked_params_event.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_json_format.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_none_parameters.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_tools.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_with_tracer_set_to_none.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_model_stream_without_instrumentation.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_stream_response_resume_exports_mirascope_span.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/cassettes/test_tracer_context_with_model_call.yaml +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_common.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_cost_calculation.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_instrumentation.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_model_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_model_call_async.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_model_context_call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_model_context_call_async.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_model_context_stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_model_context_stream_async.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_model_resume.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_model_stream.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_model_stream_async.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_response.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/llm/test_serialize.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/providers/__init__.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/providers/test_anthropic.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/providers/test_google_genai.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/instrumentation/providers/test_openai.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_configuration.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_metadata_preservation.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_missing_dependencies.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_propagation.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_session.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_span.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_tracing.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/_internal/test_versioning.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/conftest.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/ops/utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/test_imports.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/tests/utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/typechecking/call.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/typechecking/context.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/typechecking/format.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/typechecking/streams.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/typechecking/tool.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/typechecking/utils.py +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/typings/mlx/__init__.pyi +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/typings/mlx/core.pyi +0 -0
- {mirascope-2.1.0 → mirascope-2.1.1}/typings/mlx/nn.pyi +0 -0
|
@@ -10,6 +10,7 @@ stub_module_if_missing("mirascope.llm.providers.anthropic", "anthropic")
|
|
|
10
10
|
stub_module_if_missing("mirascope.llm.providers.google", "google")
|
|
11
11
|
stub_module_if_missing("mirascope.llm.providers.mlx", "mlx")
|
|
12
12
|
stub_module_if_missing("mirascope.llm.providers.openai", "openai")
|
|
13
|
+
stub_module_if_missing("mirascope.llm.providers.openrouter", "openai")
|
|
13
14
|
stub_module_if_missing("mirascope.llm.providers.together", "openai")
|
|
14
15
|
stub_module_if_missing("mirascope.llm.providers.ollama", "openai")
|
|
15
16
|
|
|
@@ -30,6 +31,7 @@ from .openai import (
|
|
|
30
31
|
OpenAIProvider,
|
|
31
32
|
)
|
|
32
33
|
from .openai.completions import BaseOpenAICompletionsProvider
|
|
34
|
+
from .openrouter import OpenRouterProvider
|
|
33
35
|
from .provider_id import KNOWN_PROVIDER_IDS, ProviderId
|
|
34
36
|
from .provider_registry import (
|
|
35
37
|
get_provider_for_model,
|
|
@@ -53,6 +55,7 @@ __all__ = [
|
|
|
53
55
|
"OllamaProvider",
|
|
54
56
|
"OpenAIModelId",
|
|
55
57
|
"OpenAIProvider",
|
|
58
|
+
"OpenRouterProvider",
|
|
56
59
|
"Provider",
|
|
57
60
|
"ProviderId",
|
|
58
61
|
"TogetherProvider",
|
{mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/completions/_utils/__init__.py
RENAMED
|
@@ -5,11 +5,14 @@ from .decode import (
|
|
|
5
5
|
model_name,
|
|
6
6
|
)
|
|
7
7
|
from .encode import encode_request
|
|
8
|
+
from .feature_info import CompletionsModelFeatureInfo, feature_info_for_openai_model
|
|
8
9
|
|
|
9
10
|
__all__ = [
|
|
11
|
+
"CompletionsModelFeatureInfo",
|
|
10
12
|
"decode_async_stream",
|
|
11
13
|
"decode_response",
|
|
12
14
|
"decode_stream",
|
|
13
15
|
"encode_request",
|
|
16
|
+
"feature_info_for_openai_model",
|
|
14
17
|
"model_name",
|
|
15
18
|
]
|
{mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/completions/_utils/encode.py
RENAMED
|
@@ -22,12 +22,7 @@ from .....tools import (
|
|
|
22
22
|
)
|
|
23
23
|
from ....base import _utils as _base_utils
|
|
24
24
|
from ...model_id import OpenAIModelId, model_name
|
|
25
|
-
from
|
|
26
|
-
MODELS_WITHOUT_AUDIO_SUPPORT,
|
|
27
|
-
MODELS_WITHOUT_JSON_OBJECT_SUPPORT,
|
|
28
|
-
MODELS_WITHOUT_JSON_SCHEMA_SUPPORT,
|
|
29
|
-
NON_REASONING_MODELS,
|
|
30
|
-
)
|
|
25
|
+
from .feature_info import CompletionsModelFeatureInfo
|
|
31
26
|
|
|
32
27
|
if TYPE_CHECKING:
|
|
33
28
|
from .....models import Params
|
|
@@ -58,6 +53,8 @@ class ChatCompletionCreateKwargs(TypedDict, total=False):
|
|
|
58
53
|
def _encode_user_message(
|
|
59
54
|
message: UserMessage,
|
|
60
55
|
model_id: OpenAIModelId,
|
|
56
|
+
feature_info: CompletionsModelFeatureInfo,
|
|
57
|
+
provider_id: str,
|
|
61
58
|
) -> list[openai_types.ChatCompletionMessageParam]:
|
|
62
59
|
"""Convert Mirascope `UserMessage` to a list of OpenAI `ChatCompletionMessageParam`.
|
|
63
60
|
|
|
@@ -106,11 +103,10 @@ def _encode_user_message(
|
|
|
106
103
|
)
|
|
107
104
|
current_content.append(content)
|
|
108
105
|
elif part.type == "audio":
|
|
109
|
-
|
|
110
|
-
if base_model_name in MODELS_WITHOUT_AUDIO_SUPPORT:
|
|
106
|
+
if feature_info.audio_support is False:
|
|
111
107
|
raise FeatureNotSupportedError(
|
|
112
108
|
feature="Audio inputs",
|
|
113
|
-
provider_id=
|
|
109
|
+
provider_id=provider_id,
|
|
114
110
|
message=f"Model '{model_id}' does not support audio inputs.",
|
|
115
111
|
)
|
|
116
112
|
|
|
@@ -208,18 +204,13 @@ def _encode_assistant_message(
|
|
|
208
204
|
|
|
209
205
|
|
|
210
206
|
def _encode_message(
|
|
211
|
-
message: Message,
|
|
207
|
+
message: Message,
|
|
208
|
+
model_id: OpenAIModelId,
|
|
209
|
+
encode_thoughts_as_text: bool,
|
|
210
|
+
feature_info: CompletionsModelFeatureInfo,
|
|
211
|
+
provider_id: str,
|
|
212
212
|
) -> list[openai_types.ChatCompletionMessageParam]:
|
|
213
|
-
"""Convert a Mirascope `Message` to OpenAI `ChatCompletionMessageParam` format.
|
|
214
|
-
|
|
215
|
-
Args:
|
|
216
|
-
message: A Mirascope message (system, user, or assistant)
|
|
217
|
-
model_id: The model ID being used
|
|
218
|
-
encode_thoughts: Whether to encode thoughts as text
|
|
219
|
-
|
|
220
|
-
Returns:
|
|
221
|
-
A list of OpenAI `ChatCompletionMessageParam` (may be multiple for tool outputs)
|
|
222
|
-
"""
|
|
213
|
+
"""Convert a Mirascope `Message` to OpenAI `ChatCompletionMessageParam` format."""
|
|
223
214
|
if message.role == "system":
|
|
224
215
|
return [
|
|
225
216
|
openai_types.ChatCompletionSystemMessageParam(
|
|
@@ -227,7 +218,7 @@ def _encode_message(
|
|
|
227
218
|
)
|
|
228
219
|
]
|
|
229
220
|
elif message.role == "user":
|
|
230
|
-
return _encode_user_message(message, model_id)
|
|
221
|
+
return _encode_user_message(message, model_id, feature_info, provider_id)
|
|
231
222
|
elif message.role == "assistant":
|
|
232
223
|
return [_encode_assistant_message(message, model_id, encode_thoughts_as_text)]
|
|
233
224
|
else:
|
|
@@ -302,6 +293,8 @@ def encode_request(
|
|
|
302
293
|
tools: BaseToolkit[AnyToolSchema],
|
|
303
294
|
format: FormatSpec[FormattableT] | None,
|
|
304
295
|
params: Params,
|
|
296
|
+
feature_info: CompletionsModelFeatureInfo,
|
|
297
|
+
provider_id: str,
|
|
305
298
|
) -> tuple[Sequence[Message], Format[FormattableT] | None, ChatCompletionCreateKwargs]:
|
|
306
299
|
"""Prepares a request for the `OpenAI.chat.completions.create` method."""
|
|
307
300
|
if model_id.endswith(":responses"):
|
|
@@ -313,7 +306,11 @@ def encode_request(
|
|
|
313
306
|
)
|
|
314
307
|
base_model_name = model_name(model_id, None)
|
|
315
308
|
|
|
316
|
-
is_reasoning_model =
|
|
309
|
+
is_reasoning_model = feature_info.is_reasoning_model is True
|
|
310
|
+
strict_supported = feature_info.strict_support is True
|
|
311
|
+
strict_allowed = feature_info.strict_support is not False
|
|
312
|
+
supports_json_object = feature_info.json_object_support is True
|
|
313
|
+
|
|
317
314
|
kwargs: ChatCompletionCreateKwargs = ChatCompletionCreateKwargs(
|
|
318
315
|
{"model": base_model_name}
|
|
319
316
|
)
|
|
@@ -321,7 +318,7 @@ def encode_request(
|
|
|
321
318
|
|
|
322
319
|
with _base_utils.ensure_all_params_accessed(
|
|
323
320
|
params=params,
|
|
324
|
-
provider_id=
|
|
321
|
+
provider_id=provider_id,
|
|
325
322
|
unsupported_params=[
|
|
326
323
|
"top_k",
|
|
327
324
|
*(["temperature", "top_p", "stop_sequences"] if is_reasoning_model else []),
|
|
@@ -348,15 +345,14 @@ def encode_request(
|
|
|
348
345
|
|
|
349
346
|
openai_tools = [_convert_tool_to_tool_param(tool) for tool in tools.tools]
|
|
350
347
|
|
|
351
|
-
|
|
352
|
-
default_mode = "strict" if model_supports_strict else "tool"
|
|
348
|
+
default_mode = "strict" if strict_supported else "tool"
|
|
353
349
|
format = resolve_format(format, default_mode=default_mode)
|
|
354
350
|
if format is not None:
|
|
355
351
|
if format.mode == "strict":
|
|
356
|
-
if not
|
|
352
|
+
if not strict_allowed:
|
|
357
353
|
raise FeatureNotSupportedError(
|
|
358
354
|
feature="formatting_mode:strict",
|
|
359
|
-
provider_id=
|
|
355
|
+
provider_id=provider_id,
|
|
360
356
|
model_id=model_id,
|
|
361
357
|
)
|
|
362
358
|
kwargs["response_format"] = _create_strict_response_format(format)
|
|
@@ -371,10 +367,7 @@ def encode_request(
|
|
|
371
367
|
kwargs["parallel_tool_calls"] = False
|
|
372
368
|
format_tool_schema = format.create_tool_schema()
|
|
373
369
|
openai_tools.append(_convert_tool_to_tool_param(format_tool_schema))
|
|
374
|
-
elif
|
|
375
|
-
format.mode == "json"
|
|
376
|
-
and base_model_name not in MODELS_WITHOUT_JSON_OBJECT_SUPPORT
|
|
377
|
-
):
|
|
370
|
+
elif format.mode == "json" and supports_json_object:
|
|
378
371
|
kwargs["response_format"] = {"type": "json_object"}
|
|
379
372
|
|
|
380
373
|
if format.formatting_instructions:
|
|
@@ -388,7 +381,9 @@ def encode_request(
|
|
|
388
381
|
encoded_messages: list[openai_types.ChatCompletionMessageParam] = []
|
|
389
382
|
for message in messages:
|
|
390
383
|
encoded_messages.extend(
|
|
391
|
-
_encode_message(
|
|
384
|
+
_encode_message(
|
|
385
|
+
message, model_id, encode_thoughts_as_text, feature_info, provider_id
|
|
386
|
+
)
|
|
392
387
|
)
|
|
393
388
|
kwargs["messages"] = encoded_messages
|
|
394
389
|
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""Model feature information for OpenAI completions encoding."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from dataclasses import dataclass
|
|
6
|
+
|
|
7
|
+
from ...model_info import (
|
|
8
|
+
MODELS_WITHOUT_AUDIO_SUPPORT,
|
|
9
|
+
MODELS_WITHOUT_JSON_OBJECT_SUPPORT,
|
|
10
|
+
MODELS_WITHOUT_JSON_SCHEMA_SUPPORT,
|
|
11
|
+
NON_REASONING_MODELS,
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@dataclass(frozen=True)
|
|
16
|
+
class CompletionsModelFeatureInfo:
|
|
17
|
+
"""Model feature information for OpenAI completions encoding.
|
|
18
|
+
|
|
19
|
+
This dataclass encapsulates feature detection for OpenAI-compatible models,
|
|
20
|
+
allowing providers to pass pre-computed feature information rather than
|
|
21
|
+
relying on model name matching in encode_request.
|
|
22
|
+
|
|
23
|
+
None values mean "unknown":
|
|
24
|
+
- audio_support: None → allow audio (permissive)
|
|
25
|
+
- strict_support: None → default to tool mode, but allow explicit strict
|
|
26
|
+
- json_object_support: None → disable (use prompt instructions instead)
|
|
27
|
+
- is_reasoning_model: None → treat as False (allow temperature)
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
audio_support: bool | None = None
|
|
31
|
+
"""Whether the model supports audio inputs. None means skip check (allow)."""
|
|
32
|
+
|
|
33
|
+
strict_support: bool | None = None
|
|
34
|
+
"""Whether the model supports strict JSON schema. None allows explicit strict."""
|
|
35
|
+
|
|
36
|
+
json_object_support: bool | None = None
|
|
37
|
+
"""Whether the model supports JSON object response format. None disables."""
|
|
38
|
+
|
|
39
|
+
is_reasoning_model: bool | None = None
|
|
40
|
+
"""Whether the model is a reasoning model. None means False (allow temperature)."""
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def feature_info_for_openai_model(model_name: str) -> CompletionsModelFeatureInfo:
|
|
44
|
+
"""Get feature info for a base OpenAI model name."""
|
|
45
|
+
return CompletionsModelFeatureInfo(
|
|
46
|
+
audio_support=model_name not in MODELS_WITHOUT_AUDIO_SUPPORT,
|
|
47
|
+
strict_support=model_name not in MODELS_WITHOUT_JSON_SCHEMA_SUPPORT,
|
|
48
|
+
json_object_support=model_name not in MODELS_WITHOUT_JSON_OBJECT_SUPPORT,
|
|
49
|
+
is_reasoning_model=model_name not in NON_REASONING_MODELS,
|
|
50
|
+
)
|
{mirascope-2.1.0 → mirascope-2.1.1}/mirascope/llm/providers/openai/completions/base_provider.py
RENAMED
|
@@ -27,6 +27,7 @@ from ...base import BaseProvider
|
|
|
27
27
|
from .. import _utils as _shared_utils
|
|
28
28
|
from ..model_id import model_name as openai_model_name
|
|
29
29
|
from . import _utils
|
|
30
|
+
from ._utils import CompletionsModelFeatureInfo
|
|
30
31
|
|
|
31
32
|
if TYPE_CHECKING:
|
|
32
33
|
from ....models import Params
|
|
@@ -83,6 +84,10 @@ class BaseOpenAICompletionsProvider(BaseProvider[OpenAI]):
|
|
|
83
84
|
"""Extract the model name to send to the API."""
|
|
84
85
|
return openai_model_name(model_id, None)
|
|
85
86
|
|
|
87
|
+
def _model_feature_info(self, model_id: str) -> CompletionsModelFeatureInfo:
|
|
88
|
+
"""Get feature info for the model. Override for provider-specific features."""
|
|
89
|
+
return CompletionsModelFeatureInfo()
|
|
90
|
+
|
|
86
91
|
def _provider_model_name(self, model_id: str) -> str:
|
|
87
92
|
"""Get the model name for tracking in Response."""
|
|
88
93
|
return self._model_name(model_id)
|
|
@@ -114,6 +119,8 @@ class BaseOpenAICompletionsProvider(BaseProvider[OpenAI]):
|
|
|
114
119
|
tools=toolkit,
|
|
115
120
|
format=format,
|
|
116
121
|
params=params,
|
|
122
|
+
feature_info=self._model_feature_info(model_id),
|
|
123
|
+
provider_id=self.id,
|
|
117
124
|
)
|
|
118
125
|
kwargs["model"] = self._model_name(model_id)
|
|
119
126
|
openai_response = self.client.chat.completions.create(**kwargs)
|
|
@@ -168,6 +175,8 @@ class BaseOpenAICompletionsProvider(BaseProvider[OpenAI]):
|
|
|
168
175
|
tools=toolkit,
|
|
169
176
|
format=format,
|
|
170
177
|
params=params,
|
|
178
|
+
feature_info=self._model_feature_info(model_id),
|
|
179
|
+
provider_id=self.id,
|
|
171
180
|
)
|
|
172
181
|
kwargs["model"] = self._model_name(model_id)
|
|
173
182
|
openai_response = self.client.chat.completions.create(**kwargs)
|
|
@@ -220,6 +229,8 @@ class BaseOpenAICompletionsProvider(BaseProvider[OpenAI]):
|
|
|
220
229
|
messages=messages,
|
|
221
230
|
tools=toolkit,
|
|
222
231
|
format=format,
|
|
232
|
+
feature_info=self._model_feature_info(model_id),
|
|
233
|
+
provider_id=self.id,
|
|
223
234
|
)
|
|
224
235
|
kwargs["model"] = self._model_name(model_id)
|
|
225
236
|
openai_response = await self.async_client.chat.completions.create(**kwargs)
|
|
@@ -274,6 +285,8 @@ class BaseOpenAICompletionsProvider(BaseProvider[OpenAI]):
|
|
|
274
285
|
messages=messages,
|
|
275
286
|
tools=toolkit,
|
|
276
287
|
format=format,
|
|
288
|
+
feature_info=self._model_feature_info(model_id),
|
|
289
|
+
provider_id=self.id,
|
|
277
290
|
)
|
|
278
291
|
kwargs["model"] = self._model_name(model_id)
|
|
279
292
|
openai_response = await self.async_client.chat.completions.create(**kwargs)
|
|
@@ -326,6 +339,8 @@ class BaseOpenAICompletionsProvider(BaseProvider[OpenAI]):
|
|
|
326
339
|
tools=toolkit,
|
|
327
340
|
format=format,
|
|
328
341
|
params=params,
|
|
342
|
+
feature_info=self._model_feature_info(model_id),
|
|
343
|
+
provider_id=self.id,
|
|
329
344
|
)
|
|
330
345
|
kwargs["model"] = self._model_name(model_id)
|
|
331
346
|
openai_stream = self.client.chat.completions.create(
|
|
@@ -376,6 +391,8 @@ class BaseOpenAICompletionsProvider(BaseProvider[OpenAI]):
|
|
|
376
391
|
tools=toolkit,
|
|
377
392
|
format=format,
|
|
378
393
|
params=params,
|
|
394
|
+
feature_info=self._model_feature_info(model_id),
|
|
395
|
+
provider_id=self.id,
|
|
379
396
|
)
|
|
380
397
|
kwargs["model"] = self._model_name(model_id)
|
|
381
398
|
|
|
@@ -425,6 +442,8 @@ class BaseOpenAICompletionsProvider(BaseProvider[OpenAI]):
|
|
|
425
442
|
tools=toolkit,
|
|
426
443
|
format=format,
|
|
427
444
|
params=params,
|
|
445
|
+
feature_info=self._model_feature_info(model_id),
|
|
446
|
+
provider_id=self.id,
|
|
428
447
|
)
|
|
429
448
|
kwargs["model"] = self._model_name(model_id)
|
|
430
449
|
openai_stream = await self.async_client.chat.completions.create(
|
|
@@ -478,6 +497,8 @@ class BaseOpenAICompletionsProvider(BaseProvider[OpenAI]):
|
|
|
478
497
|
tools=toolkit,
|
|
479
498
|
format=format,
|
|
480
499
|
params=params,
|
|
500
|
+
feature_info=self._model_feature_info(model_id),
|
|
501
|
+
provider_id=self.id,
|
|
481
502
|
)
|
|
482
503
|
kwargs["model"] = self._model_name(model_id)
|
|
483
504
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""OpenAI Completions API provider implementation."""
|
|
2
2
|
|
|
3
|
-
from ..model_id import model_name
|
|
3
|
+
from ..model_id import model_name as openai_model_name
|
|
4
|
+
from ._utils import CompletionsModelFeatureInfo, feature_info_for_openai_model
|
|
4
5
|
from .base_provider import BaseOpenAICompletionsProvider
|
|
5
6
|
|
|
6
7
|
|
|
@@ -14,9 +15,14 @@ class OpenAICompletionsProvider(BaseOpenAICompletionsProvider):
|
|
|
14
15
|
api_key_required = False
|
|
15
16
|
provider_name = "OpenAI"
|
|
16
17
|
|
|
18
|
+
def _model_feature_info(self, model_id: str) -> CompletionsModelFeatureInfo:
|
|
19
|
+
"""Get feature info for actual OpenAI models."""
|
|
20
|
+
base_name = openai_model_name(model_id, None)
|
|
21
|
+
return feature_info_for_openai_model(base_name)
|
|
22
|
+
|
|
17
23
|
def _provider_model_name(self, model_id: str) -> str:
|
|
18
24
|
"""Get the model name for tracking in Response.
|
|
19
25
|
|
|
20
26
|
Returns the model name with :completions suffix for tracking which API was used.
|
|
21
27
|
"""
|
|
22
|
-
return
|
|
28
|
+
return openai_model_name(model_id, "completions")
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""OpenRouter provider implementation."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import ClassVar
|
|
6
|
+
|
|
7
|
+
from ..openai.completions._utils import (
|
|
8
|
+
CompletionsModelFeatureInfo,
|
|
9
|
+
feature_info_for_openai_model,
|
|
10
|
+
)
|
|
11
|
+
from ..openai.completions.base_provider import BaseOpenAICompletionsProvider
|
|
12
|
+
from ..openai.model_id import model_name as openai_model_name
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class OpenRouterProvider(BaseOpenAICompletionsProvider):
|
|
16
|
+
"""Provider for OpenRouter's OpenAI-compatible API.
|
|
17
|
+
|
|
18
|
+
Inherits from BaseOpenAICompletionsProvider with OpenRouter-specific configuration:
|
|
19
|
+
- Uses OpenRouter's API endpoint
|
|
20
|
+
- Requires OPENROUTER_API_KEY
|
|
21
|
+
|
|
22
|
+
Usage:
|
|
23
|
+
Option 1: Use "openrouter/" prefix for explicit OpenRouter models:
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
from mirascope import llm
|
|
27
|
+
|
|
28
|
+
llm.register_provider("openrouter", scope="openrouter/")
|
|
29
|
+
|
|
30
|
+
@llm.call("openrouter/openai/gpt-4o")
|
|
31
|
+
def my_prompt():
|
|
32
|
+
return [llm.messages.user("Hello!")]
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Option 2: Route existing model IDs through OpenRouter:
|
|
36
|
+
|
|
37
|
+
```python
|
|
38
|
+
from mirascope import llm
|
|
39
|
+
|
|
40
|
+
# Register for openai and anthropic models via OpenRouter
|
|
41
|
+
llm.register_provider("openrouter", scope=["openai/", "anthropic/"])
|
|
42
|
+
|
|
43
|
+
# Now openai/ models go through OpenRouter
|
|
44
|
+
@llm.call("openai/gpt-4")
|
|
45
|
+
def my_prompt():
|
|
46
|
+
return [llm.messages.user("Hello!")]
|
|
47
|
+
```
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
id: ClassVar[str] = "openrouter"
|
|
51
|
+
default_scope: ClassVar[str | list[str]] = []
|
|
52
|
+
default_base_url: ClassVar[str | None] = "https://openrouter.ai/api/v1"
|
|
53
|
+
api_key_env_var: ClassVar[str] = "OPENROUTER_API_KEY"
|
|
54
|
+
api_key_required: ClassVar[bool] = True
|
|
55
|
+
provider_name: ClassVar[str | None] = "OpenRouter"
|
|
56
|
+
|
|
57
|
+
def _model_name(self, model_id: str) -> str:
|
|
58
|
+
"""Strip 'openrouter/' prefix from model ID for OpenRouter API."""
|
|
59
|
+
return model_id.removeprefix("openrouter/")
|
|
60
|
+
|
|
61
|
+
def _model_feature_info(self, model_id: str) -> CompletionsModelFeatureInfo:
|
|
62
|
+
"""Return OpenAI feature info for openai/* models, empty info otherwise."""
|
|
63
|
+
base_model_id = model_id.removeprefix("openrouter/")
|
|
64
|
+
if base_model_id.startswith("openai/"):
|
|
65
|
+
openai_name = openai_model_name(base_model_id, None)
|
|
66
|
+
return feature_info_for_openai_model(openai_name)
|
|
67
|
+
return CompletionsModelFeatureInfo()
|
|
@@ -10,6 +10,7 @@ KnownProviderId: TypeAlias = Literal[
|
|
|
10
10
|
"mlx", # Local inference powered by `mlx-lm`, via MLXProvider
|
|
11
11
|
"ollama", # Ollama provider via OllamaProvider
|
|
12
12
|
"openai", # OpenAI provider via OpenAIProvider (prefers Responses routing when available)
|
|
13
|
+
"openrouter", # OpenRouter provider via OpenRouterProvider
|
|
13
14
|
"together", # Together AI provider via TogetherProvider
|
|
14
15
|
]
|
|
15
16
|
KNOWN_PROVIDER_IDS = get_args(KnownProviderId)
|
|
@@ -20,5 +21,6 @@ OpenAICompletionsCompatibleProviderId: TypeAlias = Literal[
|
|
|
20
21
|
"ollama", # Ollama (OpenAI-compatible)
|
|
21
22
|
"openai", # OpenAI via OpenAIProvider (routes to completions)
|
|
22
23
|
"openai:completions", # OpenAI Completions API directly
|
|
24
|
+
"openrouter", # OpenRouter (OpenAI-compatible)
|
|
23
25
|
"together", # Together AI (OpenAI-compatible)
|
|
24
26
|
]
|
|
@@ -16,6 +16,7 @@ from .ollama import OllamaProvider
|
|
|
16
16
|
from .openai import OpenAIProvider
|
|
17
17
|
from .openai.completions.provider import OpenAICompletionsProvider
|
|
18
18
|
from .openai.responses.provider import OpenAIResponsesProvider
|
|
19
|
+
from .openrouter import OpenRouterProvider
|
|
19
20
|
from .provider_id import ProviderId
|
|
20
21
|
from .together import TogetherProvider
|
|
21
22
|
|
|
@@ -71,6 +72,9 @@ DEFAULT_AUTO_REGISTER_SCOPES: dict[str, Sequence[ProviderDefault]] = {
|
|
|
71
72
|
"mlx-community/": [
|
|
72
73
|
ProviderDefault("mlx", None), # No API key required
|
|
73
74
|
],
|
|
75
|
+
"openrouter/": [
|
|
76
|
+
ProviderDefault("openrouter", "OPENROUTER_API_KEY"),
|
|
77
|
+
],
|
|
74
78
|
}
|
|
75
79
|
|
|
76
80
|
|
|
@@ -122,6 +126,8 @@ def provider_singleton(
|
|
|
122
126
|
return OpenAICompletionsProvider(api_key=api_key, base_url=base_url)
|
|
123
127
|
case "openai:responses":
|
|
124
128
|
return OpenAIResponsesProvider(api_key=api_key, base_url=base_url)
|
|
129
|
+
case "openrouter":
|
|
130
|
+
return OpenRouterProvider(api_key=api_key, base_url=base_url)
|
|
125
131
|
case "together":
|
|
126
132
|
return TogetherProvider(api_key=api_key, base_url=base_url)
|
|
127
133
|
case _: # pragma: no cover
|
|
@@ -24,6 +24,7 @@ def load_api_keys() -> None:
|
|
|
24
24
|
os.environ.setdefault("GOOGLE_API_KEY", "dummy-google-key")
|
|
25
25
|
os.environ.setdefault("MIRASCOPE_API_KEY", "dummy-mirascope-key")
|
|
26
26
|
os.environ.setdefault("OPENAI_API_KEY", "dummy-openai-key")
|
|
27
|
+
os.environ.setdefault("OPENROUTER_API_KEY", "dummy-openrouter-key")
|
|
27
28
|
os.environ.setdefault("TOGETHER_API_KEY", "dummy-together-key")
|
|
28
29
|
|
|
29
30
|
|
|
@@ -28,6 +28,8 @@ SENSITIVE_HEADERS = [
|
|
|
28
28
|
"x-goog-api-key", # Google/Gemini API keys
|
|
29
29
|
"anthropic-organization-id", # Anthropic org identifiers
|
|
30
30
|
"cookie", # Session cookies
|
|
31
|
+
"http-referer", # OpenRouter optional header
|
|
32
|
+
"x-title", # OpenRouter optional header
|
|
31
33
|
]
|
|
32
34
|
|
|
33
35
|
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
interactions:
|
|
2
|
+
- request:
|
|
3
|
+
body: '{"messages":[{"role":"user","content":"What is 2+2?"}],"model":"openai/o1"}'
|
|
4
|
+
headers:
|
|
5
|
+
Accept:
|
|
6
|
+
- application/json
|
|
7
|
+
Accept-Encoding:
|
|
8
|
+
- gzip, deflate
|
|
9
|
+
Authorization:
|
|
10
|
+
- <filtered>
|
|
11
|
+
Connection:
|
|
12
|
+
- keep-alive
|
|
13
|
+
Content-Length:
|
|
14
|
+
- '75'
|
|
15
|
+
Content-Type:
|
|
16
|
+
- application/json
|
|
17
|
+
Host:
|
|
18
|
+
- openrouter.ai
|
|
19
|
+
User-Agent:
|
|
20
|
+
- OpenAI/Python 2.15.0
|
|
21
|
+
X-Stainless-Arch:
|
|
22
|
+
- arm64
|
|
23
|
+
X-Stainless-Async:
|
|
24
|
+
- 'false'
|
|
25
|
+
X-Stainless-Lang:
|
|
26
|
+
- python
|
|
27
|
+
X-Stainless-OS:
|
|
28
|
+
- MacOS
|
|
29
|
+
X-Stainless-Package-Version:
|
|
30
|
+
- 2.15.0
|
|
31
|
+
X-Stainless-Runtime:
|
|
32
|
+
- CPython
|
|
33
|
+
X-Stainless-Runtime-Version:
|
|
34
|
+
- 3.13.3
|
|
35
|
+
x-stainless-read-timeout:
|
|
36
|
+
- '600'
|
|
37
|
+
x-stainless-retry-count:
|
|
38
|
+
- '0'
|
|
39
|
+
method: POST
|
|
40
|
+
uri: https://openrouter.ai/api/v1/chat/completions
|
|
41
|
+
response:
|
|
42
|
+
body:
|
|
43
|
+
string: !!binary |
|
|
44
|
+
H4sIAAAAAAAAAwAAAP//4lKAAS4AAAAA///iQjABAAAA//9skEFPKjEUhf8KOVsrDgyKNHGhO11o
|
|
45
|
+
XLwY34uZlM5lKHZ6m96iz5D574agMBq2t1/Od043cDU0Ggqno+nF7GI6Kcvp6erv/O7+fnX7eFm6
|
|
46
|
+
pz/F++MNPUMhJn5zNSVoPEQK17dQaLkmDw2OFIw74xEUeL4im6FhlyYPLbfRU3YcoGATmUw19MGm
|
|
47
|
+
YJfsLAn0vw08NzHxXKDD2nuFhQtOllUiIxygIZkjFILJ7o2q369fLqqh4EJN/6ELhZZETEPQGyT2
|
|
48
|
+
BA0j4iSbkLeVOGQK27rjwclgPLgaTIZQSLRYi/HfPXYKF5rdoeteFNbfqTFxG3OV+ZWCQI9KhcPq
|
|
49
|
+
/XmmkDkbvz+Mx1tOMnQxLIpiWp4rOKnmH/wKvTBeSP2MrmrKxnnZOq2xS6r3WUW3y+oj6yg5kWkr
|
|
50
|
+
FxaUKFiqfuuOIF/GHjmaHScPG6WPn0+6I/v7xfafeaiv4FrTUG9P130CAAD//wMAjnw1wrMCAAA=
|
|
51
|
+
headers:
|
|
52
|
+
Access-Control-Allow-Origin:
|
|
53
|
+
- '*'
|
|
54
|
+
CF-RAY:
|
|
55
|
+
- 9c574382aa05d798-NRT
|
|
56
|
+
Connection:
|
|
57
|
+
- keep-alive
|
|
58
|
+
Content-Encoding:
|
|
59
|
+
- gzip
|
|
60
|
+
Content-Type:
|
|
61
|
+
- application/json
|
|
62
|
+
Date:
|
|
63
|
+
- Thu, 29 Jan 2026 08:12:18 GMT
|
|
64
|
+
Permissions-Policy:
|
|
65
|
+
- payment=(self "https://checkout.stripe.com" "https://connect-js.stripe.com"
|
|
66
|
+
"https://js.stripe.com" "https://*.js.stripe.com" "https://hooks.stripe.com")
|
|
67
|
+
Referrer-Policy:
|
|
68
|
+
- no-referrer, strict-origin-when-cross-origin
|
|
69
|
+
Server:
|
|
70
|
+
- cloudflare
|
|
71
|
+
Transfer-Encoding:
|
|
72
|
+
- chunked
|
|
73
|
+
Vary:
|
|
74
|
+
- Accept-Encoding
|
|
75
|
+
X-Content-Type-Options:
|
|
76
|
+
- nosniff
|
|
77
|
+
status:
|
|
78
|
+
code: 200
|
|
79
|
+
message: OK
|
|
80
|
+
version: 1
|