mirascope 1.16.4__tar.gz → 1.16.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mirascope-1.16.4 → mirascope-1.16.6}/PKG-INFO +3 -3
- {mirascope-1.16.4 → mirascope-1.16.6}/README.md +2 -2
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/how-to-make-a-chatbot.md +21 -21
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_utils/_calculate_cost.py +24 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/call_response.py +7 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/call_response.py +7 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/call_response.py +8 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/call_response.py +7 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/call_response.py +7 -0
- mirascope-1.16.6/mirascope/core/gemini/_utils/_calculate_cost.py +64 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/call_response.py +7 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/call_response.py +7 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/call_response.py +2 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/call_response.py +7 -0
- mirascope-1.16.6/mirascope/core/openai/_utils/_calculate_cost.py +205 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/call_response.py +7 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/call_response.py +7 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/otel/__init__.py +6 -1
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/llm/call_response.py +2 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/pyproject.toml +1 -1
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/_utils/test_setup_call.py +1 -1
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/_utils/test_calculate_cost.py +1 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/uv.lock +1 -1
- mirascope-1.16.4/mirascope/core/gemini/_utils/_calculate_cost.py +0 -8
- mirascope-1.16.4/mirascope/core/openai/_utils/_calculate_cost.py +0 -115
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/CODEOWNERS +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/ISSUE_TEMPLATE/question.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/workflows/docs.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/workflows/label_issues.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/workflows/lint.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/workflows/release.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.github/workflows/tests.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.gitignore +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.pre-commit-config.yaml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.vscode/extensions.json +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.vscode/launch.json +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/.vscode/settings.json +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/LICENSE +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/CNAME +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/CONTRIBUTING.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/HELP.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/MIGRATE.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/WELCOME.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/WHY.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/anthropic/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/anthropic/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/anthropic/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/anthropic/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/anthropic/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/anthropic/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/anthropic/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/azure/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/azure/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/azure/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/azure/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/azure/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/azure/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/azure/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/call_factory.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/merge_decorators.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/message_param.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/metadata.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/prompt.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/structured_stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/base/toolkit.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/bedrock/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/bedrock/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/bedrock/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/bedrock/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/bedrock/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/bedrock/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/bedrock/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/cohere/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/cohere/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/cohere/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/cohere/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/cohere/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/cohere/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/cohere/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/gemini/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/gemini/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/gemini/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/gemini/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/gemini/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/gemini/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/gemini/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/groq/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/groq/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/groq/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/groq/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/groq/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/groq/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/groq/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/litellm/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/mistral/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/mistral/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/mistral/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/mistral/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/mistral/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/mistral/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/mistral/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/openai/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/openai/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/openai/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/openai/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/openai/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/openai/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/openai/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/vertex/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/vertex/call_params.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/vertex/call_response.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/vertex/call_response_chunk.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/vertex/dynamic_config.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/vertex/stream.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/core/vertex/tool.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/integrations/langfuse.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/integrations/logfire.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/integrations/middleware.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/integrations/otel.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/integrations/tenacity.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/llm/call.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/tools/system/docker_operation.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/tools/system/file_system.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/tools/web/duckduckgo.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/tools/web/httpx.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/tools/web/parse_url_content.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/api/tools/web/requests.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/engineers-should-handle-prompting-llms/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/how-to-build-a-knowledge-graph/algorithmic-bias-kg.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/how-to-build-a-knowledge-graph/example-kg-diagram.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/how-to-make-a-chatbot/autocomplete.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/how-to-make-a-chatbot/lilypad-screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/how-to-make-a-chatbot/type-hints.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/agentgpt_homepage_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/autogpt_homepage_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/flowise_homepage_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/griptape_homepage_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/guidance_github_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/haystack_homepage_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/humanloop_homepage_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/instructor_docs_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/llama_index_homepage_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/metagpt_homepage_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/mirascope_homepage_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/mirascope_response_autocomplete_suggestions.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-alternatives/priompt_github_screenshot.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-prompt-template/langchain_invoke_dict_no_error.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-prompt-template/langchain_invoke_dict_runtime_error.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-prompt-template/mirascope_prompt_fn_autocomplete.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-prompt-template/mirascope_prompt_fn_incorrect_type_error.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-prompt-template/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-rag/rag-pipeline-diagram.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-runnables/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-structured-output/mirascope_prompt_autocomplete.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-structured-output/mirascope_prompt_missing_arg.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-structured-output/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-sucks/embedding_model_diagram.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-sucks/langchain_invoke_no_type_hints.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-sucks/mirascope_stream_type_hint.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langchain-sucks/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langfuse-integration/mirascope_langfuse_response_model_trace.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langfuse-integration/mirascope_langfuse_trace.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/langfuse-integration/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llamaindex-vs-langchain/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-applications/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-as-judge/autocomplete.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/ask-marvin-homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/autogen-homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/control-flow-homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/dify-homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/haystack-homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/langchain-homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/llama-index-homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/mirascope-homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/msft-semantic-kernel-github.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/openai-stream-type-hint.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/orkes-homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-frameworks/prompt-template-autocomplete.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-orchestration/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-pipeline/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-pipeline/stages_of_rag_pipeline.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-prompt/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/autogen_github_page.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/botkit_github_page.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/crewai_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/helicone_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/langchain_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/milvus_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/ollama_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/open_llm_github_page.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/pinecone_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/rasa_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/llm-tools/vllm_github_page.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/mirascope-v1-release/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/openai-function-calling/function_calling_diagram.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/openai-function-calling/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-chaining/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-best-practices/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-best-practices/storylines_incorrect_input_arg.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-examples/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-tools/agenta_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-tools/guidance_github_page.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-tools/haystack_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-tools/langchain_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-tools/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-tools/priompt_github_page.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-tools/prompt_hub_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-tools/promptmetheus_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-engineering-vs-fine-tuning/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-flow-vs-langchain/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-flow-vs-langchain/prompt-flow-visual.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-versioning/agenta_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-versioning/langsmith_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-versioning/og-image.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-versioning/pezzo_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/prompt-versioning/prompt_hub_homepage.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/rag-application/rag-app-diagram.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/rag-llm-example/rag-diagram.jpg +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/synthetic-data-generation/autocomplete.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/synthetic-data-generation/data-chart.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/blog/synthetic-data-generation/linting.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/brandmark.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/brandmark.svg +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/calls-type-hint.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/cloth-background.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/favicon.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/generating-synthetic-data-chart.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/langfuse-call.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/learn_flow.svg +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/logfire-response-model.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/assets/stream-attributes.png +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/.authors.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/index.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/advanced-prompt-engineering.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/engineers-should-handle-prompting-llms.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/how-to-build-a-knowledge-graph.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/langchain-alternatives.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/langchain-prompt-template.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/langchain-rag.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/langchain-runnables.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/langchain-structured-output.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/langchain-sucks.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/langfuse-integration.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/llamaindex-vs-langchain.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/llm-applications.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/llm-as-judge.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/llm-evaluation.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/llm-frameworks.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/llm-orchestration.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/llm-pipeline.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/llm-prompt.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/llm-tools.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/mirascope-v1-release.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/openai-function-calling.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/prompt-chaining.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/prompt-engineering-best-practices.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/prompt-engineering-examples.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/prompt-engineering-tools.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/prompt-engineering-vs-fine-tuning.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/prompt-flow-vs-langchain.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/prompt-versioning.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/rag-application.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/rag-llm-example.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/blog/posts/synthetic-data-generation.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/extra/tweaks.css +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/generate_llms_txt.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/hooks.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/index.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/integrations/hyperdx.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/integrations/langfuse.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/integrations/logfire.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/integrations/otel.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/agents.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/async.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/calls.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/chaining.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/evals.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/extensions/custom_provider.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/extensions/middleware.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/index.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/json_mode.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/local_models.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/mcp/client.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/mcp/server.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/output_parsers.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/prompts.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/provider_specific_features/anthropic.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/provider_specific_features/openai.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/response_models.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/retries.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/streams.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/learn/tools.md +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/macros.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/overrides/home.html +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/overrides/main.html +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/plugins/griffe_doclinks.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/robots.txt +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/ruff.toml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/agents/blog_writing_agent.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/agents/documentation_agent.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/agents/local_chat_with_codebase.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/agents/localized_agent.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/agents/qwant_search_agent_with_sources.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/agents/sql_agent.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/agents/web_search_agent.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/evals/evaluating_documentation_agent.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/evals/evaluating_sql_agent.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/evals/evaluating_web_search_agent.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/getting_started/dynamic_configuration_and_chaining.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/getting_started/quickstart.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/getting_started/structured_outputs.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/getting_started/tools_and_agents.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/langgraph_vs_mirascope/quickstart.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/code_generation_and_execution.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/document_segmentation.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/extract_from_pdf.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/extraction_using_vision.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/generating_captions.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/generating_synthetic_data.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/knowledge_graph.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/llm_validation_with_retries.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/named_entity_recognition.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/o1_style_thinking.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/pii_scrubbing.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/query_plan.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/removing_semantic_duplicates.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/search_with_sources.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/speech_transcription.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/support_ticket_routing.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/text_classification.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/text_summarization.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/more_advanced/text_translation.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/chain_of_verification.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/decomposed_prompting.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/demonstration_ensembling.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/diverse.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/least_to_most.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/mixture_of_reasoning.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/prompt_paraphrasing.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/reverse_chain_of_thought.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/self_consistency.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/self_refine.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/sim_to_m.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/skeleton_of_thought.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/step_back.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/chaining_based/system_to_attention.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/chain_of_thought.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/common_phrases.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/contrastive_chain_of_thought.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/emotion_prompting.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/plan_and_solve.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/rephrase_and_respond.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/rereading.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/role_prompting.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/self_ask.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/tabular_chain_of_thought.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/docs/tutorials/prompt_engineering/text_based/thread_of_thought.ipynb +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/fastapi/endpoint.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/hyperdx/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/langfuse/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/logfire/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/integrations/otel/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/human_in_the_loop/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/provider_agnostic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/provider_agnostic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/provider_agnostic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/provider_agnostic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/state_management/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/streaming/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/agents/tools/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/basic_usage/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/decorator/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/custom_client/dynamic_configuration/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/parallel/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/streams/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/async/tools/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/anthropic/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/azure/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/bedrock/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/cohere/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/gemini/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/groq/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/litellm/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/mistral/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/openai/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/provider_agnostic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/provider_agnostic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/provider_agnostic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/provider_agnostic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/vertex/official_sdk_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/basic_usage/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/call_params/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/decorator/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_client/dynamic_configuration/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/anthropic_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/azure_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/bedrock_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/cohere_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/gemini_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/groq_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/litellm_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/mistral_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/openai_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/custom_messages/vertex_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/dynamic_configuration/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/error_handling/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/multi_modal_outputs/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/calls/provider_agnostic/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/advanced_techniques/conditional_chaining.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/advanced_techniques/iterative_chaining.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/advanced_techniques/parallel_chaining.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/computed_fields/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/function_chaining/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/chaining/nested_chains/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/hardcoded/exact_match.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/hardcoded/recall_and_precision.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/hardcoded/regex.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/llm/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/panel/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/panel/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/panel/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/evals/panel/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/basic_usage/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/json_mode/error_handling/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/local_models/ollama.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/local_models/vllm.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/mcp/books.txt +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/mcp/client.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/mcp/server.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/mcp/server_decorators.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/middleware/with_saving.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/additional_examples/json_mode.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/additional_examples/regex.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/additional_examples/xml.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/output_parsers/basic_usage/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/chat_history/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/chat_history/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/chat_history/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/chat_history/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/computed_fields/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/computed_fields/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/computed_fields/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/computed_fields/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/format_specifiers/float_format/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/format_specifiers/float_format/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/format_specifiers/float_format/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/format_specifiers/float_format/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/format_specifiers/lists.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/format_specifiers/parts.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/format_specifiers/texts.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_line/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_line/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_line/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_line/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/audio/pydub/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/audio/pydub/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/audio/pydub/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/audio/pydub/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/audio/wave/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/audio/wave/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/audio/wave/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/audio/wave/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/document/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/document/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/document/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/document/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/image/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/image/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/image/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multi_modal/image/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multiple_messages/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multiple_messages/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multiple_messages/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/multiple_messages/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/object_attribute_access/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/object_attribute_access/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/object_attribute_access/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/object_attribute_access/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/single_user_message/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/single_user_message/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/single_user_message/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/prompts/single_user_message/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/anthropic/caching/messages/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/anthropic/caching/messages/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/anthropic/caching/messages/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/anthropic/caching/messages/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/anthropic/caching/tools.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/openai/realtime/audio_input_output_manually.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output_manually.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output_tools.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/openai/realtime/text_input_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/openai/realtime/text_input_output_dynamic_tools.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/openai/realtime/text_input_output_tools.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/openai/structured_outputs/response_model.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/provider_specific_features/openai/structured_outputs/tools.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/anthropic/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/azure/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/bedrock/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/cohere/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/gemini/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/groq/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/litellm/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/mistral/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/openai/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/vertex/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/basic_usage/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/builtin_types/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/few_shot_examples/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/from_call_args/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/json_mode/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/streaming/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/response_models/validation/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/calls/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/error_reinsertion/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/streams/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/retries/tools/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/basic_usage/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/error_handling/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/gemini/wave/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/gemini/wave/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/gemini/wave/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/gemini/wave/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/pydub/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/pydub/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/pydub/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/pydub/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/wave/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/wave/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/wave/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/groq/wave/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/pydub/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/pydub/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/pydub/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/pydub/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/wave/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/wave/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/wave/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/litellm/wave/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/pydub/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/pydub/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/pydub/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/pydub/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/wave/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/wave/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/wave/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/mistral/wave/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/pydub/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/pydub/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/pydub/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/pydub/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/wave/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/wave/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/wave/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/streams/multi_modal_outputs/vertex/wave/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/anthropic/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/anthropic/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/anthropic/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/anthropic/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/azure/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/azure/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/azure/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/azure/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/azure/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/azure/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/azure/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/bedrock/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/bedrock/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/bedrock/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/bedrock/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/cohere/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/cohere/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/cohere/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/cohere/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/cohere/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/cohere/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/gemini/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/gemini/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/gemini/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/gemini/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/gemini/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/gemini/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/gemini/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/gemini/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/gemini/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/groq/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/groq/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/groq/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/groq/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/groq/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/groq/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/groq/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/litellm/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/litellm/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/litellm/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/litellm/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/litellm/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/litellm/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/mistral/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/mistral/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/mistral/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/mistral/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/mistral/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/mistral/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/openai/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/openai/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/openai/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/openai/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/openai/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/openai/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/openai/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/vertex/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/vertex/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/vertex/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/vertex/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/vertex/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/vertex/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/vertex/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/vertex/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/basic_usage/vertex/official_sdk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/anthropic/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/anthropic/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/anthropic/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/azure/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/azure/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/azure/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/azure/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/azure/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/azure/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/bedrock/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/bedrock/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/bedrock/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/cohere/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/cohere/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/cohere/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/cohere/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/cohere/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/gemini/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/gemini/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/gemini/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/gemini/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/gemini/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/gemini/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/gemini/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/gemini/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/groq/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/groq/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/groq/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/groq/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/groq/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/groq/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/litellm/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/litellm/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/litellm/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/litellm/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/litellm/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/mistral/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/mistral/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/mistral/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/mistral/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/mistral/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/openai/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/openai/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/openai/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/openai/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/openai/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/openai/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/vertex/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/vertex/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/vertex/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/vertex/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/vertex/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/vertex/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/vertex/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/few_shot_examples/vertex/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/anthropic/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/anthropic/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/anthropic/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/azure/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/azure/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/azure/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/azure/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/azure/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/azure/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/bedrock/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/bedrock/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/bedrock/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/cohere/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/cohere/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/cohere/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/cohere/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/cohere/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/gemini/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/gemini/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/gemini/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/gemini/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/gemini/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/gemini/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/gemini/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/gemini/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/groq/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/groq/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/groq/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/groq/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/groq/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/groq/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/litellm/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/litellm/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/litellm/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/litellm/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/litellm/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/mistral/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/mistral/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/mistral/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/mistral/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/mistral/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/openai/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/openai/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/openai/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/openai/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/openai/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/openai/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/vertex/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/vertex/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/vertex/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/vertex/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/vertex/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/vertex/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/vertex/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/parallel/vertex/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/anthropic/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/anthropic/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/anthropic/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/azure/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/azure/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/azure/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/azure/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/azure/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/azure/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/bedrock/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/bedrock/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/bedrock/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/cohere/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/cohere/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/cohere/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/cohere/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/cohere/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/gemini/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/gemini/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/gemini/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/gemini/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/gemini/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/gemini/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/gemini/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/gemini/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/groq/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/groq/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/groq/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/groq/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/groq/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/groq/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/litellm/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/litellm/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/litellm/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/litellm/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/litellm/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/mistral/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/mistral/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/mistral/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/mistral/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/mistral/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/openai/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/openai/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/openai/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/openai/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/openai/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/openai/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/vertex/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/vertex/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/vertex/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/vertex/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/vertex/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/vertex/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/vertex/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/partial_tool_streams/vertex/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_toolkit/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/anthropic/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/anthropic/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/anthropic/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/anthropic/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/anthropic/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/anthropic/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/anthropic/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/anthropic/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/azure/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/azure/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/azure/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/azure/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/azure/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/azure/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/azure/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/azure/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/bedrock/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/bedrock/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/bedrock/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/bedrock/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/bedrock/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/bedrock/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/bedrock/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/bedrock/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/cohere/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/cohere/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/cohere/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/cohere/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/cohere/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/cohere/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/cohere/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/cohere/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/gemini/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/gemini/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/gemini/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/gemini/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/gemini/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/gemini/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/gemini/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/gemini/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/groq/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/groq/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/groq/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/groq/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/groq/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/groq/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/groq/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/groq/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/litellm/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/litellm/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/litellm/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/litellm/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/litellm/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/litellm/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/litellm/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/litellm/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/mistral/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/mistral/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/mistral/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/mistral/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/mistral/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/mistral/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/mistral/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/mistral/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/openai/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/openai/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/openai/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/openai/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/openai/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/openai/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/openai/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/openai/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/vertex/basic_usage/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/vertex/basic_usage/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/vertex/basic_usage/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/vertex/basic_usage/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/vertex/custom_config/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/vertex/custom_config/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/vertex/custom_config/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/pre_made_tools/vertex/custom_config/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/anthropic/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/anthropic/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/anthropic/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/azure/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/azure/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/azure/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/azure/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/azure/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/azure/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/bedrock/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/bedrock/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/bedrock/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/cohere/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/cohere/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/cohere/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/cohere/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/cohere/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/gemini/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/gemini/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/gemini/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/gemini/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/gemini/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/gemini/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/gemini/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/gemini/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/groq/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/groq/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/groq/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/groq/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/groq/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/groq/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/litellm/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/litellm/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/litellm/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/litellm/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/litellm/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/mistral/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/mistral/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/mistral/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/mistral/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/mistral/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/openai/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/openai/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/openai/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/openai/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/openai/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/openai/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/vertex/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/vertex/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/vertex/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/vertex/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/vertex/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/vertex/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/vertex/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/streams/vertex/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/anthropic/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/anthropic/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/anthropic/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/azure/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/azure/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/azure/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/azure/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/azure/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/azure/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/bedrock/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/bedrock/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/bedrock/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/cohere/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/cohere/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/cohere/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/cohere/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/cohere/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/gemini/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/gemini/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/gemini/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/gemini/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/gemini/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/gemini/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/gemini/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/gemini/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/groq/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/groq/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/groq/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/groq/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/groq/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/groq/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/litellm/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/litellm/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/litellm/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/litellm/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/litellm/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/mistral/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/mistral/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/mistral/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/mistral/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/mistral/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/openai/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/openai/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/openai/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/openai/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/openai/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/openai/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/vertex/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/vertex/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/vertex/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/vertex/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/vertex/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/vertex/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/vertex/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/tool_message_params/vertex/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/anthropic/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/anthropic/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/anthropic/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/anthropic/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/azure/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/azure/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/azure/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/azure/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/bedrock/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/bedrock/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/bedrock/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/bedrock/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/cohere/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/cohere/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/cohere/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/cohere/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/gemini/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/gemini/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/gemini/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/gemini/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/groq/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/groq/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/groq/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/groq/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/litellm/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/litellm/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/litellm/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/litellm/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/mistral/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/mistral/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/mistral/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/mistral/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/openai/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/openai/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/openai/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/openai/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/vertex/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/vertex/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/vertex/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/toolkit/vertex/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/anthropic/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/anthropic/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/anthropic/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/anthropic/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/anthropic/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/anthropic/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/anthropic/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/anthropic/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/azure/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/azure/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/azure/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/azure/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/azure/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/azure/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/azure/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/azure/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/bedrock/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/bedrock/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/bedrock/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/bedrock/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/bedrock/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/bedrock/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/bedrock/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/bedrock/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/cohere/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/cohere/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/cohere/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/cohere/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/cohere/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/cohere/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/cohere/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/cohere/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/gemini/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/gemini/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/gemini/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/gemini/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/gemini/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/gemini/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/gemini/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/gemini/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/groq/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/groq/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/groq/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/groq/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/groq/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/groq/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/groq/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/groq/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/litellm/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/litellm/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/litellm/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/litellm/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/litellm/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/litellm/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/litellm/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/litellm/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/mistral/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/mistral/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/mistral/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/mistral/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/mistral/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/mistral/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/mistral/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/mistral/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/openai/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/openai/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/openai/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/openai/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/openai/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/openai/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/openai/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/openai/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/vertex/base_tool/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/vertex/base_tool/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/vertex/base_tool/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/vertex/base_tool/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/vertex/function/base_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/vertex/function/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/vertex/function/shorthand.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/learn/tools/validation/vertex/function/string_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/examples/ruff.toml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/openai/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/openai/realtime/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/openai/realtime/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/openai/realtime/_utils/_audio.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/openai/realtime/_utils/_protocols.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/openai/realtime/realtime.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/openai/realtime/recording.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/openai/realtime/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/chunkers/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/chunkers/base_chunker.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/chunkers/text_chunker.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/document.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/embedders.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/embedding_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/embedding_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/query_results.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/vectorstore_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/base/vectorstores.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/chroma/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/chroma/types.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/chroma/vectorstores.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/cohere/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/cohere/embedders.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/cohere/embedding_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/cohere/embedding_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/cohere/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/openai/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/openai/embedders.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/openai/embedding_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/openai/embedding_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/openai/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/pinecone/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/pinecone/types.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/pinecone/vectorstores.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/weaviate/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/weaviate/types.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/beta/rag/weaviate/vectorstores.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_utils/_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_utils/_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_utils/_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_utils/_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/anthropic/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/_get_credential.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/azure/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_call_factory.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_create.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_extract.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_extract_with_tools.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_partial.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_base_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_base_type.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_convert_base_model_to_base_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_convert_base_type_to_base_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_convert_function_to_base_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_convert_messages_to_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_convert_provider_finish_reason_to_finish_reason.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_default_tool_docstring.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_extract_tool_return.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_fn_is_async.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_format_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_audio_type.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_common_usage.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_document_type.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_dynamic_configuration.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_fields_from_call_args.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_fn_args.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_image_type.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_metadata.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_possible_user_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_prompt_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_template_values.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_template_variables.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_get_unsupported_tool_config_keys.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_is_prompt_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_json_mode_content.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_messages_decorator.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_parse_content_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_parse_prompt_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_pil_image_to_bytes.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_protocols.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/_utils/_setup_extract_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/from_call_args.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/merge_decorators.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/metadata.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/prompt.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/response_model_config_dict.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/stream_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/structured_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/toolkit.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/base/types.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_types.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_utils/_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_utils/_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_utils/_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_utils/_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_utils/_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/bedrock/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_types.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_utils/_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_utils/_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_utils/_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_utils/_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_utils/_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/cohere/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_utils/_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_utils/_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_utils/_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_utils/_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/gemini/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_utils/_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_utils/_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_utils/_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_utils/_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_utils/_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/groq/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/litellm/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_utils/_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_utils/_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_utils/_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_utils/_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_utils/_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/mistral/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/_call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/_utils/_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/_utils/_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/_utils/_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/_utils/_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/openai/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_call_kwargs.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_utils/_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_utils/_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_utils/_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_utils/_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_utils/_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/_utils/_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/dynamic_config.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/core/vertex/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/_middleware_factory.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/langfuse/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/langfuse/_utils.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/langfuse/_with_langfuse.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/logfire/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/logfire/_utils.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/logfire/_with_logfire.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/otel/_utils.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/otel/_with_hyperdx.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/otel/_with_otel.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/integrations/tenacity.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/llm/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/llm/_protocols.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/llm/_response_metaclass.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/llm/call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/llm/llm_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/llm/llm_override.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/llm/stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/llm/tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/mcp/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/mcp/client.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/mcp/server.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/mcp/tools.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/py.typed +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/retries/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/retries/tenacity.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/base.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/system/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/system/_docker_operation.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/system/_file_system.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/web/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/web/_duckduckgo.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/web/_httpx.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/web/_parse_url_content.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/tools/web/_requests.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/anthropic.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/base/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/base/calls.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/base/extractors.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/base/ops_utils.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/base/prompts.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/base/types.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/base/utils.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mirascope/v0/openai.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/mkdocs.yml +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/conftest.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/_utils/test_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/_utils/test_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/anthropic/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/_utils/test_get_credential.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/_utils/test_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/_utils/test_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/azure/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_base_type.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_convert_base_model_to_base_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_convert_base_type_to_base_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_convert_function_to_base_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_convert_messages_to_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_extract_tool_return.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_format_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_audio_type.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_create_fn_or_async_create_fn.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_document_type.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_dynamic_configuration.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_fields_from_call_args.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_fn_args.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_image_type.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_metadata.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_possible_user_message_param.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_prompt_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_template_values.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_template_variables.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_get_unsupported_tool_config_keys.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_json_mode_content.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_message_decorator.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_parse_content_template.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_parse_prompt_messages.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_pil_image_to_bytes.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/_utils/test_setup_extract_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/conftest.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_call_factory.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_create.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_extract.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_extract_with_tools.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_merge_decorators.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_partial.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_prompt.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_structured_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/base/test_toolkit.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/_utils/test_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/_utils/test_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/conftest.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/bedrock/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/_utils/test_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/_utils/test_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/cohere/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/_utils/test_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/_utils/test_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/gemini/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/_utils/test_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/_utils/test_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/groq/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/litellm/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/litellm/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/litellm/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/litellm/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/litellm/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/litellm/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/_utils/test_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/_utils/test_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/mistral/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/_utils/test_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/_utils/test_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/openai/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/_utils/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/_utils/test_get_json_output.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/_utils/test_handle_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/_utils/test_setup_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/core/vertex/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/langfuse/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/langfuse/test_utils.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/langfuse/test_with_langfuse.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/logfire/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/logfire/test_utils.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/logfire/test_with_logfire.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/otel/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/otel/test_utils.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/otel/test_with_hyperdx.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/otel/test_with_otel.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/integrations/test_middleware_factory.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/llm/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/llm/test_call.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/llm/test_call_response.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/llm/test_call_response_chunk.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/llm/test_override.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/llm/test_response_metaclass.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/llm/test_stream.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/llm/test_tool.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/mcp/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/mcp/test_mcp_client.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/mcp/test_mcp_server.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/retries/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/retries/test_tenacity.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/tools/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/tools/test_base.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/tools/test_docker_operation_toolkit.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/tools/test_filesystem_toolkit.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/tools/web/__init__.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/tools/web/test_duckduckgo.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/tools/web/test_httpx.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/tools/web/test_parse_url_content.py +0 -0
- {mirascope-1.16.4 → mirascope-1.16.6}/tests/tools/web/test_requests.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mirascope
|
|
3
|
-
Version: 1.16.
|
|
3
|
+
Version: 1.16.6
|
|
4
4
|
Summary: LLM abstractions that aren't obstructions
|
|
5
5
|
Project-URL: Homepage, https://mirascope.com
|
|
6
6
|
Project-URL: Documentation, https://mirascope.com/WELCOME
|
|
@@ -129,14 +129,14 @@ export OPENAI_API_KEY=XXXXX
|
|
|
129
129
|
Make your first call to an LLM to extract the title and author of a book from unstructured text:
|
|
130
130
|
|
|
131
131
|
```python
|
|
132
|
-
from mirascope
|
|
132
|
+
from mirascope import llm
|
|
133
133
|
from pydantic import BaseModel
|
|
134
134
|
|
|
135
135
|
class Book(BaseModel):
|
|
136
136
|
title: str
|
|
137
137
|
author: str
|
|
138
138
|
|
|
139
|
-
@
|
|
139
|
+
@llm.call(provider="openai", model="gpt-4o-mini", response_model=Book)
|
|
140
140
|
def extract_book(text: str) -> str:
|
|
141
141
|
return f"Extract {text}"
|
|
142
142
|
|
|
@@ -32,14 +32,14 @@ export OPENAI_API_KEY=XXXXX
|
|
|
32
32
|
Make your first call to an LLM to extract the title and author of a book from unstructured text:
|
|
33
33
|
|
|
34
34
|
```python
|
|
35
|
-
from mirascope
|
|
35
|
+
from mirascope import llm
|
|
36
36
|
from pydantic import BaseModel
|
|
37
37
|
|
|
38
38
|
class Book(BaseModel):
|
|
39
39
|
title: str
|
|
40
40
|
author: str
|
|
41
41
|
|
|
42
|
-
@
|
|
42
|
+
@llm.call(provider="openai", model="gpt-4o-mini", response_model=Book)
|
|
43
43
|
def extract_book(text: str) -> str:
|
|
44
44
|
return f"Extract {text}"
|
|
45
45
|
|
|
@@ -69,7 +69,7 @@ The ability to change models or even model providers (e.g., OpenAI to Anthropic)
|
|
|
69
69
|
|
|
70
70
|
For instance, Mirascope’s LLM call decorator provides a consistent interface across different AI models and providers so you can easily change from, say, OpenAI:
|
|
71
71
|
|
|
72
|
-
```
|
|
72
|
+
```python
|
|
73
73
|
from mirascope.core import openai
|
|
74
74
|
|
|
75
75
|
@openai.call("gpt-4o-mini")
|
|
@@ -82,7 +82,7 @@ original_response = response.response
|
|
|
82
82
|
|
|
83
83
|
To, Anthropic:
|
|
84
84
|
|
|
85
|
-
```
|
|
85
|
+
```python
|
|
86
86
|
from mirascope.core import anthropic
|
|
87
87
|
|
|
88
88
|
@anthropic.call("claude-3-5-sonnet-20240620")
|
|
@@ -107,7 +107,7 @@ A case in point is [LangChain’s runnable](https://mirascope.com/blog/langchain
|
|
|
107
107
|
|
|
108
108
|
For example, a corporate chatbot might pass a user query such as “What’s the status of my expense reimbursement request?” through a [pipeline](https://mirascope.com/blog/llm-pipeline/) defined using `runnable`, where `RunnablePassthrough` forwards the query unchanged, a prompt formats the query for processing, and `runnable.bind(stop="END")` configures the language model to stop generating a response once it encounters the keyword "END:”
|
|
109
109
|
|
|
110
|
-
```
|
|
110
|
+
```python
|
|
111
111
|
runnable = (
|
|
112
112
|
{"equation_statement": RunnablePassthrough()}
|
|
113
113
|
| prompt
|
|
@@ -126,7 +126,7 @@ The time and effort needed for handling any errors will only go up the more comp
|
|
|
126
126
|
|
|
127
127
|
Why not just use standard Python for such a chain?
|
|
128
128
|
|
|
129
|
-
```
|
|
129
|
+
```python
|
|
130
130
|
from mirascope.core import openai
|
|
131
131
|
|
|
132
132
|
|
|
@@ -159,7 +159,7 @@ Prompt versioning typically allows you to:
|
|
|
159
159
|
|
|
160
160
|
[Lilypad](https://lilypad.so/), which works with Mirascope, is an open source prompt engineering framework that automatically versions your code every time you make an LLM call. You can use Lilypad by adding the `lilypad.generation()` decorator to any Python function:
|
|
161
161
|
|
|
162
|
-
```
|
|
162
|
+
```python
|
|
163
163
|
import lilypad
|
|
164
164
|
from openai import OpenAI
|
|
165
165
|
|
|
@@ -217,7 +217,7 @@ The following example demonstrates a custom tool (`GetArtGalleryInfo`) that exte
|
|
|
217
217
|
|
|
218
218
|
If the user asks “Tell me about the Louvre,” the LLM uses the tool to formulate a precise response by invoking the `GetArtGalleryInfo` tool, which retrieves specific information about the Louvre and then integrates this information into the final response provided to the user:
|
|
219
219
|
|
|
220
|
-
```
|
|
220
|
+
```python
|
|
221
221
|
from mirascope.core import BaseTool, openai, prompt_template
|
|
222
222
|
from pydantic import Field
|
|
223
223
|
|
|
@@ -267,7 +267,7 @@ For example, below we define a class `BookRecommendationInput` that extends `Bas
|
|
|
267
267
|
|
|
268
268
|
The moment this class is instantiated, values for the fields `genre` and `audience` will be constrained by the type annotations and validation rules defined in class, such as required types (`str`), minimum length (`min_length=3` for `genre`), and the presence of mandatory fields.
|
|
269
269
|
|
|
270
|
-
```
|
|
270
|
+
```python
|
|
271
271
|
from typing import Annotated
|
|
272
272
|
|
|
273
273
|
from mirascope.core import openai
|
|
@@ -300,7 +300,7 @@ Mirascope also validates LLM outputs via its **response model**, which uses Pyda
|
|
|
300
300
|
|
|
301
301
|
As shown below, you define a `response_model` as a Pydantic `BaseModel` and add it to an LLM call to validate the output.
|
|
302
302
|
|
|
303
|
-
```
|
|
303
|
+
```python
|
|
304
304
|
from pydantic import BaseModel
|
|
305
305
|
from mirascope.core import openai, prompt_template
|
|
306
306
|
|
|
@@ -330,7 +330,7 @@ It also shows auto-suggestions:
|
|
|
330
330
|
|
|
331
331
|
Mirascope is also compatible with the latest version of Pydantic (V2).
|
|
332
332
|
|
|
333
|
-
## How to Make an LLM-Driven Chatbot that Searches the Web
|
|
333
|
+
## [How to Make an LLM-Driven Chatbot that Searches the Web](#how-to-make-an-llm-driven-chatbot-that-searches-the-web)
|
|
334
334
|
|
|
335
335
|
We split this tutorial into two parts:
|
|
336
336
|
|
|
@@ -343,11 +343,11 @@ These steps are based on [Mirascope’s tutorial](https://mirascope.com/tutorial
|
|
|
343
343
|
|
|
344
344
|
Before running these tutorials, we install Mirascope and its dependencies:
|
|
345
345
|
|
|
346
|
-
```
|
|
347
|
-
|
|
346
|
+
```bash
|
|
347
|
+
pip install "mirascope[openai]"
|
|
348
348
|
```
|
|
349
349
|
|
|
350
|
-
```
|
|
350
|
+
```python
|
|
351
351
|
import os
|
|
352
352
|
|
|
353
353
|
os.environ["OPENAI_API_KEY"] = "YOUR_API_KEY"
|
|
@@ -369,7 +369,7 @@ First we build the basic version of the AI assistant with several features:
|
|
|
369
369
|
|
|
370
370
|
As you’ll see later on, we use `BaseMessageParam` as our message object and Pydantic’s `BaseModel` to make sure the message history is always a list of specific kinds of messages for a better customer experience and in order to avoid errors.
|
|
371
371
|
|
|
372
|
-
```
|
|
372
|
+
```python
|
|
373
373
|
from mirascope.core import BaseMessageParam, openai, prompt_template
|
|
374
374
|
from pydantic import BaseModel
|
|
375
375
|
```
|
|
@@ -378,7 +378,7 @@ from pydantic import BaseModel
|
|
|
378
378
|
|
|
379
379
|
We create `Chatbot` to define how the chatbot works and to preserve state (i.e., to remember past interactions):
|
|
380
380
|
|
|
381
|
-
```
|
|
381
|
+
```python
|
|
382
382
|
# Define a Chatbot class that uses Pydantic for validation
|
|
383
383
|
class Chatbot(BaseModel):
|
|
384
384
|
# Attribute to store the conversation history, containing both user and helper messages
|
|
@@ -430,7 +430,7 @@ In the code above, we define:
|
|
|
430
430
|
|
|
431
431
|
Finally, we instantiate the chatbot class and start the interactive loop using the `run` method:
|
|
432
432
|
|
|
433
|
-
```
|
|
433
|
+
```python
|
|
434
434
|
Chatbot().run()
|
|
435
435
|
```
|
|
436
436
|
|
|
@@ -458,13 +458,13 @@ Below, we add search capabilities to our basic chatbot, using the [DuckDuckGo Py
|
|
|
458
458
|
|
|
459
459
|
Below, we install packages for DuckDuckGo, Beautiful Soup (library for parsing HTML and XML documents), and the `requests` library, which simplifies HTTP requests, such as fetching webpage content:
|
|
460
460
|
|
|
461
|
-
```
|
|
462
|
-
|
|
461
|
+
```bash
|
|
462
|
+
pip install duckduckgo-search beautifulsoup4 requests
|
|
463
463
|
```
|
|
464
464
|
|
|
465
465
|
Next, we import the modules we need, such as `DDGS` (a DuckDuckGo search API wrapper for retrieving search results programmatically) and Pydantic modules for validating inputs for the `WebSearch` class we’ll define:
|
|
466
466
|
|
|
467
|
-
```
|
|
467
|
+
```python
|
|
468
468
|
import requests
|
|
469
469
|
from bs4 import BeautifulSoup
|
|
470
470
|
from duckduckgo_search import DDGS
|
|
@@ -475,7 +475,7 @@ from pydantic import BaseModel, Field
|
|
|
475
475
|
|
|
476
476
|
This class represents a web search tool that leverages the DuckDuckGo Search API for retrieving and parsing information from webpages related to a specific query.
|
|
477
477
|
|
|
478
|
-
```
|
|
478
|
+
```python
|
|
479
479
|
|
|
480
480
|
class WebSearch(openai.OpenAITool):
|
|
481
481
|
"""Search the web for the given text and parse the paragraphs of the results."""
|
|
@@ -529,7 +529,7 @@ Below we add our web search tool to the parameter list of `@openai.call`, enabli
|
|
|
529
529
|
|
|
530
530
|
We also add the `_step()` method, which we explain in more detail below:
|
|
531
531
|
|
|
532
|
-
```
|
|
532
|
+
```python
|
|
533
533
|
class Chatbot(BaseModel):
|
|
534
534
|
history: list[BaseMessageParam | openai.OpenAIMessageParam] = []
|
|
535
535
|
|
|
@@ -591,7 +591,7 @@ The response itself may consist of text chunks (the helper’s reply) or tool in
|
|
|
591
591
|
|
|
592
592
|
After updating the code for the new web search tool, we start the interactive loop using the `run` method:
|
|
593
593
|
|
|
594
|
-
```
|
|
594
|
+
```python
|
|
595
595
|
Chatbot().run()
|
|
596
596
|
```
|
|
597
597
|
|
|
@@ -34,6 +34,10 @@ def calculate_cost(
|
|
|
34
34
|
"prompt": 0.000_002_5,
|
|
35
35
|
"completion": 0.000_012_5,
|
|
36
36
|
},
|
|
37
|
+
"claude-3-5-haiku-20241022": {
|
|
38
|
+
"prompt": 0.000_008,
|
|
39
|
+
"completion": 0.000_004,
|
|
40
|
+
},
|
|
37
41
|
"claude-3-sonnet-20240229": {
|
|
38
42
|
"prompt": 0.000_003,
|
|
39
43
|
"completion": 0.000_015,
|
|
@@ -42,6 +46,10 @@ def calculate_cost(
|
|
|
42
46
|
"prompt": 0.000_015,
|
|
43
47
|
"completion": 0.000_075,
|
|
44
48
|
},
|
|
49
|
+
"claude-3-5-sonnet-20241022": {
|
|
50
|
+
"prompt": 0.000_003,
|
|
51
|
+
"completion": 0.000_015,
|
|
52
|
+
},
|
|
45
53
|
"claude-3-5-sonnet-20240620": {
|
|
46
54
|
"prompt": 0.000_003,
|
|
47
55
|
"completion": 0.000_015,
|
|
@@ -51,6 +59,10 @@ def calculate_cost(
|
|
|
51
59
|
"prompt": 0.000_002_5,
|
|
52
60
|
"completion": 0.000_012_5,
|
|
53
61
|
},
|
|
62
|
+
"anthropic.claude-3-5-haiku-20241022-v1:0": {
|
|
63
|
+
"prompt": 0.000_008,
|
|
64
|
+
"completion": 0.000_004,
|
|
65
|
+
},
|
|
54
66
|
"anthropic.claude-3-sonnet-20240229-v1:0": {
|
|
55
67
|
"prompt": 0.000_003,
|
|
56
68
|
"completion": 0.000_015,
|
|
@@ -63,11 +75,19 @@ def calculate_cost(
|
|
|
63
75
|
"prompt": 0.000_003,
|
|
64
76
|
"completion": 0.000_015,
|
|
65
77
|
},
|
|
78
|
+
"anthropic.claude-3-5-sonnet-20241022-v1:0": {
|
|
79
|
+
"prompt": 0.000_003,
|
|
80
|
+
"completion": 0.000_015,
|
|
81
|
+
},
|
|
66
82
|
# Vertex AI models
|
|
67
83
|
"claude-3-haiku@20240307": {
|
|
68
84
|
"prompt": 0.000_002_5,
|
|
69
85
|
"completion": 0.000_012_5,
|
|
70
86
|
},
|
|
87
|
+
"claude-3-5-haiku@20241022": {
|
|
88
|
+
"prompt": 0.000_008,
|
|
89
|
+
"completion": 0.000_004,
|
|
90
|
+
},
|
|
71
91
|
"claude-3-sonnet@20240229": {
|
|
72
92
|
"prompt": 0.000_003,
|
|
73
93
|
"completion": 0.000_015,
|
|
@@ -80,6 +100,10 @@ def calculate_cost(
|
|
|
80
100
|
"prompt": 0.000_003,
|
|
81
101
|
"completion": 0.000_015,
|
|
82
102
|
},
|
|
103
|
+
"claude-3-5-sonnet@20241022": {
|
|
104
|
+
"prompt": 0.000_003,
|
|
105
|
+
"completion": 0.000_015,
|
|
106
|
+
},
|
|
83
107
|
}
|
|
84
108
|
|
|
85
109
|
if input_tokens is None or output_tokens is None:
|
|
@@ -64,22 +64,26 @@ class AnthropicCallResponse(
|
|
|
64
64
|
|
|
65
65
|
_provider = "anthropic"
|
|
66
66
|
|
|
67
|
+
@computed_field
|
|
67
68
|
@property
|
|
68
69
|
def content(self) -> str:
|
|
69
70
|
"""Returns the string text of the 0th text block."""
|
|
70
71
|
block = self.response.content[0]
|
|
71
72
|
return block.text if block.type == "text" else ""
|
|
72
73
|
|
|
74
|
+
@computed_field
|
|
73
75
|
@property
|
|
74
76
|
def finish_reasons(self) -> list[str]:
|
|
75
77
|
"""Returns the finish reasons of the response."""
|
|
76
78
|
return [str(self.response.stop_reason)]
|
|
77
79
|
|
|
80
|
+
@computed_field
|
|
78
81
|
@property
|
|
79
82
|
def model(self) -> str:
|
|
80
83
|
"""Returns the name of the response model."""
|
|
81
84
|
return self.response.model
|
|
82
85
|
|
|
86
|
+
@computed_field
|
|
83
87
|
@property
|
|
84
88
|
def id(self) -> str:
|
|
85
89
|
"""Returns the id of the response."""
|
|
@@ -90,16 +94,19 @@ class AnthropicCallResponse(
|
|
|
90
94
|
"""Returns the usage of the message."""
|
|
91
95
|
return self.response.usage
|
|
92
96
|
|
|
97
|
+
@computed_field
|
|
93
98
|
@property
|
|
94
99
|
def input_tokens(self) -> int:
|
|
95
100
|
"""Returns the number of input tokens."""
|
|
96
101
|
return self.usage.input_tokens
|
|
97
102
|
|
|
103
|
+
@computed_field
|
|
98
104
|
@property
|
|
99
105
|
def output_tokens(self) -> int:
|
|
100
106
|
"""Returns the number of output tokens."""
|
|
101
107
|
return self.usage.output_tokens
|
|
102
108
|
|
|
109
|
+
@computed_field
|
|
103
110
|
@property
|
|
104
111
|
def cost(self) -> float | None:
|
|
105
112
|
"""Returns the cost of the call."""
|
|
@@ -68,22 +68,26 @@ class AzureCallResponse(
|
|
|
68
68
|
|
|
69
69
|
_provider = "azure"
|
|
70
70
|
|
|
71
|
+
@computed_field
|
|
71
72
|
@property
|
|
72
73
|
def content(self) -> str:
|
|
73
74
|
"""Returns the content of the chat completion for the 0th choice."""
|
|
74
75
|
message = self.response.choices[0].message
|
|
75
76
|
return message.content if message.content is not None else ""
|
|
76
77
|
|
|
78
|
+
@computed_field
|
|
77
79
|
@property
|
|
78
80
|
def finish_reasons(self) -> list[str]:
|
|
79
81
|
"""Returns the finish reasons of the response."""
|
|
80
82
|
return [str(choice.finish_reason) for choice in self.response.choices]
|
|
81
83
|
|
|
84
|
+
@computed_field
|
|
82
85
|
@property
|
|
83
86
|
def model(self) -> str:
|
|
84
87
|
"""Returns the name of the response model."""
|
|
85
88
|
return self.response.model
|
|
86
89
|
|
|
90
|
+
@computed_field
|
|
87
91
|
@property
|
|
88
92
|
def id(self) -> str:
|
|
89
93
|
"""Returns the id of the response."""
|
|
@@ -94,16 +98,19 @@ class AzureCallResponse(
|
|
|
94
98
|
"""Returns the usage of the chat completion."""
|
|
95
99
|
return self.response.usage
|
|
96
100
|
|
|
101
|
+
@computed_field
|
|
97
102
|
@property
|
|
98
103
|
def input_tokens(self) -> int | None:
|
|
99
104
|
"""Returns the number of input tokens."""
|
|
100
105
|
return self.usage.prompt_tokens if self.usage else None
|
|
101
106
|
|
|
107
|
+
@computed_field
|
|
102
108
|
@property
|
|
103
109
|
def output_tokens(self) -> int | None:
|
|
104
110
|
"""Returns the number of output tokens."""
|
|
105
111
|
return self.usage.completion_tokens if self.usage else None
|
|
106
112
|
|
|
113
|
+
@computed_field
|
|
107
114
|
@property
|
|
108
115
|
def cost(self) -> float | None:
|
|
109
116
|
"""Returns the cost of the call."""
|
|
@@ -155,6 +155,7 @@ class BaseCallResponse(
|
|
|
155
155
|
"""Returns the string content of the response."""
|
|
156
156
|
return self.content
|
|
157
157
|
|
|
158
|
+
@computed_field
|
|
158
159
|
@property
|
|
159
160
|
@abstractmethod
|
|
160
161
|
def content(self) -> str:
|
|
@@ -168,6 +169,7 @@ class BaseCallResponse(
|
|
|
168
169
|
"""
|
|
169
170
|
...
|
|
170
171
|
|
|
172
|
+
@computed_field
|
|
171
173
|
@property
|
|
172
174
|
@abstractmethod
|
|
173
175
|
def finish_reasons(self) -> list[str] | None:
|
|
@@ -177,18 +179,21 @@ class BaseCallResponse(
|
|
|
177
179
|
"""
|
|
178
180
|
...
|
|
179
181
|
|
|
182
|
+
@computed_field
|
|
180
183
|
@property
|
|
181
184
|
@abstractmethod
|
|
182
185
|
def model(self) -> str | None:
|
|
183
186
|
"""Should return the name of the response model."""
|
|
184
187
|
...
|
|
185
188
|
|
|
189
|
+
@computed_field
|
|
186
190
|
@property
|
|
187
191
|
@abstractmethod
|
|
188
192
|
def id(self) -> str | None:
|
|
189
193
|
"""Should return the id of the response."""
|
|
190
194
|
...
|
|
191
195
|
|
|
196
|
+
@computed_field
|
|
192
197
|
@property
|
|
193
198
|
@abstractmethod
|
|
194
199
|
def usage(self) -> Any: # noqa: ANN401
|
|
@@ -198,6 +203,7 @@ class BaseCallResponse(
|
|
|
198
203
|
"""
|
|
199
204
|
...
|
|
200
205
|
|
|
206
|
+
@computed_field
|
|
201
207
|
@property
|
|
202
208
|
@abstractmethod
|
|
203
209
|
def input_tokens(self) -> int | float | None:
|
|
@@ -207,6 +213,7 @@ class BaseCallResponse(
|
|
|
207
213
|
"""
|
|
208
214
|
...
|
|
209
215
|
|
|
216
|
+
@computed_field
|
|
210
217
|
@property
|
|
211
218
|
@abstractmethod
|
|
212
219
|
def output_tokens(self) -> int | float | None:
|
|
@@ -216,6 +223,7 @@ class BaseCallResponse(
|
|
|
216
223
|
"""
|
|
217
224
|
...
|
|
218
225
|
|
|
226
|
+
@computed_field
|
|
219
227
|
@property
|
|
220
228
|
@abstractmethod
|
|
221
229
|
def cost(self) -> float | None:
|
|
@@ -90,6 +90,7 @@ class BedrockCallResponse(
|
|
|
90
90
|
return cast(SyncMessageTypeDef | AsyncMessageTypeDef, message)
|
|
91
91
|
return None
|
|
92
92
|
|
|
93
|
+
@computed_field
|
|
93
94
|
@property
|
|
94
95
|
def content(self) -> str:
|
|
95
96
|
"""Returns the content of the chat completion for the 0th choice."""
|
|
@@ -99,16 +100,19 @@ class BedrockCallResponse(
|
|
|
99
100
|
return content[0].get("text", "")
|
|
100
101
|
return ""
|
|
101
102
|
|
|
103
|
+
@computed_field
|
|
102
104
|
@property
|
|
103
105
|
def finish_reasons(self) -> list[str]:
|
|
104
106
|
"""Returns the finish reasons of the response."""
|
|
105
107
|
return [self.response["stopReason"]]
|
|
106
108
|
|
|
109
|
+
@computed_field
|
|
107
110
|
@property
|
|
108
111
|
def model(self) -> str:
|
|
109
112
|
"""Returns the name of the response model."""
|
|
110
113
|
return cast(BedrockCallKwargs, self.call_kwargs)["modelId"]
|
|
111
114
|
|
|
115
|
+
@computed_field
|
|
112
116
|
@property
|
|
113
117
|
def id(self) -> str:
|
|
114
118
|
"""Returns the id of the response."""
|
|
@@ -119,16 +123,19 @@ class BedrockCallResponse(
|
|
|
119
123
|
"""Returns the usage of the chat completion."""
|
|
120
124
|
return self.response["usage"]
|
|
121
125
|
|
|
126
|
+
@computed_field
|
|
122
127
|
@property
|
|
123
128
|
def input_tokens(self) -> int | None:
|
|
124
129
|
"""Returns the number of input tokens."""
|
|
125
130
|
return self.usage["inputTokens"] if self.usage else None
|
|
126
131
|
|
|
132
|
+
@computed_field
|
|
127
133
|
@property
|
|
128
134
|
def output_tokens(self) -> int | None:
|
|
129
135
|
"""Returns the number of output tokens."""
|
|
130
136
|
return self.usage["outputTokens"] if self.usage else None
|
|
131
137
|
|
|
138
|
+
@computed_field
|
|
132
139
|
@property
|
|
133
140
|
def cost(self) -> float | None:
|
|
134
141
|
"""Returns the cost of the call."""
|
|
@@ -63,16 +63,19 @@ class CohereCallResponse(
|
|
|
63
63
|
|
|
64
64
|
_provider = "cohere"
|
|
65
65
|
|
|
66
|
+
@computed_field
|
|
66
67
|
@property
|
|
67
68
|
def content(self) -> str:
|
|
68
69
|
"""Returns the content of the chat completion for the 0th choice."""
|
|
69
70
|
return self.response.text
|
|
70
71
|
|
|
72
|
+
@computed_field
|
|
71
73
|
@property
|
|
72
74
|
def finish_reasons(self) -> list[str] | None:
|
|
73
75
|
"""Returns the finish reasons of the response."""
|
|
74
76
|
return [str(self.response.finish_reason)]
|
|
75
77
|
|
|
78
|
+
@computed_field
|
|
76
79
|
@property
|
|
77
80
|
def model(self) -> str:
|
|
78
81
|
"""Returns the name of the response model.
|
|
@@ -81,6 +84,7 @@ class CohereCallResponse(
|
|
|
81
84
|
"""
|
|
82
85
|
return self._model
|
|
83
86
|
|
|
87
|
+
@computed_field
|
|
84
88
|
@property
|
|
85
89
|
def id(self) -> str | None:
|
|
86
90
|
"""Returns the id of the response."""
|
|
@@ -93,6 +97,7 @@ class CohereCallResponse(
|
|
|
93
97
|
return self.response.meta.billed_units
|
|
94
98
|
return None
|
|
95
99
|
|
|
100
|
+
@computed_field
|
|
96
101
|
@property
|
|
97
102
|
def input_tokens(self) -> float | None:
|
|
98
103
|
"""Returns the number of input tokens."""
|
|
@@ -100,6 +105,7 @@ class CohereCallResponse(
|
|
|
100
105
|
return self.usage.input_tokens
|
|
101
106
|
return None
|
|
102
107
|
|
|
108
|
+
@computed_field
|
|
103
109
|
@property
|
|
104
110
|
def output_tokens(self) -> float | None:
|
|
105
111
|
"""Returns the number of output tokens."""
|
|
@@ -107,6 +113,7 @@ class CohereCallResponse(
|
|
|
107
113
|
return self.usage.output_tokens
|
|
108
114
|
return None
|
|
109
115
|
|
|
116
|
+
@computed_field
|
|
110
117
|
@property
|
|
111
118
|
def cost(self) -> float | None:
|
|
112
119
|
"""Returns the cost of the response."""
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"""Calculate the cost of a Gemini API call."""
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
def calculate_cost(
|
|
5
|
+
input_tokens: int | float | None, output_tokens: int | float | None, model: str
|
|
6
|
+
) -> float | None:
|
|
7
|
+
"""Calculate the cost of a Gemini API call.
|
|
8
|
+
|
|
9
|
+
https://ai.google.dev/pricing#1_5flash
|
|
10
|
+
|
|
11
|
+
Model Input (<=128K) Output (<=128K) Input (>128K) Output (>128K)
|
|
12
|
+
gemini-1.5-flash $0.075 / 1M $0.3 / 1M $0.15 / 1M $0.6 / 1M
|
|
13
|
+
gemini-1.5-flash-8b $0.0375 / 1M $0.15 / 1M $0.075 / 1M $0.3 / 1M
|
|
14
|
+
gemini-1.5-pro $1.25 / 1M $5.0 / 1M $2.5 / 1M $10.0 / 1M
|
|
15
|
+
gemini-1.0-pro $0.50 / 1M $1.5 / 1M $0.5 / 1M $1.5 / 1M
|
|
16
|
+
"""
|
|
17
|
+
pricing = {
|
|
18
|
+
"gemini-1.5-flash": {
|
|
19
|
+
"prompt_short": 0.000_000_075,
|
|
20
|
+
"completion_short": 0.000_000_3,
|
|
21
|
+
"prompt_long": 0.000_000_15,
|
|
22
|
+
"completion_long": 0.000_000_6,
|
|
23
|
+
},
|
|
24
|
+
"gemini-1.5-flash-8b": {
|
|
25
|
+
"prompt_short": 0.000_000_037_5,
|
|
26
|
+
"completion_short": 0.000_000_15,
|
|
27
|
+
"prompt_long": 0.000_000_075,
|
|
28
|
+
"completion_long": 0.000_000_3,
|
|
29
|
+
},
|
|
30
|
+
"gemini-1.5-pro": {
|
|
31
|
+
"prompt_short": 0.000_001_25,
|
|
32
|
+
"completion_short": 0.000_005,
|
|
33
|
+
"prompt_long": 0.000_002_5,
|
|
34
|
+
"completion_long": 0.000_01,
|
|
35
|
+
},
|
|
36
|
+
"gemini-1.0-pro": {
|
|
37
|
+
"prompt_short": 0.000_000_5,
|
|
38
|
+
"completion_short": 0.000_001_5,
|
|
39
|
+
"prompt_long": 0.000_000_5,
|
|
40
|
+
"completion_long": 0.000_001_5,
|
|
41
|
+
},
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
if input_tokens is None or output_tokens is None:
|
|
45
|
+
return None
|
|
46
|
+
|
|
47
|
+
try:
|
|
48
|
+
model_pricing = pricing[model]
|
|
49
|
+
except KeyError:
|
|
50
|
+
return None
|
|
51
|
+
|
|
52
|
+
# Determine if we're using long context pricing
|
|
53
|
+
use_long_context = input_tokens > 128_000
|
|
54
|
+
|
|
55
|
+
prompt_price = model_pricing["prompt_long" if use_long_context else "prompt_short"]
|
|
56
|
+
completion_price = model_pricing[
|
|
57
|
+
"completion_long" if use_long_context else "completion_short"
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
prompt_cost = input_tokens * prompt_price
|
|
61
|
+
completion_cost = output_tokens * completion_price
|
|
62
|
+
total_cost = prompt_cost + completion_cost
|
|
63
|
+
|
|
64
|
+
return total_cost
|
|
@@ -65,11 +65,13 @@ class GeminiCallResponse(
|
|
|
65
65
|
|
|
66
66
|
_provider = "gemini"
|
|
67
67
|
|
|
68
|
+
@computed_field
|
|
68
69
|
@property
|
|
69
70
|
def content(self) -> str:
|
|
70
71
|
"""Returns the contained string content for the 0th choice."""
|
|
71
72
|
return self.response.candidates[0].content.parts[0].text
|
|
72
73
|
|
|
74
|
+
@computed_field
|
|
73
75
|
@property
|
|
74
76
|
def finish_reasons(self) -> list[str]:
|
|
75
77
|
"""Returns the finish reasons of the response."""
|
|
@@ -87,6 +89,7 @@ class GeminiCallResponse(
|
|
|
87
89
|
for candidate in self.response.candidates
|
|
88
90
|
]
|
|
89
91
|
|
|
92
|
+
@computed_field
|
|
90
93
|
@property
|
|
91
94
|
def model(self) -> str:
|
|
92
95
|
"""Returns the model name.
|
|
@@ -96,6 +99,7 @@ class GeminiCallResponse(
|
|
|
96
99
|
"""
|
|
97
100
|
return self._model
|
|
98
101
|
|
|
102
|
+
@computed_field
|
|
99
103
|
@property
|
|
100
104
|
def id(self) -> str | None:
|
|
101
105
|
"""Returns the id of the response.
|
|
@@ -112,16 +116,19 @@ class GeminiCallResponse(
|
|
|
112
116
|
"""
|
|
113
117
|
return None
|
|
114
118
|
|
|
119
|
+
@computed_field
|
|
115
120
|
@property
|
|
116
121
|
def input_tokens(self) -> None:
|
|
117
122
|
"""Returns the number of input tokens."""
|
|
118
123
|
return None
|
|
119
124
|
|
|
125
|
+
@computed_field
|
|
120
126
|
@property
|
|
121
127
|
def output_tokens(self) -> None:
|
|
122
128
|
"""Returns the number of output tokens."""
|
|
123
129
|
return None
|
|
124
130
|
|
|
131
|
+
@computed_field
|
|
125
132
|
@property
|
|
126
133
|
def cost(self) -> float | None:
|
|
127
134
|
"""Returns the cost of the call."""
|
|
@@ -62,22 +62,26 @@ class GroqCallResponse(
|
|
|
62
62
|
|
|
63
63
|
_provider = "groq"
|
|
64
64
|
|
|
65
|
+
@computed_field
|
|
65
66
|
@property
|
|
66
67
|
def content(self) -> str:
|
|
67
68
|
"""Returns the content of the chat completion for the 0th choice."""
|
|
68
69
|
message = self.response.choices[0].message
|
|
69
70
|
return message.content if message.content is not None else ""
|
|
70
71
|
|
|
72
|
+
@computed_field
|
|
71
73
|
@property
|
|
72
74
|
def finish_reasons(self) -> list[str]:
|
|
73
75
|
"""Returns the finish reasons of the response."""
|
|
74
76
|
return [str(choice.finish_reason) for choice in self.response.choices]
|
|
75
77
|
|
|
78
|
+
@computed_field
|
|
76
79
|
@property
|
|
77
80
|
def model(self) -> str:
|
|
78
81
|
"""Returns the name of the response model."""
|
|
79
82
|
return self.response.model
|
|
80
83
|
|
|
84
|
+
@computed_field
|
|
81
85
|
@property
|
|
82
86
|
def id(self) -> str:
|
|
83
87
|
"""Returns the id of the response."""
|
|
@@ -88,16 +92,19 @@ class GroqCallResponse(
|
|
|
88
92
|
"""Returns the usage of the chat completion."""
|
|
89
93
|
return self.response.usage
|
|
90
94
|
|
|
95
|
+
@computed_field
|
|
91
96
|
@property
|
|
92
97
|
def input_tokens(self) -> int | None:
|
|
93
98
|
"""Returns the number of input tokens."""
|
|
94
99
|
return self.usage.prompt_tokens if self.usage else None
|
|
95
100
|
|
|
101
|
+
@computed_field
|
|
96
102
|
@property
|
|
97
103
|
def output_tokens(self) -> int | None:
|
|
98
104
|
"""Returns the number of output tokens."""
|
|
99
105
|
return self.usage.completion_tokens if self.usage else None
|
|
100
106
|
|
|
107
|
+
@computed_field
|
|
101
108
|
@property
|
|
102
109
|
def cost(self) -> float | None:
|
|
103
110
|
"""Returns the cost of the call."""
|