mirascope 1.18.4__tar.gz → 1.19.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mirascope-1.18.4 → mirascope-1.19.0}/PKG-INFO +3 -1
- mirascope-1.19.0/docs/api/core/litellm/call.md +3 -0
- mirascope-1.19.0/docs/api/core/litellm/call_params.md +3 -0
- mirascope-1.19.0/docs/api/core/litellm/call_response.md +3 -0
- mirascope-1.19.0/docs/api/core/litellm/call_response_chunk.md +3 -0
- mirascope-1.19.0/docs/api/core/litellm/dynamic_config.md +3 -0
- mirascope-1.19.0/docs/api/core/litellm/stream.md +3 -0
- mirascope-1.19.0/docs/api/core/litellm/tool.md +3 -0
- mirascope-1.19.0/docs/api/core/xai/call.md +3 -0
- mirascope-1.19.0/docs/api/core/xai/call_params.md +3 -0
- mirascope-1.19.0/docs/api/core/xai/call_response.md +3 -0
- mirascope-1.19.0/docs/api/core/xai/call_response_chunk.md +3 -0
- mirascope-1.19.0/docs/api/core/xai/dynamic_config.md +3 -0
- mirascope-1.19.0/docs/api/core/xai/stream.md +3 -0
- mirascope-1.19.0/docs/api/core/xai/tool.md +3 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/generate_provider_examples.py +4 -3
- mirascope-1.19.0/docs/learn/local_models.md +44 -0
- mirascope-1.19.0/examples/learn/local_models/ollama.py +28 -0
- {mirascope-1.18.4/examples/learn/local_models → mirascope-1.19.0/examples/learn/local_models/openai_compatibility}/ollama.py +1 -1
- {mirascope-1.18.4/examples/learn/local_models → mirascope-1.19.0/examples/learn/local_models/openai_compatibility}/vllm.py +1 -1
- mirascope-1.19.0/examples/learn/local_models/vllm.py +28 -0
- mirascope-1.19.0/mirascope/core/xai/__init__.py +28 -0
- mirascope-1.19.0/mirascope/core/xai/_call.py +67 -0
- mirascope-1.19.0/mirascope/core/xai/_utils/__init__.py +6 -0
- mirascope-1.19.0/mirascope/core/xai/_utils/_calculate_cost.py +104 -0
- mirascope-1.19.0/mirascope/core/xai/_utils/_setup_call.py +113 -0
- mirascope-1.19.0/mirascope/core/xai/call_params.py +10 -0
- mirascope-1.19.0/mirascope/core/xai/call_response.py +27 -0
- mirascope-1.19.0/mirascope/core/xai/call_response_chunk.py +14 -0
- mirascope-1.19.0/mirascope/core/xai/dynamic_config.py +8 -0
- mirascope-1.19.0/mirascope/core/xai/stream.py +57 -0
- mirascope-1.19.0/mirascope/core/xai/tool.py +13 -0
- mirascope-1.19.0/mirascope/llm/__init__.py +6 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/llm/_protocols.py +29 -23
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/llm/llm_call.py +50 -46
- {mirascope-1.18.4 → mirascope-1.19.0}/mkdocs.yml +16 -1
- {mirascope-1.18.4 → mirascope-1.19.0}/pyproject.toml +2 -1
- mirascope-1.19.0/tests/core/xai/_utils/test_calculate_cost.py +10 -0
- mirascope-1.19.0/tests/core/xai/_utils/test_setup_call.py +48 -0
- mirascope-1.19.0/tests/core/xai/test_call.py +35 -0
- mirascope-1.19.0/tests/core/xai/test_call_response.py +43 -0
- mirascope-1.19.0/tests/core/xai/test_stream.py +54 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/llm/test_call.py +65 -1
- mirascope-1.19.0/tests/retries/__init__.py +0 -0
- mirascope-1.19.0/tests/tools/__init__.py +0 -0
- mirascope-1.19.0/tests/tools/web/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/uv.lock +5 -1
- mirascope-1.18.4/docs/api/core/litellm/call.md +0 -7
- mirascope-1.18.4/docs/learn/local_models.md +0 -25
- mirascope-1.18.4/mirascope/llm/__init__.py +0 -6
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/CODEOWNERS +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/ISSUE_TEMPLATE/question.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/workflows/docs.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/workflows/label_issues.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/workflows/lint.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/workflows/release.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.github/workflows/tests.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.gitignore +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.pre-commit-config.yaml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.vscode/extensions.json +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.vscode/launch.json +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/.vscode/settings.json +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/LICENSE +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/README.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/CNAME +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/CONTRIBUTING.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/HELP.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/MIGRATE.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/WELCOME.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/WHY.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/anthropic/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/anthropic/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/anthropic/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/anthropic/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/anthropic/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/anthropic/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/anthropic/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/azure/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/azure/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/azure/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/azure/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/azure/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/azure/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/azure/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/call_factory.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/merge_decorators.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/message_param.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/metadata.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/prompt.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/structured_stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/base/toolkit.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/bedrock/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/bedrock/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/bedrock/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/bedrock/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/bedrock/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/bedrock/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/bedrock/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/cohere/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/cohere/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/cohere/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/cohere/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/cohere/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/cohere/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/cohere/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/gemini/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/gemini/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/gemini/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/gemini/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/gemini/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/gemini/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/gemini/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/google/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/google/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/google/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/google/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/google/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/google/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/google/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/groq/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/groq/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/groq/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/groq/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/groq/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/groq/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/groq/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/mistral/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/mistral/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/mistral/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/mistral/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/mistral/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/mistral/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/mistral/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/openai/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/openai/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/openai/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/openai/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/openai/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/openai/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/openai/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/vertex/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/vertex/call_params.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/vertex/call_response.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/vertex/call_response_chunk.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/vertex/dynamic_config.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/vertex/stream.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/core/vertex/tool.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/integrations/langfuse.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/integrations/logfire.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/integrations/middleware.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/integrations/otel.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/integrations/tenacity.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/llm/call.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/tools/system/docker_operation.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/tools/system/file_system.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/tools/web/duckduckgo.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/tools/web/httpx.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/tools/web/parse_url_content.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/api/tools/web/requests.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/engineers-should-handle-prompting-llms/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/how-to-build-a-knowledge-graph/algorithmic-bias-kg.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/how-to-build-a-knowledge-graph/example-kg-diagram.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/how-to-make-a-chatbot/autocomplete.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/how-to-make-a-chatbot/lilypad-screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/how-to-make-a-chatbot/type-hints.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/agentgpt_homepage_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/autogpt_homepage_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/flowise_homepage_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/griptape_homepage_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/guidance_github_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/haystack_homepage_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/humanloop_homepage_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/instructor_docs_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/llama_index_homepage_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/metagpt_homepage_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/mirascope_homepage_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/mirascope_response_autocomplete_suggestions.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-alternatives/priompt_github_screenshot.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-prompt-template/langchain_invoke_dict_no_error.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-prompt-template/langchain_invoke_dict_runtime_error.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-prompt-template/mirascope_prompt_fn_autocomplete.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-prompt-template/mirascope_prompt_fn_incorrect_type_error.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-prompt-template/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-rag/rag-pipeline-diagram.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-runnables/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-structured-output/mirascope_prompt_autocomplete.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-structured-output/mirascope_prompt_missing_arg.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-structured-output/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-sucks/embedding_model_diagram.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-sucks/langchain_invoke_no_type_hints.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-sucks/mirascope_stream_type_hint.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langchain-sucks/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langfuse-integration/mirascope_langfuse_response_model_trace.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langfuse-integration/mirascope_langfuse_trace.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/langfuse-integration/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llamaindex-vs-langchain/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-agents/agent-diagram.jpg +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-agents/autocomplete.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-agents/type-hints.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-applications/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-as-judge/autocomplete.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/ask-marvin-homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/autogen-homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/control-flow-homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/dify-homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/haystack-homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/langchain-homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/llama-index-homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/mirascope-homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/msft-semantic-kernel-github.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/openai-stream-type-hint.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/orkes-homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-frameworks/prompt-template-autocomplete.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-orchestration/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-pipeline/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-pipeline/stages_of_rag_pipeline.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-prompt/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/autogen_github_page.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/botkit_github_page.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/crewai_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/helicone_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/langchain_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/milvus_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/ollama_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/open_llm_github_page.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/pinecone_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/rasa_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/llm-tools/vllm_github_page.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/mirascope-v1-release/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/openai-function-calling/function_calling_diagram.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/openai-function-calling/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-chaining/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-best-practices/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-best-practices/storylines_incorrect_input_arg.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-examples/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-tools/agenta_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-tools/guidance_github_page.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-tools/haystack_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-tools/langchain_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-tools/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-tools/priompt_github_page.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-tools/prompt_hub_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-tools/promptmetheus_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-engineering-vs-fine-tuning/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-flow-vs-langchain/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-flow-vs-langchain/prompt-flow-visual.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-versioning/agenta_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-versioning/langsmith_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-versioning/og-image.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-versioning/pezzo_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/prompt-versioning/prompt_hub_homepage.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/rag-application/rag-app-diagram.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/rag-llm-example/rag-diagram.jpg +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/synthetic-data-generation/autocomplete.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/synthetic-data-generation/data-chart.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/blog/synthetic-data-generation/linting.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/brandmark.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/brandmark.svg +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/calls-type-hint.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/cloth-background.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/favicon.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/generating-synthetic-data-chart.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/langfuse-call.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/learn_flow.svg +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/logfire-response-model.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/assets/stream-attributes.png +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/.authors.yml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/index.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/advanced-prompt-engineering.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/engineers-should-handle-prompting-llms.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/how-to-build-a-knowledge-graph.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/how-to-make-a-chatbot.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/langchain-alternatives.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/langchain-prompt-template.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/langchain-rag.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/langchain-runnables.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/langchain-structured-output.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/langchain-sucks.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/langfuse-integration.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llamaindex-vs-langchain.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llm-agents.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llm-applications.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llm-as-judge.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llm-evaluation.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llm-frameworks.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llm-orchestration.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llm-pipeline.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llm-prompt.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/llm-tools.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/mirascope-v1-release.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/openai-function-calling.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/prompt-chaining.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/prompt-engineering-best-practices.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/prompt-engineering-examples.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/prompt-engineering-tools.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/prompt-engineering-vs-fine-tuning.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/prompt-flow-vs-langchain.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/prompt-versioning.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/rag-application.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/rag-llm-example.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/blog/posts/synthetic-data-generation.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/extra/tweaks.css +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/generate_llms_txt.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/hooks.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/index.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/integrations/hyperdx.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/integrations/langfuse.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/integrations/logfire.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/integrations/otel.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/agents.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/async.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/calls.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/chaining.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/evals.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/extensions/custom_provider.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/extensions/middleware.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/index.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/json_mode.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/mcp/client.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/mcp/server.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/output_parsers.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/prompts.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/provider_specific_features/anthropic.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/provider_specific_features/openai.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/response_models.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/retries.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/streams.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/learn/tools.md +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/macros.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/overrides/home.html +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/overrides/main.html +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/plugins/griffe_doclinks.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/robots.txt +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/ruff.toml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/agents/blog_writing_agent.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/agents/documentation_agent.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/agents/local_chat_with_codebase.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/agents/localized_agent.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/agents/qwant_search_agent_with_sources.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/agents/sql_agent.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/agents/web_search_agent.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/evals/evaluating_documentation_agent.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/evals/evaluating_sql_agent.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/evals/evaluating_web_search_agent.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/getting_started/dynamic_configuration_and_chaining.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/getting_started/quickstart.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/getting_started/structured_outputs.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/getting_started/tools_and_agents.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/langgraph_vs_mirascope/quickstart.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/code_generation_and_execution.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/document_segmentation.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/extract_from_pdf.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/extraction_using_vision.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/generating_captions.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/generating_synthetic_data.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/knowledge_graph.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/llm_validation_with_retries.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/named_entity_recognition.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/o1_style_thinking.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/pii_scrubbing.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/query_plan.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/removing_semantic_duplicates.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/search_with_sources.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/speech_transcription.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/support_ticket_routing.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/text_classification.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/text_summarization.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/more_advanced/text_translation.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/chain_of_verification.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/decomposed_prompting.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/demonstration_ensembling.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/diverse.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/least_to_most.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/mixture_of_reasoning.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/prompt_paraphrasing.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/reverse_chain_of_thought.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/self_consistency.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/self_refine.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/sim_to_m.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/skeleton_of_thought.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/step_back.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/chaining_based/system_to_attention.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/chain_of_thought.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/common_phrases.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/contrastive_chain_of_thought.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/emotion_prompting.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/plan_and_solve.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/rephrase_and_respond.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/rereading.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/role_prompting.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/self_ask.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/tabular_chain_of_thought.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/docs/tutorials/prompt_engineering/text_based/thread_of_thought.ipynb +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/fastapi/endpoint.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/hyperdx/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/langfuse/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/logfire/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/integrations/otel/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/human_in_the_loop/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/human_in_the_loop/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/human_in_the_loop/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/human_in_the_loop/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/state_management/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/state_management/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/state_management/provider_agnostic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/state_management/provider_agnostic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/state_management/provider_agnostic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/state_management/provider_agnostic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/state_management/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/state_management/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/streaming/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/streaming/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/streaming/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/streaming/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/tools/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/tools/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/tools/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/agents/tools/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/decorator/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/custom_client/dynamic_configuration/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/parallel/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/streams/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/async/tools/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/official_sdk/anthropic_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/official_sdk/azure_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/official_sdk/bedrock_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/official_sdk/cohere_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/official_sdk/google_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/official_sdk/groq_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/official_sdk/litellm_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/official_sdk/mistral_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/official_sdk/openai_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/provider_agnostic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/provider_agnostic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/provider_agnostic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/basic_usage/provider_agnostic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/call_params/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/decorator/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_client/dynamic_configuration/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/anthropic_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/azure_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/bedrock_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/cohere_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/gemini_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/google_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/groq_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/litellm_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/mistral_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/openai_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/custom_messages/vertex_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/dynamic_configuration/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/error_handling/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/multi_modal_outputs/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/calls/provider_agnostic/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/advanced_techniques/conditional_chaining.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/advanced_techniques/iterative_chaining.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/advanced_techniques/parallel_chaining.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/computed_fields/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/function_chaining/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/chaining/nested_chains/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/hardcoded/exact_match.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/hardcoded/recall_and_precision.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/hardcoded/regex.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/llm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/llm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/llm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/llm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/panel/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/panel/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/panel/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/evals/panel/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/json_mode/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/json_mode/basic_usage/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/json_mode/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/json_mode/basic_usage/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/json_mode/error_handling/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/json_mode/error_handling/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/json_mode/error_handling/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/json_mode/error_handling/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/mcp/books.txt +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/mcp/client.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/mcp/server.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/mcp/server_decorators.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/middleware/with_saving.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/output_parsers/additional_examples/json_mode.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/output_parsers/additional_examples/regex.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/output_parsers/additional_examples/xml.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/output_parsers/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/output_parsers/basic_usage/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/output_parsers/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/output_parsers/basic_usage/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/chat_history/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/chat_history/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/chat_history/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/chat_history/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/computed_fields/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/computed_fields/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/computed_fields/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/computed_fields/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/format_specifiers/float_format/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/format_specifiers/float_format/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/format_specifiers/float_format/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/format_specifiers/float_format/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/format_specifiers/lists.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/format_specifiers/parts.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/format_specifiers/texts.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_line/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_line/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_line/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_line/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/audio/pydub/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/audio/pydub/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/audio/pydub/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/audio/pydub/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/audio/wave/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/audio/wave/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/audio/wave/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/audio/wave/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/document/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/document/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/document/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/document/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/image/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/image/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/image/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multi_modal/image/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multiple_messages/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multiple_messages/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multiple_messages/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/multiple_messages/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/object_attribute_access/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/object_attribute_access/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/object_attribute_access/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/object_attribute_access/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/single_user_message/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/single_user_message/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/single_user_message/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/prompts/single_user_message/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/anthropic/caching/messages/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/anthropic/caching/messages/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/anthropic/caching/messages/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/anthropic/caching/messages/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/anthropic/caching/tools.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/openai/realtime/audio_input_output_manually.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output_manually.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output_tools.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/openai/realtime/text_input_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/openai/realtime/text_input_output_dynamic_tools.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/openai/realtime/text_input_output_tools.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/openai/structured_outputs/response_model.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/provider_specific_features/openai/structured_outputs/tools.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/official_sdk/anthropic_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/official_sdk/azure_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/official_sdk/bedrock_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/official_sdk/cohere_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/official_sdk/google_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/official_sdk/groq_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/official_sdk/litellm_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/official_sdk/mistral_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/official_sdk/openai_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/basic_usage/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/builtin_types/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/builtin_types/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/builtin_types/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/builtin_types/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/few_shot_examples/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/few_shot_examples/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/few_shot_examples/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/few_shot_examples/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/few_shot_examples/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/few_shot_examples/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/few_shot_examples/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/few_shot_examples/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/from_call_args/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/from_call_args/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/from_call_args/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/from_call_args/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/json_mode/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/json_mode/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/json_mode/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/json_mode/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/streaming/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/streaming/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/streaming/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/streaming/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/validation/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/validation/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/validation/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/response_models/validation/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/calls/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/error_reinsertion/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/fallback/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/fallback/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/fallback/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/fallback/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/fallback_retries/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/fallback_retries/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/fallback_retries/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/fallback_retries/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/streams/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/retries/tools/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/basic_usage/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/error_handling/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/anthropic/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/anthropic/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/anthropic/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/anthropic/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/google/wave/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/google/wave/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/google/wave/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/google/wave/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/pydub/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/pydub/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/pydub/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/pydub/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/wave/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/wave/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/wave/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/groq/wave/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/pydub/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/pydub/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/pydub/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/pydub/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/wave/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/wave/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/wave/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/litellm/wave/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/pydub/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/pydub/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/pydub/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/pydub/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/wave/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/wave/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/wave/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/mistral/wave/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/openai/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/openai/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/openai/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/streams/multi_modal_outputs/openai/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/base_tool/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/base_tool/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/base_tool/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/function/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/function/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/function/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/function/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/official_sdk/anthropic_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/official_sdk/azure_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/official_sdk/bedrock_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/official_sdk/cohere_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/official_sdk/google_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/official_sdk/groq_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/official_sdk/litellm_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/official_sdk/mistral_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/basic_usage/official_sdk/openai_sdk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/base_tool/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/base_tool/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/base_tool/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/base_tool/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/base_tool/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/base_tool/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/base_tool/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/function/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/function/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/function/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/function/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/function/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/function/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/function/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/few_shot_examples/function/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/parallel/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/parallel/base_tool/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/parallel/base_tool/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/parallel/base_tool/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/parallel/function/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/parallel/function/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/parallel/function/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/parallel/function/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/base_tool/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/partial_tool_streams/function/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_toolkit/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_toolkit/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_toolkit/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_toolkit/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_tools/basic_usage/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_tools/basic_usage/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_tools/basic_usage/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_tools/basic_usage/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_tools/custom_config/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_tools/custom_config/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_tools/custom_config/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/pre_made_tools/custom_config/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/base_tool/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/azure/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/azure/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/azure/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/azure/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/bedrock/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/bedrock/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/bedrock/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/bedrock/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/cohere/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/cohere/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/cohere/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/cohere/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/google/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/google/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/google/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/google/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/litellm/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/litellm/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/litellm/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/litellm/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/streams/function/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/tool_message_params/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/tool_message_params/base_tool/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/tool_message_params/base_tool/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/tool_message_params/base_tool/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/tool_message_params/converted.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/tool_message_params/function/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/tool_message_params/function/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/tool_message_params/function/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/tool_message_params/function/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/toolkit/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/toolkit/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/toolkit/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/toolkit/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/validation/base_tool/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/validation/base_tool/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/validation/base_tool/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/validation/base_tool/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/validation/function/base_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/validation/function/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/validation/function/shorthand.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/learn/tools/validation/function/string_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/examples/ruff.toml +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/openai/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/openai/realtime/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/openai/realtime/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/openai/realtime/_utils/_audio.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/openai/realtime/_utils/_protocols.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/openai/realtime/realtime.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/openai/realtime/recording.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/openai/realtime/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/chunkers/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/chunkers/base_chunker.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/chunkers/text_chunker.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/document.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/embedders.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/embedding_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/embedding_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/query_results.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/vectorstore_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/base/vectorstores.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/chroma/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/chroma/types.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/chroma/vectorstores.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/cohere/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/cohere/embedders.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/cohere/embedding_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/cohere/embedding_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/cohere/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/openai/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/openai/embedders.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/openai/embedding_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/openai/embedding_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/openai/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/pinecone/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/pinecone/types.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/pinecone/vectorstores.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/weaviate/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/weaviate/types.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/beta/rag/weaviate/vectorstores.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/anthropic/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/_get_credential.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/azure/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_call_factory.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_create.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_extract.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_extract_with_tools.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_partial.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_base_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_base_type.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_convert_base_model_to_base_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_convert_base_type_to_base_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_convert_function_to_base_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_convert_messages_to_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_convert_provider_finish_reason_to_finish_reason.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_default_tool_docstring.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_extract_tool_return.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_fn_is_async.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_format_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_audio_type.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_common_usage.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_document_type.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_dynamic_configuration.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_fields_from_call_args.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_fn_args.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_image_type.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_metadata.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_possible_user_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_prompt_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_template_values.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_template_variables.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_get_unsupported_tool_config_keys.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_is_prompt_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_json_mode_content.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_messages_decorator.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_parse_content_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_parse_prompt_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_pil_image_to_bytes.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_protocols.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/_utils/_setup_extract_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/from_call_args.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/merge_decorators.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/metadata.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/prompt.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/response_model_config_dict.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/stream_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/structured_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/toolkit.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/base/types.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_types.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/bedrock/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_types.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/cohere/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/gemini/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/_utils/_validate_media_type.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/google/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/groq/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/litellm/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/mistral/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/openai/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_call_kwargs.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_utils/_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_utils/_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_utils/_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_utils/_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_utils/_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_utils/_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/_utils/_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/dynamic_config.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/core/vertex/tool.py +0 -0
- {mirascope-1.18.4/mirascope → mirascope-1.19.0/mirascope/core/xai}/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/_middleware_factory.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/langfuse/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/langfuse/_utils.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/langfuse/_with_langfuse.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/logfire/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/logfire/_utils.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/logfire/_with_logfire.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/otel/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/otel/_utils.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/otel/_with_hyperdx.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/otel/_with_otel.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/integrations/tenacity.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/llm/_response_metaclass.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/llm/call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/llm/call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/llm/llm_override.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/llm/stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/llm/tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/mcp/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/mcp/client.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/mcp/server.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/mcp/tools.py +0 -0
- /mirascope-1.18.4/mirascope/tools/system/__init__.py → /mirascope-1.19.0/mirascope/py.typed +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/retries/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/retries/fallback.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/retries/tenacity.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/tools/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/tools/base.py +0 -0
- {mirascope-1.18.4/mirascope/tools/web → mirascope-1.19.0/mirascope/tools/system}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/tools/system/_docker_operation.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/tools/system/_file_system.py +0 -0
- {mirascope-1.18.4/tests/core → mirascope-1.19.0/mirascope/tools/web}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/tools/web/_duckduckgo.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/tools/web/_httpx.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/tools/web/_parse_url_content.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/tools/web/_requests.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/anthropic.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/base/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/base/calls.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/base/extractors.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/base/ops_utils.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/base/prompts.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/base/types.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/base/utils.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/mirascope/v0/openai.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/conftest.py +0 -0
- {mirascope-1.18.4/tests/core/anthropic → mirascope-1.19.0/tests/core}/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/anthropic/_utils → mirascope-1.19.0/tests/core/anthropic}/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/azure → mirascope-1.19.0/tests/core/anthropic}/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/anthropic/test_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/base → mirascope-1.19.0/tests/core/azure/_utils}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/_utils/test_get_credential.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/azure/test_tool.py +0 -0
- {mirascope-1.18.4/tests/core/base/_utils → mirascope-1.19.0/tests/core/base}/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/bedrock → mirascope-1.19.0/tests/core/base/_utils}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_base_type.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_convert_base_model_to_base_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_convert_base_type_to_base_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_convert_function_to_base_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_convert_messages_to_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_extract_tool_return.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_format_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_audio_type.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_create_fn_or_async_create_fn.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_document_type.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_dynamic_configuration.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_fields_from_call_args.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_fn_args.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_image_type.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_metadata.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_possible_user_message_param.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_prompt_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_template_values.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_template_variables.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_get_unsupported_tool_config_keys.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_json_mode_content.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_message_decorator.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_parse_content_template.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_parse_prompt_messages.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_pil_image_to_bytes.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/_utils/test_setup_extract_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/conftest.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_call_factory.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_create.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_extract.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_extract_with_tools.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_merge_decorators.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_partial.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_prompt.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_structured_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/base/test_toolkit.py +0 -0
- {mirascope-1.18.4/tests/core/bedrock/_utils → mirascope-1.19.0/tests/core/bedrock}/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/cohere → mirascope-1.19.0/tests/core/bedrock/_utils}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/conftest.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/bedrock/test_tool.py +0 -0
- {mirascope-1.18.4/tests/core/cohere/_utils → mirascope-1.19.0/tests/core/cohere}/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/gemini → mirascope-1.19.0/tests/core/cohere/_utils}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/cohere/test_tool.py +0 -0
- {mirascope-1.18.4/tests/core/gemini/_utils → mirascope-1.19.0/tests/core/gemini}/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/google → mirascope-1.19.0/tests/core/gemini/_utils}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/gemini/test_tool.py +0 -0
- {mirascope-1.18.4/tests/core/google/_utils → mirascope-1.19.0/tests/core/google}/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/groq → mirascope-1.19.0/tests/core/google}/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/google/test_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/litellm → mirascope-1.19.0/tests/core/groq/_utils}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/groq/test_tool.py +0 -0
- {mirascope-1.18.4/tests/core/litellm/_utils → mirascope-1.19.0/tests/core/litellm}/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/mistral → mirascope-1.19.0/tests/core/litellm}/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/litellm/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/litellm/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/litellm/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/litellm/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/openai → mirascope-1.19.0/tests/core/mistral}/_utils/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/mistral/test_tool.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/__init__.py +0 -0
- {mirascope-1.18.4/tests/core/vertex → mirascope-1.19.0/tests/core/openai/_utils}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/openai/test_tool.py +0 -0
- {mirascope-1.18.4/tests/core/vertex/_utils → mirascope-1.19.0/tests/core/vertex}/__init__.py +0 -0
- {mirascope-1.18.4/tests/integrations → mirascope-1.19.0/tests/core/vertex/_utils}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/_utils/test_calculate_cost.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/_utils/test_convert_common_call_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/_utils/test_convert_message_params.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/_utils/test_get_json_output.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/_utils/test_handle_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/_utils/test_message_param_converter.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/_utils/test_setup_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/test_call.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/core/vertex/test_tool.py +0 -0
- {mirascope-1.18.4/tests/integrations/langfuse → mirascope-1.19.0/tests/core/xai}/__init__.py +0 -0
- {mirascope-1.18.4/tests/integrations/logfire → mirascope-1.19.0/tests/core/xai/_utils}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/docs/test_generate_provider_examples.py +0 -0
- {mirascope-1.18.4/tests/integrations/otel → mirascope-1.19.0/tests/integrations}/__init__.py +0 -0
- {mirascope-1.18.4/tests/llm → mirascope-1.19.0/tests/integrations/langfuse}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/integrations/langfuse/test_utils.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/integrations/langfuse/test_with_langfuse.py +0 -0
- {mirascope-1.18.4/tests/mcp → mirascope-1.19.0/tests/integrations/logfire}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/integrations/logfire/test_utils.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/integrations/logfire/test_with_logfire.py +0 -0
- {mirascope-1.18.4/tests/retries → mirascope-1.19.0/tests/integrations/otel}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/integrations/otel/test_utils.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/integrations/otel/test_with_hyperdx.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/integrations/otel/test_with_otel.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/integrations/test_middleware_factory.py +0 -0
- {mirascope-1.18.4/tests/tools → mirascope-1.19.0/tests/llm}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/llm/test_call_response.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/llm/test_call_response_chunk.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/llm/test_override.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/llm/test_response_metaclass.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/llm/test_stream.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/llm/test_tool.py +0 -0
- {mirascope-1.18.4/tests/tools/web → mirascope-1.19.0/tests/mcp}/__init__.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/mcp/test_mcp_client.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/mcp/test_mcp_server.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/retries/test_fallback.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/retries/test_tenacity.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/tools/test_base.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/tools/test_docker_operation_toolkit.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/tools/test_filesystem_toolkit.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/tools/web/test_duckduckgo.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/tools/web/test_httpx.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/tests/tools/web/test_parse_url_content.py +0 -0
- {mirascope-1.18.4 → mirascope-1.19.0}/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.
|
|
3
|
+
Version: 1.19.0
|
|
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
|
|
@@ -96,6 +96,8 @@ Provides-Extra: tenacity
|
|
|
96
96
|
Requires-Dist: tenacity<9,>=8.4.2; extra == 'tenacity'
|
|
97
97
|
Provides-Extra: vertex
|
|
98
98
|
Requires-Dist: google-cloud-aiplatform<2,>=1.38.0; extra == 'vertex'
|
|
99
|
+
Provides-Extra: xai
|
|
100
|
+
Requires-Dist: openai<2,>=1.6.0; extra == 'xai'
|
|
99
101
|
Description-Content-Type: text/markdown
|
|
100
102
|
|
|
101
103
|
<div align="center" justiry="start">
|
|
@@ -18,13 +18,14 @@ PROVIDER_INFO: dict[Provider, ProviderInfo] = {
|
|
|
18
18
|
"anthropic": ProviderInfo(
|
|
19
19
|
provider="anthropic", title="Anthropic", model="claude-3-5-sonnet-latest"
|
|
20
20
|
),
|
|
21
|
-
"mistral": ProviderInfo(
|
|
22
|
-
provider="mistral", title="Mistral", model="mistral-large-latest"
|
|
23
|
-
),
|
|
24
21
|
"google": ProviderInfo(provider="google", title="Google", model="gemini-2.0-flash"),
|
|
25
22
|
"groq": ProviderInfo(
|
|
26
23
|
provider="groq", title="Groq", model="llama-3.1-70b-versatile"
|
|
27
24
|
),
|
|
25
|
+
"xai": ProviderInfo(provider="xai", title="xAI", model="grok-3"),
|
|
26
|
+
"mistral": ProviderInfo(
|
|
27
|
+
provider="mistral", title="Mistral", model="mistral-large-latest"
|
|
28
|
+
),
|
|
28
29
|
"cohere": ProviderInfo(provider="cohere", title="Cohere", model="command-r-plus"),
|
|
29
30
|
"litellm": ProviderInfo(provider="litellm", title="LiteLLM", model="gpt-4o-mini"),
|
|
30
31
|
"azure": ProviderInfo(provider="azure", title="Azure AI", model="gpt-4o-mini"),
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
search:
|
|
3
|
+
boost: 3
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Local (Open-Source) Models
|
|
7
|
+
|
|
8
|
+
{% set local_providers = [("Ollama", "https://github.com/ollama/ollama/blob/main/docs/openai.md"), ("vLLM", "https://docs.vllm.ai/en/latest/serving/openai_compatible_server.html")] %}
|
|
9
|
+
|
|
10
|
+
You can use the [`llm.call`](../api/llm/call.md) decorator to interact with models running with [Ollama](https://github.com/ollama/ollama) or [vLLM](https://github.com/vllm-project/vllm):
|
|
11
|
+
|
|
12
|
+
!!! mira ""
|
|
13
|
+
|
|
14
|
+
{% for provider, _ in local_providers %}
|
|
15
|
+
=== "{{ provider }}"
|
|
16
|
+
|
|
17
|
+
```python hl_lines="5 20"
|
|
18
|
+
--8<-- "examples/learn/local_models/{{ provider.lower() }}.py"
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
{% endfor %}
|
|
22
|
+
|
|
23
|
+
??? info "Double Check Support"
|
|
24
|
+
|
|
25
|
+
The `llm.call` decorator uses OpenAI compatibility under the hood. Of course, not all open-source models or providers necessarily support all of OpenAI's available features, but most use-cases are generally available. See the links we've included below for more details:
|
|
26
|
+
|
|
27
|
+
{% for provider, support_url in local_providers %}
|
|
28
|
+
- [{{ provider }} OpenAI Compatibility]({{ support_url }})
|
|
29
|
+
{% endfor %}
|
|
30
|
+
|
|
31
|
+
## OpenAI Compatibility
|
|
32
|
+
|
|
33
|
+
When hosting (fine-tuned) open-source LLMs yourself locally or in your own cloud with tools that have OpenAI compatibility, you can use the [`openai.call`](../api/core/openai/call.md) decorator with a [custom client](./calls.md#custom-client) to interact with your model using all of Mirascope's various features.
|
|
34
|
+
|
|
35
|
+
!!! mira ""
|
|
36
|
+
|
|
37
|
+
{% for provider, _ in local_providers %}
|
|
38
|
+
=== "{{ provider }}"
|
|
39
|
+
|
|
40
|
+
```python hl_lines="5-8 11 26"
|
|
41
|
+
--8<-- "examples/learn/local_models/openai_compatibility/{{ provider.lower() }}.py"
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
{% endfor %}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from mirascope import llm
|
|
2
|
+
from pydantic import BaseModel
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
@llm.call("ollama", "llama3.2")
|
|
6
|
+
def recommend_book(genre: str) -> str:
|
|
7
|
+
return f"Recommend a {genre} book"
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
recommendation = recommend_book("fantasy")
|
|
11
|
+
print(recommendation)
|
|
12
|
+
# Output: Here are some popular and highly-recommended fantasy books...
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Book(BaseModel):
|
|
16
|
+
title: str
|
|
17
|
+
author: str
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
@llm.call("ollama", "llama3.2", response_model=Book)
|
|
21
|
+
def extract_book(text: str) -> str:
|
|
22
|
+
return f"Extract {text}"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
book = extract_book("The Name of the Wind by Patrick Rothfuss")
|
|
26
|
+
assert isinstance(book, Book)
|
|
27
|
+
print(book)
|
|
28
|
+
# Output: title='The Name of the Wind' author='Patrick Rothfuss'
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from mirascope import llm
|
|
2
|
+
from pydantic import BaseModel
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
@llm.call("vllm", "llama3.2")
|
|
6
|
+
def recommend_book(genre: str) -> str:
|
|
7
|
+
return f"Recommend a {genre} book"
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
recommendation = recommend_book("fantasy")
|
|
11
|
+
print(recommendation)
|
|
12
|
+
# Output: Here are some popular and highly-recommended fantasy books...
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Book(BaseModel):
|
|
16
|
+
title: str
|
|
17
|
+
author: str
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
@llm.call("vllm", "llama3.2", response_model=Book)
|
|
21
|
+
def extract_book(text: str) -> str:
|
|
22
|
+
return f"Extract {text}"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
book = extract_book("The Name of the Wind by Patrick Rothfuss")
|
|
26
|
+
assert isinstance(book, Book)
|
|
27
|
+
print(book)
|
|
28
|
+
# Output: title='The Name of the Wind' author='Patrick Rothfuss'
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"""The Mirascope xAI Module."""
|
|
2
|
+
|
|
3
|
+
from typing import TypeAlias
|
|
4
|
+
|
|
5
|
+
from ..openai import OpenAIMessageParam
|
|
6
|
+
from ._call import xai_call
|
|
7
|
+
from ._call import xai_call as call
|
|
8
|
+
from .call_params import XAICallParams
|
|
9
|
+
from .call_response import XAICallResponse
|
|
10
|
+
from .call_response_chunk import XAICallResponseChunk
|
|
11
|
+
from .dynamic_config import AsyncXAIDynamicConfig, XAIDynamicConfig
|
|
12
|
+
from .stream import XAIStream
|
|
13
|
+
from .tool import XAITool
|
|
14
|
+
|
|
15
|
+
XAIMessageParam: TypeAlias = OpenAIMessageParam
|
|
16
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
"AsyncXAIDynamicConfig",
|
|
19
|
+
"XAICallParams",
|
|
20
|
+
"XAICallResponse",
|
|
21
|
+
"XAICallResponseChunk",
|
|
22
|
+
"XAIDynamicConfig",
|
|
23
|
+
"XAIMessageParam",
|
|
24
|
+
"XAIStream",
|
|
25
|
+
"XAITool",
|
|
26
|
+
"call",
|
|
27
|
+
"xai_call",
|
|
28
|
+
]
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""The `xai_call` decorator for functions as LLM calls."""
|
|
2
|
+
|
|
3
|
+
from ..base import call_factory
|
|
4
|
+
from ..openai._utils import (
|
|
5
|
+
get_json_output,
|
|
6
|
+
handle_stream,
|
|
7
|
+
handle_stream_async,
|
|
8
|
+
)
|
|
9
|
+
from ._utils import setup_call
|
|
10
|
+
from .call_params import XAICallParams
|
|
11
|
+
from .call_response import XAICallResponse
|
|
12
|
+
from .call_response_chunk import XAICallResponseChunk
|
|
13
|
+
from .stream import XAIStream
|
|
14
|
+
from .tool import XAITool
|
|
15
|
+
|
|
16
|
+
xai_call = call_factory(
|
|
17
|
+
TCallResponse=XAICallResponse,
|
|
18
|
+
TCallResponseChunk=XAICallResponseChunk,
|
|
19
|
+
TToolType=XAITool,
|
|
20
|
+
TStream=XAIStream,
|
|
21
|
+
default_call_params=XAICallParams(),
|
|
22
|
+
setup_call=setup_call, # pyright: ignore [reportArgumentType]
|
|
23
|
+
get_json_output=get_json_output,
|
|
24
|
+
handle_stream=handle_stream, # pyright: ignore [reportArgumentType]
|
|
25
|
+
handle_stream_async=handle_stream_async, # pyright: ignore [reportArgumentType]
|
|
26
|
+
)
|
|
27
|
+
"""A decorator for calling the xAI API with a typed function.
|
|
28
|
+
|
|
29
|
+
usage docs: learn/calls.md
|
|
30
|
+
|
|
31
|
+
This decorator is used to wrap a typed function that calls the xAI API. It parses
|
|
32
|
+
the prompt template of the wrapped function as the messages array and templates the input
|
|
33
|
+
arguments for the function into each message's template.
|
|
34
|
+
|
|
35
|
+
Example:
|
|
36
|
+
|
|
37
|
+
```python
|
|
38
|
+
from mirascope.core import prompt_template
|
|
39
|
+
from mirascope.core.xai import xai_call
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@xai_call("grok-2-latest")
|
|
43
|
+
def recommend_book(genre: str) -> str:
|
|
44
|
+
return f"Recommend a {genre} book"
|
|
45
|
+
|
|
46
|
+
response = recommend_book("fantasy")
|
|
47
|
+
print(response.content)
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Args:
|
|
51
|
+
model (str): The model to use in the API call.
|
|
52
|
+
stream (bool): Whether to stream the response from the API call.
|
|
53
|
+
tools (list[BaseTool | Callable]): The tools to use in the API call.
|
|
54
|
+
response_model (BaseModel | BaseType): The response model into which the response
|
|
55
|
+
should be structured.
|
|
56
|
+
output_parser (Callable[[OpenAICallResponse | ResponseModelT], Any]): A function for
|
|
57
|
+
parsing the call response whose value will be returned in place of the original
|
|
58
|
+
call response.
|
|
59
|
+
json_mode (bool): Whether to use JSON Mode.
|
|
60
|
+
client (None): xAI does not support a custom client.
|
|
61
|
+
call_params (OpenAICallParams): The `OpenAICallParams` call parameters to use in the
|
|
62
|
+
API call.
|
|
63
|
+
|
|
64
|
+
Returns:
|
|
65
|
+
decorator (Callable): The decorator for turning a typed function into a xAI
|
|
66
|
+
routed LLM API call.
|
|
67
|
+
"""
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"""Calculate the cost of a Grok API call."""
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
def calculate_cost(
|
|
5
|
+
input_tokens: int | float | None,
|
|
6
|
+
cached_tokens: int | float | None,
|
|
7
|
+
output_tokens: int | float | None,
|
|
8
|
+
model: str,
|
|
9
|
+
) -> float | None:
|
|
10
|
+
"""Calculate the cost of an xAI Grok API call.
|
|
11
|
+
|
|
12
|
+
https://docs.x.ai
|
|
13
|
+
|
|
14
|
+
Pricing (per 1M tokens):
|
|
15
|
+
|
|
16
|
+
Model Input Cached Output
|
|
17
|
+
grok-3 $3.50 $0.875 $10.50
|
|
18
|
+
grok-3-latest $3.50 $0.875 $10.50
|
|
19
|
+
grok-2 $2.00 $0.50 $6.00
|
|
20
|
+
grok-2-latest $2.00 $0.50 $6.00
|
|
21
|
+
grok-2-1212 $2.00 $0.50 $6.00
|
|
22
|
+
grok-2-mini $0.33 $0.083 $1.00
|
|
23
|
+
grok-2-vision-1212 $2.00 $0.50 $6.00
|
|
24
|
+
grok-vision-beta $5.00 $1.25 $15.00
|
|
25
|
+
grok-beta $5.00 $1.25 $15.00
|
|
26
|
+
|
|
27
|
+
Args:
|
|
28
|
+
input_tokens: Number of input tokens
|
|
29
|
+
cached_tokens: Number of cached tokens
|
|
30
|
+
output_tokens: Number of output tokens
|
|
31
|
+
model: Model name to use for pricing calculation
|
|
32
|
+
|
|
33
|
+
Returns:
|
|
34
|
+
Total cost in USD or None if invalid input
|
|
35
|
+
"""
|
|
36
|
+
pricing = {
|
|
37
|
+
"grok-3": {
|
|
38
|
+
"prompt": 0.000_003_5,
|
|
39
|
+
"cached": 0.000_000_875,
|
|
40
|
+
"completion": 0.000_010_5,
|
|
41
|
+
},
|
|
42
|
+
"grok-3-latest": {
|
|
43
|
+
"prompt": 0.000_003_5,
|
|
44
|
+
"cached": 0.000_000_875,
|
|
45
|
+
"completion": 0.000_010_5,
|
|
46
|
+
},
|
|
47
|
+
"grok-2": {
|
|
48
|
+
"prompt": 0.000_002,
|
|
49
|
+
"cached": 0.000_000_5,
|
|
50
|
+
"completion": 0.000_006,
|
|
51
|
+
},
|
|
52
|
+
"grok-latest": {
|
|
53
|
+
"prompt": 0.000_002,
|
|
54
|
+
"cached": 0.000_000_5,
|
|
55
|
+
"completion": 0.000_006,
|
|
56
|
+
},
|
|
57
|
+
"grok-2-1212": {
|
|
58
|
+
"prompt": 0.000_002,
|
|
59
|
+
"cached": 0.000_000_5,
|
|
60
|
+
"completion": 0.000_006,
|
|
61
|
+
},
|
|
62
|
+
"grok-2-mini": {
|
|
63
|
+
"prompt": 0.000_000_33,
|
|
64
|
+
"cached": 0.000_000_083,
|
|
65
|
+
"completion": 0.000_001,
|
|
66
|
+
},
|
|
67
|
+
"grok-2-vision-1212": {
|
|
68
|
+
"prompt": 0.000_002,
|
|
69
|
+
"cached": 0.000_000_5,
|
|
70
|
+
"completion": 0.000_006,
|
|
71
|
+
},
|
|
72
|
+
"grok-vision-beta": {
|
|
73
|
+
"prompt": 0.000_005,
|
|
74
|
+
"cached": 0.000_001_25,
|
|
75
|
+
"completion": 0.000_015,
|
|
76
|
+
},
|
|
77
|
+
"grok-beta": {
|
|
78
|
+
"prompt": 0.000_005,
|
|
79
|
+
"cached": 0.000_001_25,
|
|
80
|
+
"completion": 0.000_015,
|
|
81
|
+
},
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if input_tokens is None or output_tokens is None:
|
|
85
|
+
return None
|
|
86
|
+
|
|
87
|
+
if cached_tokens is None:
|
|
88
|
+
cached_tokens = 0
|
|
89
|
+
|
|
90
|
+
try:
|
|
91
|
+
model_pricing = pricing[model]
|
|
92
|
+
except KeyError:
|
|
93
|
+
return None
|
|
94
|
+
|
|
95
|
+
prompt_price = model_pricing["prompt"]
|
|
96
|
+
cached_price = model_pricing["cached"]
|
|
97
|
+
completion_price = model_pricing["completion"]
|
|
98
|
+
|
|
99
|
+
prompt_cost = input_tokens * prompt_price
|
|
100
|
+
cached_cost = cached_tokens * cached_price
|
|
101
|
+
completion_cost = output_tokens * completion_price
|
|
102
|
+
total_cost = prompt_cost + cached_cost + completion_cost
|
|
103
|
+
|
|
104
|
+
return total_cost
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"""This module contains the setup_call function for OpenAI tools."""
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
from collections.abc import Awaitable, Callable
|
|
5
|
+
from typing import Any, overload
|
|
6
|
+
|
|
7
|
+
from openai import AsyncOpenAI, OpenAI
|
|
8
|
+
from openai.types.chat import (
|
|
9
|
+
ChatCompletion,
|
|
10
|
+
ChatCompletionChunk,
|
|
11
|
+
ChatCompletionMessageParam,
|
|
12
|
+
)
|
|
13
|
+
from pydantic import BaseModel
|
|
14
|
+
|
|
15
|
+
from ...base import BaseTool
|
|
16
|
+
from ...base._utils import AsyncCreateFn, CreateFn, fn_is_async
|
|
17
|
+
from ...base.call_params import CommonCallParams
|
|
18
|
+
from ...base.stream_config import StreamConfig
|
|
19
|
+
from ...openai import (
|
|
20
|
+
AsyncOpenAIDynamicConfig,
|
|
21
|
+
OpenAICallParams,
|
|
22
|
+
OpenAIDynamicConfig,
|
|
23
|
+
OpenAITool,
|
|
24
|
+
)
|
|
25
|
+
from ...openai._call_kwargs import OpenAICallKwargs
|
|
26
|
+
from ...openai._utils import setup_call as setup_call_openai
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
@overload
|
|
30
|
+
def setup_call(
|
|
31
|
+
*,
|
|
32
|
+
model: str,
|
|
33
|
+
client: AsyncOpenAI | None,
|
|
34
|
+
fn: Callable[..., Awaitable[AsyncOpenAIDynamicConfig]],
|
|
35
|
+
fn_args: dict[str, Any],
|
|
36
|
+
dynamic_config: AsyncOpenAIDynamicConfig,
|
|
37
|
+
tools: list[type[BaseTool] | Callable] | None,
|
|
38
|
+
json_mode: bool,
|
|
39
|
+
call_params: OpenAICallParams | CommonCallParams,
|
|
40
|
+
response_model: type[BaseModel] | None,
|
|
41
|
+
stream: bool | StreamConfig,
|
|
42
|
+
) -> tuple[
|
|
43
|
+
AsyncCreateFn[ChatCompletion, ChatCompletionChunk],
|
|
44
|
+
str | None,
|
|
45
|
+
list[ChatCompletionMessageParam],
|
|
46
|
+
list[type[OpenAITool]] | None,
|
|
47
|
+
OpenAICallKwargs,
|
|
48
|
+
]: ...
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
@overload
|
|
52
|
+
def setup_call(
|
|
53
|
+
*,
|
|
54
|
+
model: str,
|
|
55
|
+
client: OpenAI | None,
|
|
56
|
+
fn: Callable[..., OpenAIDynamicConfig],
|
|
57
|
+
fn_args: dict[str, Any],
|
|
58
|
+
dynamic_config: OpenAIDynamicConfig,
|
|
59
|
+
tools: list[type[BaseTool] | Callable] | None,
|
|
60
|
+
json_mode: bool,
|
|
61
|
+
call_params: OpenAICallParams | CommonCallParams,
|
|
62
|
+
response_model: type[BaseModel] | None,
|
|
63
|
+
stream: bool | StreamConfig,
|
|
64
|
+
) -> tuple[
|
|
65
|
+
CreateFn[ChatCompletion, ChatCompletionChunk],
|
|
66
|
+
str | None,
|
|
67
|
+
list[ChatCompletionMessageParam],
|
|
68
|
+
list[type[OpenAITool]] | None,
|
|
69
|
+
OpenAICallKwargs,
|
|
70
|
+
]: ...
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def setup_call(
|
|
74
|
+
*,
|
|
75
|
+
model: str,
|
|
76
|
+
client: OpenAI | AsyncOpenAI | None,
|
|
77
|
+
fn: Callable[..., OpenAIDynamicConfig]
|
|
78
|
+
| Callable[..., Awaitable[AsyncOpenAIDynamicConfig]],
|
|
79
|
+
fn_args: dict[str, Any],
|
|
80
|
+
dynamic_config: OpenAIDynamicConfig | AsyncOpenAIDynamicConfig,
|
|
81
|
+
tools: list[type[BaseTool] | Callable] | None,
|
|
82
|
+
json_mode: bool,
|
|
83
|
+
call_params: OpenAICallParams | CommonCallParams,
|
|
84
|
+
response_model: type[BaseModel] | None,
|
|
85
|
+
stream: bool | StreamConfig,
|
|
86
|
+
) -> tuple[
|
|
87
|
+
CreateFn[ChatCompletion, ChatCompletionChunk]
|
|
88
|
+
| AsyncCreateFn[ChatCompletion, ChatCompletionChunk],
|
|
89
|
+
str | None,
|
|
90
|
+
list[ChatCompletionMessageParam],
|
|
91
|
+
list[type[OpenAITool]] | None,
|
|
92
|
+
OpenAICallKwargs,
|
|
93
|
+
]:
|
|
94
|
+
if not client:
|
|
95
|
+
api_key = os.environ.get("XAI_API_KEY")
|
|
96
|
+
client = (
|
|
97
|
+
AsyncOpenAI(api_key=api_key, base_url="https://api.x.ai/v1")
|
|
98
|
+
if fn_is_async(fn)
|
|
99
|
+
else OpenAI(api_key=api_key, base_url="https://api.x.ai/v1")
|
|
100
|
+
)
|
|
101
|
+
create, prompt_template, messages, tool_types, call_kwargs = setup_call_openai(
|
|
102
|
+
model=model, # pyright: ignore [reportCallIssue]
|
|
103
|
+
client=client, # pyright: ignore [reportArgumentType]
|
|
104
|
+
fn=fn, # pyright: ignore [reportArgumentType]
|
|
105
|
+
fn_args=fn_args, # pyright: ignore [reportArgumentType]
|
|
106
|
+
dynamic_config=dynamic_config,
|
|
107
|
+
tools=tools,
|
|
108
|
+
json_mode=json_mode,
|
|
109
|
+
call_params=call_params,
|
|
110
|
+
response_model=response_model,
|
|
111
|
+
stream=stream,
|
|
112
|
+
)
|
|
113
|
+
return create, prompt_template, messages, tool_types, call_kwargs
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""usage docs: learn/calls.md#provider-specific-parameters"""
|
|
2
|
+
|
|
3
|
+
from ..openai import OpenAICallParams
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class XAICallParams(OpenAICallParams):
|
|
7
|
+
"""A simple wrapper around `OpenAICallParams.`
|
|
8
|
+
|
|
9
|
+
Since xAI supports the OpenAI spec, we change nothing here.
|
|
10
|
+
"""
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"""This module contains the `XAICallResponse` class.
|
|
2
|
+
|
|
3
|
+
usage docs: learn/calls.md#handling-responses
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from pydantic import computed_field
|
|
7
|
+
|
|
8
|
+
from ..openai import OpenAICallResponse
|
|
9
|
+
from ._utils import calculate_cost
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class XAICallResponse(OpenAICallResponse):
|
|
13
|
+
"""A simpler wrapper around `OpenAICallResponse`.
|
|
14
|
+
|
|
15
|
+
Everything is the same except the `cost` property, which has been updated to use
|
|
16
|
+
xAI's cost calculations so that cost tracking works for non-OpenAI models.
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
_provider = "xai"
|
|
20
|
+
|
|
21
|
+
@computed_field
|
|
22
|
+
@property
|
|
23
|
+
def cost(self) -> float | None:
|
|
24
|
+
"""Returns the cost of the call."""
|
|
25
|
+
return calculate_cost(
|
|
26
|
+
self.input_tokens, self.cached_tokens, self.output_tokens, self.model
|
|
27
|
+
)
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""This module contains the `XAICallResponseChunk` class.
|
|
2
|
+
|
|
3
|
+
usage docs: learn/streams.md#handling-streamed-responses
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from ..openai import OpenAICallResponseChunk
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class XAICallResponseChunk(OpenAICallResponseChunk):
|
|
10
|
+
"""A simpler wrapper around `OpenAICallResponse`.
|
|
11
|
+
|
|
12
|
+
Everything is the same except the `cost` property, which has been updated to use
|
|
13
|
+
xAI's cost calculations so that cost tracking works for non-OpenAI models.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""This module defines the function return type for functions as LLM calls."""
|
|
2
|
+
|
|
3
|
+
from typing import TypeAlias
|
|
4
|
+
|
|
5
|
+
from ..openai import AsyncOpenAIDynamicConfig, OpenAIDynamicConfig
|
|
6
|
+
|
|
7
|
+
AsyncXAIDynamicConfig: TypeAlias = AsyncOpenAIDynamicConfig
|
|
8
|
+
XAIDynamicConfig: TypeAlias = OpenAIDynamicConfig
|