mirascope 1.25.6__py3-none-any.whl → 2.0.0__py3-none-any.whl
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/__init__.py +5 -52
- mirascope/_stubs.py +363 -0
- mirascope/api/__init__.py +14 -0
- mirascope/api/_generated/README.md +207 -0
- mirascope/api/_generated/__init__.py +440 -0
- mirascope/api/_generated/annotations/__init__.py +33 -0
- mirascope/api/_generated/annotations/client.py +506 -0
- mirascope/api/_generated/annotations/raw_client.py +1414 -0
- mirascope/api/_generated/annotations/types/__init__.py +31 -0
- mirascope/api/_generated/annotations/types/annotations_create_request_label.py +5 -0
- mirascope/api/_generated/annotations/types/annotations_create_response.py +48 -0
- mirascope/api/_generated/annotations/types/annotations_create_response_label.py +5 -0
- mirascope/api/_generated/annotations/types/annotations_get_response.py +48 -0
- mirascope/api/_generated/annotations/types/annotations_get_response_label.py +5 -0
- mirascope/api/_generated/annotations/types/annotations_list_request_label.py +5 -0
- mirascope/api/_generated/annotations/types/annotations_list_response.py +21 -0
- mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item.py +50 -0
- mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item_label.py +5 -0
- mirascope/api/_generated/annotations/types/annotations_update_request_label.py +5 -0
- mirascope/api/_generated/annotations/types/annotations_update_response.py +48 -0
- mirascope/api/_generated/annotations/types/annotations_update_response_label.py +5 -0
- mirascope/api/_generated/api_keys/__init__.py +17 -0
- mirascope/api/_generated/api_keys/client.py +530 -0
- mirascope/api/_generated/api_keys/raw_client.py +1236 -0
- mirascope/api/_generated/api_keys/types/__init__.py +15 -0
- mirascope/api/_generated/api_keys/types/api_keys_create_response.py +28 -0
- mirascope/api/_generated/api_keys/types/api_keys_get_response.py +27 -0
- mirascope/api/_generated/api_keys/types/api_keys_list_all_for_org_response_item.py +40 -0
- mirascope/api/_generated/api_keys/types/api_keys_list_response_item.py +27 -0
- mirascope/api/_generated/client.py +211 -0
- mirascope/api/_generated/core/__init__.py +52 -0
- mirascope/api/_generated/core/api_error.py +23 -0
- mirascope/api/_generated/core/client_wrapper.py +46 -0
- mirascope/api/_generated/core/datetime_utils.py +28 -0
- mirascope/api/_generated/core/file.py +67 -0
- mirascope/api/_generated/core/force_multipart.py +16 -0
- mirascope/api/_generated/core/http_client.py +543 -0
- mirascope/api/_generated/core/http_response.py +55 -0
- mirascope/api/_generated/core/jsonable_encoder.py +100 -0
- mirascope/api/_generated/core/pydantic_utilities.py +255 -0
- mirascope/api/_generated/core/query_encoder.py +58 -0
- mirascope/api/_generated/core/remove_none_from_dict.py +11 -0
- mirascope/api/_generated/core/request_options.py +35 -0
- mirascope/api/_generated/core/serialization.py +276 -0
- mirascope/api/_generated/docs/__init__.py +4 -0
- mirascope/api/_generated/docs/client.py +91 -0
- mirascope/api/_generated/docs/raw_client.py +178 -0
- mirascope/api/_generated/environment.py +9 -0
- mirascope/api/_generated/environments/__init__.py +23 -0
- mirascope/api/_generated/environments/client.py +649 -0
- mirascope/api/_generated/environments/raw_client.py +1567 -0
- mirascope/api/_generated/environments/types/__init__.py +25 -0
- mirascope/api/_generated/environments/types/environments_create_response.py +24 -0
- mirascope/api/_generated/environments/types/environments_get_analytics_response.py +60 -0
- mirascope/api/_generated/environments/types/environments_get_analytics_response_top_functions_item.py +24 -0
- mirascope/api/_generated/environments/types/environments_get_analytics_response_top_models_item.py +22 -0
- mirascope/api/_generated/environments/types/environments_get_response.py +24 -0
- mirascope/api/_generated/environments/types/environments_list_response_item.py +24 -0
- mirascope/api/_generated/environments/types/environments_update_response.py +24 -0
- mirascope/api/_generated/errors/__init__.py +25 -0
- mirascope/api/_generated/errors/bad_request_error.py +14 -0
- mirascope/api/_generated/errors/conflict_error.py +14 -0
- mirascope/api/_generated/errors/forbidden_error.py +11 -0
- mirascope/api/_generated/errors/internal_server_error.py +10 -0
- mirascope/api/_generated/errors/not_found_error.py +11 -0
- mirascope/api/_generated/errors/payment_required_error.py +15 -0
- mirascope/api/_generated/errors/service_unavailable_error.py +14 -0
- mirascope/api/_generated/errors/too_many_requests_error.py +15 -0
- mirascope/api/_generated/errors/unauthorized_error.py +11 -0
- mirascope/api/_generated/functions/__init__.py +39 -0
- mirascope/api/_generated/functions/client.py +647 -0
- mirascope/api/_generated/functions/raw_client.py +1890 -0
- mirascope/api/_generated/functions/types/__init__.py +53 -0
- mirascope/api/_generated/functions/types/functions_create_request_dependencies_value.py +20 -0
- mirascope/api/_generated/functions/types/functions_create_response.py +37 -0
- mirascope/api/_generated/functions/types/functions_create_response_dependencies_value.py +20 -0
- mirascope/api/_generated/functions/types/functions_find_by_hash_response.py +39 -0
- mirascope/api/_generated/functions/types/functions_find_by_hash_response_dependencies_value.py +20 -0
- mirascope/api/_generated/functions/types/functions_get_by_env_response.py +53 -0
- mirascope/api/_generated/functions/types/functions_get_by_env_response_dependencies_value.py +22 -0
- mirascope/api/_generated/functions/types/functions_get_response.py +37 -0
- mirascope/api/_generated/functions/types/functions_get_response_dependencies_value.py +20 -0
- mirascope/api/_generated/functions/types/functions_list_by_env_response.py +25 -0
- mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item.py +56 -0
- mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item_dependencies_value.py +22 -0
- mirascope/api/_generated/functions/types/functions_list_response.py +21 -0
- mirascope/api/_generated/functions/types/functions_list_response_functions_item.py +41 -0
- mirascope/api/_generated/functions/types/functions_list_response_functions_item_dependencies_value.py +20 -0
- mirascope/api/_generated/health/__init__.py +7 -0
- mirascope/api/_generated/health/client.py +92 -0
- mirascope/api/_generated/health/raw_client.py +175 -0
- mirascope/api/_generated/health/types/__init__.py +8 -0
- mirascope/api/_generated/health/types/health_check_response.py +22 -0
- mirascope/api/_generated/health/types/health_check_response_status.py +5 -0
- mirascope/api/_generated/organization_invitations/__init__.py +33 -0
- mirascope/api/_generated/organization_invitations/client.py +546 -0
- mirascope/api/_generated/organization_invitations/raw_client.py +1519 -0
- mirascope/api/_generated/organization_invitations/types/__init__.py +53 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response.py +34 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response_role.py +7 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_create_request_role.py +7 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response.py +48 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_role.py +7 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_status.py +7 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response.py +48 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_role.py +7 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_status.py +7 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item.py +48 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_role.py +7 -0
- mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_status.py +7 -0
- mirascope/api/_generated/organization_memberships/__init__.py +19 -0
- mirascope/api/_generated/organization_memberships/client.py +302 -0
- mirascope/api/_generated/organization_memberships/raw_client.py +736 -0
- mirascope/api/_generated/organization_memberships/types/__init__.py +27 -0
- mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item.py +33 -0
- mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item_role.py +7 -0
- mirascope/api/_generated/organization_memberships/types/organization_memberships_update_request_role.py +7 -0
- mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response.py +31 -0
- mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response_role.py +7 -0
- mirascope/api/_generated/organizations/__init__.py +51 -0
- mirascope/api/_generated/organizations/client.py +869 -0
- mirascope/api/_generated/organizations/raw_client.py +2593 -0
- mirascope/api/_generated/organizations/types/__init__.py +71 -0
- mirascope/api/_generated/organizations/types/organizations_create_payment_intent_response.py +24 -0
- mirascope/api/_generated/organizations/types/organizations_create_response.py +26 -0
- mirascope/api/_generated/organizations/types/organizations_create_response_role.py +5 -0
- mirascope/api/_generated/organizations/types/organizations_get_response.py +26 -0
- mirascope/api/_generated/organizations/types/organizations_get_response_role.py +5 -0
- mirascope/api/_generated/organizations/types/organizations_list_response_item.py +26 -0
- mirascope/api/_generated/organizations/types/organizations_list_response_item_role.py +5 -0
- mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_request_target_plan.py +7 -0
- mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response.py +47 -0
- mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item.py +33 -0
- mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item_resource.py +7 -0
- mirascope/api/_generated/organizations/types/organizations_router_balance_response.py +24 -0
- mirascope/api/_generated/organizations/types/organizations_subscription_response.py +53 -0
- mirascope/api/_generated/organizations/types/organizations_subscription_response_current_plan.py +7 -0
- mirascope/api/_generated/organizations/types/organizations_subscription_response_payment_method.py +26 -0
- mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change.py +34 -0
- mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change_target_plan.py +7 -0
- mirascope/api/_generated/organizations/types/organizations_update_response.py +26 -0
- mirascope/api/_generated/organizations/types/organizations_update_response_role.py +5 -0
- mirascope/api/_generated/organizations/types/organizations_update_subscription_request_target_plan.py +7 -0
- mirascope/api/_generated/organizations/types/organizations_update_subscription_response.py +35 -0
- mirascope/api/_generated/project_memberships/__init__.py +25 -0
- mirascope/api/_generated/project_memberships/client.py +437 -0
- mirascope/api/_generated/project_memberships/raw_client.py +1039 -0
- mirascope/api/_generated/project_memberships/types/__init__.py +29 -0
- mirascope/api/_generated/project_memberships/types/project_memberships_create_request_role.py +7 -0
- mirascope/api/_generated/project_memberships/types/project_memberships_create_response.py +35 -0
- mirascope/api/_generated/project_memberships/types/project_memberships_create_response_role.py +7 -0
- mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item.py +33 -0
- mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item_role.py +7 -0
- mirascope/api/_generated/project_memberships/types/project_memberships_update_request_role.py +7 -0
- mirascope/api/_generated/project_memberships/types/project_memberships_update_response.py +35 -0
- mirascope/api/_generated/project_memberships/types/project_memberships_update_response_role.py +7 -0
- mirascope/api/_generated/projects/__init__.py +7 -0
- mirascope/api/_generated/projects/client.py +428 -0
- mirascope/api/_generated/projects/raw_client.py +1302 -0
- mirascope/api/_generated/projects/types/__init__.py +10 -0
- mirascope/api/_generated/projects/types/projects_create_response.py +25 -0
- mirascope/api/_generated/projects/types/projects_get_response.py +25 -0
- mirascope/api/_generated/projects/types/projects_list_response_item.py +25 -0
- mirascope/api/_generated/projects/types/projects_update_response.py +25 -0
- mirascope/api/_generated/reference.md +4915 -0
- mirascope/api/_generated/tags/__init__.py +19 -0
- mirascope/api/_generated/tags/client.py +504 -0
- mirascope/api/_generated/tags/raw_client.py +1288 -0
- mirascope/api/_generated/tags/types/__init__.py +17 -0
- mirascope/api/_generated/tags/types/tags_create_response.py +41 -0
- mirascope/api/_generated/tags/types/tags_get_response.py +41 -0
- mirascope/api/_generated/tags/types/tags_list_response.py +23 -0
- mirascope/api/_generated/tags/types/tags_list_response_tags_item.py +41 -0
- mirascope/api/_generated/tags/types/tags_update_response.py +41 -0
- mirascope/api/_generated/token_cost/__init__.py +7 -0
- mirascope/api/_generated/token_cost/client.py +160 -0
- mirascope/api/_generated/token_cost/raw_client.py +264 -0
- mirascope/api/_generated/token_cost/types/__init__.py +8 -0
- mirascope/api/_generated/token_cost/types/token_cost_calculate_request_usage.py +54 -0
- mirascope/api/_generated/token_cost/types/token_cost_calculate_response.py +52 -0
- mirascope/api/_generated/traces/__init__.py +97 -0
- mirascope/api/_generated/traces/client.py +1103 -0
- mirascope/api/_generated/traces/raw_client.py +2322 -0
- mirascope/api/_generated/traces/types/__init__.py +155 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item.py +29 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource.py +27 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item.py +23 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value.py +38 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_array_value.py +19 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value.py +22 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value_values_item.py +20 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item.py +29 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope.py +31 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item.py +23 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value.py +38 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_array_value.py +19 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value.py +22 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value_values_item.py +22 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item.py +48 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item.py +23 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value.py +38 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_array_value.py +19 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value.py +24 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value_values_item.py +22 -0
- mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_status.py +20 -0
- mirascope/api/_generated/traces/types/traces_create_response.py +24 -0
- mirascope/api/_generated/traces/types/traces_create_response_partial_success.py +22 -0
- mirascope/api/_generated/traces/types/traces_get_analytics_summary_response.py +60 -0
- mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_functions_item.py +24 -0
- mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_models_item.py +22 -0
- mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response.py +33 -0
- mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response_spans_item.py +88 -0
- mirascope/api/_generated/traces/types/traces_get_trace_detail_response.py +33 -0
- mirascope/api/_generated/traces/types/traces_get_trace_detail_response_spans_item.py +88 -0
- mirascope/api/_generated/traces/types/traces_list_by_function_hash_response.py +25 -0
- mirascope/api/_generated/traces/types/traces_list_by_function_hash_response_traces_item.py +44 -0
- mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item.py +26 -0
- mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item_operator.py +7 -0
- mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_by.py +7 -0
- mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_order.py +7 -0
- mirascope/api/_generated/traces/types/traces_search_by_env_response.py +26 -0
- mirascope/api/_generated/traces/types/traces_search_by_env_response_spans_item.py +50 -0
- mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item.py +26 -0
- mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item_operator.py +7 -0
- mirascope/api/_generated/traces/types/traces_search_request_sort_by.py +7 -0
- mirascope/api/_generated/traces/types/traces_search_request_sort_order.py +5 -0
- mirascope/api/_generated/traces/types/traces_search_response.py +26 -0
- mirascope/api/_generated/traces/types/traces_search_response_spans_item.py +50 -0
- mirascope/api/_generated/types/__init__.py +85 -0
- mirascope/api/_generated/types/already_exists_error.py +22 -0
- mirascope/api/_generated/types/already_exists_error_tag.py +5 -0
- mirascope/api/_generated/types/bad_request_error_body.py +50 -0
- mirascope/api/_generated/types/click_house_error.py +22 -0
- mirascope/api/_generated/types/database_error.py +22 -0
- mirascope/api/_generated/types/database_error_tag.py +5 -0
- mirascope/api/_generated/types/date.py +3 -0
- mirascope/api/_generated/types/http_api_decode_error.py +27 -0
- mirascope/api/_generated/types/http_api_decode_error_tag.py +5 -0
- mirascope/api/_generated/types/immutable_resource_error.py +22 -0
- mirascope/api/_generated/types/internal_server_error_body.py +49 -0
- mirascope/api/_generated/types/issue.py +38 -0
- mirascope/api/_generated/types/issue_tag.py +10 -0
- mirascope/api/_generated/types/not_found_error_body.py +22 -0
- mirascope/api/_generated/types/not_found_error_tag.py +5 -0
- mirascope/api/_generated/types/number_from_string.py +3 -0
- mirascope/api/_generated/types/permission_denied_error.py +22 -0
- mirascope/api/_generated/types/permission_denied_error_tag.py +5 -0
- mirascope/api/_generated/types/plan_limit_exceeded_error.py +32 -0
- mirascope/api/_generated/types/plan_limit_exceeded_error_tag.py +7 -0
- mirascope/api/_generated/types/pricing_unavailable_error.py +23 -0
- mirascope/api/_generated/types/property_key.py +7 -0
- mirascope/api/_generated/types/property_key_key.py +25 -0
- mirascope/api/_generated/types/property_key_key_tag.py +5 -0
- mirascope/api/_generated/types/rate_limit_error.py +31 -0
- mirascope/api/_generated/types/rate_limit_error_tag.py +5 -0
- mirascope/api/_generated/types/service_unavailable_error_body.py +24 -0
- mirascope/api/_generated/types/service_unavailable_error_tag.py +7 -0
- mirascope/api/_generated/types/stripe_error.py +20 -0
- mirascope/api/_generated/types/subscription_past_due_error.py +31 -0
- mirascope/api/_generated/types/subscription_past_due_error_tag.py +7 -0
- mirascope/api/_generated/types/unauthorized_error_body.py +21 -0
- mirascope/api/_generated/types/unauthorized_error_tag.py +5 -0
- mirascope/api/client.py +255 -0
- mirascope/api/settings.py +99 -0
- mirascope/llm/__init__.py +290 -15
- mirascope/llm/calls/__init__.py +17 -0
- mirascope/llm/calls/calls.py +341 -0
- mirascope/llm/calls/decorator.py +275 -0
- mirascope/llm/content/__init__.py +71 -0
- mirascope/llm/content/audio.py +173 -0
- mirascope/llm/content/document.py +94 -0
- mirascope/llm/content/image.py +206 -0
- mirascope/llm/content/text.py +47 -0
- mirascope/llm/content/thought.py +58 -0
- mirascope/llm/content/tool_call.py +69 -0
- mirascope/llm/content/tool_output.py +43 -0
- mirascope/llm/context/__init__.py +6 -0
- mirascope/llm/context/_utils.py +41 -0
- mirascope/llm/context/context.py +24 -0
- mirascope/llm/exceptions.py +360 -0
- mirascope/llm/formatting/__init__.py +39 -0
- mirascope/llm/formatting/format.py +293 -0
- mirascope/llm/formatting/from_call_args.py +30 -0
- mirascope/llm/formatting/output_parser.py +178 -0
- mirascope/llm/formatting/partial.py +131 -0
- mirascope/llm/formatting/primitives.py +192 -0
- mirascope/llm/formatting/types.py +66 -0
- mirascope/llm/mcp/__init__.py +5 -0
- mirascope/llm/mcp/mcp_client.py +130 -0
- mirascope/llm/messages/__init__.py +35 -0
- mirascope/llm/messages/_utils.py +34 -0
- mirascope/llm/messages/message.py +190 -0
- mirascope/llm/models/__init__.py +21 -0
- mirascope/llm/models/models.py +1419 -0
- mirascope/llm/models/params.py +72 -0
- mirascope/llm/models/thinking_config.py +61 -0
- mirascope/llm/prompts/__init__.py +34 -0
- mirascope/llm/prompts/_utils.py +31 -0
- mirascope/llm/prompts/decorator.py +226 -0
- mirascope/llm/prompts/prompts.py +487 -0
- mirascope/llm/prompts/protocols.py +65 -0
- mirascope/llm/providers/__init__.py +62 -0
- mirascope/llm/providers/anthropic/__init__.py +11 -0
- mirascope/llm/providers/anthropic/_utils/__init__.py +27 -0
- mirascope/llm/providers/anthropic/_utils/beta_decode.py +282 -0
- mirascope/llm/providers/anthropic/_utils/beta_encode.py +266 -0
- mirascope/llm/providers/anthropic/_utils/decode.py +288 -0
- mirascope/llm/providers/anthropic/_utils/encode.py +418 -0
- mirascope/llm/providers/anthropic/_utils/errors.py +46 -0
- mirascope/llm/providers/anthropic/beta_provider.py +374 -0
- mirascope/llm/providers/anthropic/model_id.py +23 -0
- mirascope/llm/providers/anthropic/model_info.py +87 -0
- mirascope/llm/providers/anthropic/provider.py +479 -0
- mirascope/llm/providers/base/__init__.py +14 -0
- mirascope/llm/providers/base/_utils.py +253 -0
- mirascope/llm/providers/base/base_provider.py +1579 -0
- mirascope/llm/providers/base/kwargs.py +12 -0
- mirascope/llm/providers/google/__init__.py +6 -0
- mirascope/llm/providers/google/_utils/__init__.py +17 -0
- mirascope/llm/providers/google/_utils/decode.py +307 -0
- mirascope/llm/providers/google/_utils/encode.py +401 -0
- mirascope/llm/providers/google/_utils/errors.py +50 -0
- mirascope/llm/providers/google/message.py +7 -0
- mirascope/llm/providers/google/model_id.py +22 -0
- mirascope/llm/providers/google/model_info.py +63 -0
- mirascope/llm/providers/google/provider.py +492 -0
- mirascope/llm/providers/mirascope/__init__.py +5 -0
- mirascope/llm/providers/mirascope/_utils.py +73 -0
- mirascope/llm/providers/mirascope/provider.py +349 -0
- mirascope/llm/providers/mlx/__init__.py +9 -0
- mirascope/llm/providers/mlx/_utils.py +141 -0
- mirascope/llm/providers/mlx/encoding/__init__.py +8 -0
- mirascope/llm/providers/mlx/encoding/base.py +72 -0
- mirascope/llm/providers/mlx/encoding/transformers.py +150 -0
- mirascope/llm/providers/mlx/mlx.py +254 -0
- mirascope/llm/providers/mlx/model_id.py +17 -0
- mirascope/llm/providers/mlx/provider.py +452 -0
- mirascope/llm/providers/model_id.py +16 -0
- mirascope/llm/providers/ollama/__init__.py +7 -0
- mirascope/llm/providers/ollama/provider.py +71 -0
- mirascope/llm/providers/openai/__init__.py +15 -0
- mirascope/llm/providers/openai/_utils/__init__.py +5 -0
- mirascope/llm/providers/openai/_utils/errors.py +46 -0
- mirascope/llm/providers/openai/completions/__init__.py +7 -0
- mirascope/llm/providers/openai/completions/_utils/__init__.py +15 -0
- mirascope/llm/providers/openai/completions/_utils/decode.py +252 -0
- mirascope/llm/providers/openai/completions/_utils/encode.py +376 -0
- mirascope/llm/providers/openai/completions/base_provider.py +542 -0
- mirascope/llm/providers/openai/completions/provider.py +22 -0
- mirascope/llm/providers/openai/model_id.py +31 -0
- mirascope/llm/providers/openai/model_info.py +303 -0
- mirascope/llm/providers/openai/provider.py +441 -0
- mirascope/llm/providers/openai/responses/__init__.py +5 -0
- mirascope/llm/providers/openai/responses/_utils/__init__.py +15 -0
- mirascope/llm/providers/openai/responses/_utils/decode.py +260 -0
- mirascope/llm/providers/openai/responses/_utils/encode.py +384 -0
- mirascope/llm/providers/openai/responses/provider.py +513 -0
- mirascope/llm/providers/provider_id.py +24 -0
- mirascope/llm/providers/provider_registry.py +299 -0
- mirascope/llm/providers/together/__init__.py +7 -0
- mirascope/llm/providers/together/provider.py +40 -0
- mirascope/llm/responses/__init__.py +65 -0
- mirascope/llm/responses/_utils.py +146 -0
- mirascope/llm/responses/base_response.py +103 -0
- mirascope/llm/responses/base_stream_response.py +820 -0
- mirascope/llm/responses/finish_reason.py +28 -0
- mirascope/llm/responses/response.py +366 -0
- mirascope/llm/responses/root_response.py +248 -0
- mirascope/llm/responses/stream_response.py +581 -0
- mirascope/llm/responses/streams.py +363 -0
- mirascope/llm/responses/usage.py +95 -0
- mirascope/llm/tools/__init__.py +47 -0
- mirascope/llm/tools/_utils.py +34 -0
- mirascope/llm/tools/decorator.py +184 -0
- mirascope/llm/tools/protocols.py +96 -0
- mirascope/llm/tools/tool_schema.py +314 -0
- mirascope/llm/tools/toolkit.py +160 -0
- mirascope/llm/tools/tools.py +263 -0
- mirascope/llm/types/__init__.py +22 -0
- mirascope/llm/types/dataclass.py +9 -0
- mirascope/llm/types/jsonable.py +44 -0
- mirascope/llm/types/type_vars.py +19 -0
- mirascope/ops/__init__.py +111 -0
- mirascope/ops/_internal/__init__.py +5 -0
- mirascope/ops/_internal/closure.py +1169 -0
- mirascope/ops/_internal/configuration.py +177 -0
- mirascope/ops/_internal/context.py +76 -0
- mirascope/ops/_internal/exporters/__init__.py +26 -0
- mirascope/ops/_internal/exporters/exporters.py +395 -0
- mirascope/ops/_internal/exporters/processors.py +104 -0
- mirascope/ops/_internal/exporters/types.py +165 -0
- mirascope/ops/_internal/exporters/utils.py +29 -0
- mirascope/ops/_internal/instrumentation/__init__.py +8 -0
- mirascope/ops/_internal/instrumentation/llm/__init__.py +8 -0
- mirascope/ops/_internal/instrumentation/llm/common.py +530 -0
- mirascope/ops/_internal/instrumentation/llm/cost.py +190 -0
- mirascope/ops/_internal/instrumentation/llm/encode.py +238 -0
- mirascope/ops/_internal/instrumentation/llm/gen_ai_types/__init__.py +38 -0
- mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_input_messages.py +31 -0
- mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_output_messages.py +38 -0
- mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_system_instructions.py +18 -0
- mirascope/ops/_internal/instrumentation/llm/gen_ai_types/shared.py +100 -0
- mirascope/ops/_internal/instrumentation/llm/llm.py +161 -0
- mirascope/ops/_internal/instrumentation/llm/model.py +1798 -0
- mirascope/ops/_internal/instrumentation/llm/response.py +521 -0
- mirascope/ops/_internal/instrumentation/llm/serialize.py +300 -0
- mirascope/ops/_internal/propagation.py +198 -0
- mirascope/ops/_internal/protocols.py +133 -0
- mirascope/ops/_internal/session.py +139 -0
- mirascope/ops/_internal/spans.py +232 -0
- mirascope/ops/_internal/traced_calls.py +375 -0
- mirascope/ops/_internal/traced_functions.py +523 -0
- mirascope/ops/_internal/tracing.py +353 -0
- mirascope/ops/_internal/types.py +13 -0
- mirascope/ops/_internal/utils.py +123 -0
- mirascope/ops/_internal/versioned_calls.py +512 -0
- mirascope/ops/_internal/versioned_functions.py +357 -0
- mirascope/ops/_internal/versioning.py +303 -0
- mirascope/ops/exceptions.py +21 -0
- mirascope-2.0.0.dist-info/METADATA +203 -0
- mirascope-2.0.0.dist-info/RECORD +423 -0
- {mirascope-1.25.6.dist-info → mirascope-2.0.0.dist-info}/WHEEL +1 -1
- {mirascope-1.25.6.dist-info → mirascope-2.0.0.dist-info}/licenses/LICENSE +1 -1
- mirascope/beta/__init__.py +0 -3
- mirascope/beta/openai/__init__.py +0 -17
- mirascope/beta/openai/realtime/__init__.py +0 -13
- mirascope/beta/openai/realtime/_utils/__init__.py +0 -3
- mirascope/beta/openai/realtime/_utils/_audio.py +0 -74
- mirascope/beta/openai/realtime/_utils/_protocols.py +0 -50
- mirascope/beta/openai/realtime/realtime.py +0 -500
- mirascope/beta/openai/realtime/recording.py +0 -98
- mirascope/beta/openai/realtime/tool.py +0 -113
- mirascope/beta/rag/__init__.py +0 -24
- mirascope/beta/rag/base/__init__.py +0 -22
- mirascope/beta/rag/base/chunkers/__init__.py +0 -2
- mirascope/beta/rag/base/chunkers/base_chunker.py +0 -37
- mirascope/beta/rag/base/chunkers/text_chunker.py +0 -33
- mirascope/beta/rag/base/config.py +0 -8
- mirascope/beta/rag/base/document.py +0 -11
- mirascope/beta/rag/base/embedders.py +0 -35
- mirascope/beta/rag/base/embedding_params.py +0 -18
- mirascope/beta/rag/base/embedding_response.py +0 -30
- mirascope/beta/rag/base/query_results.py +0 -7
- mirascope/beta/rag/base/vectorstore_params.py +0 -18
- mirascope/beta/rag/base/vectorstores.py +0 -37
- mirascope/beta/rag/chroma/__init__.py +0 -11
- mirascope/beta/rag/chroma/types.py +0 -62
- mirascope/beta/rag/chroma/vectorstores.py +0 -121
- mirascope/beta/rag/cohere/__init__.py +0 -11
- mirascope/beta/rag/cohere/embedders.py +0 -87
- mirascope/beta/rag/cohere/embedding_params.py +0 -29
- mirascope/beta/rag/cohere/embedding_response.py +0 -29
- mirascope/beta/rag/cohere/py.typed +0 -0
- mirascope/beta/rag/openai/__init__.py +0 -11
- mirascope/beta/rag/openai/embedders.py +0 -144
- mirascope/beta/rag/openai/embedding_params.py +0 -18
- mirascope/beta/rag/openai/embedding_response.py +0 -14
- mirascope/beta/rag/openai/py.typed +0 -0
- mirascope/beta/rag/pinecone/__init__.py +0 -19
- mirascope/beta/rag/pinecone/types.py +0 -143
- mirascope/beta/rag/pinecone/vectorstores.py +0 -148
- mirascope/beta/rag/weaviate/__init__.py +0 -6
- mirascope/beta/rag/weaviate/types.py +0 -92
- mirascope/beta/rag/weaviate/vectorstores.py +0 -103
- mirascope/core/__init__.py +0 -109
- mirascope/core/anthropic/__init__.py +0 -31
- mirascope/core/anthropic/_call.py +0 -67
- mirascope/core/anthropic/_call_kwargs.py +0 -13
- mirascope/core/anthropic/_thinking.py +0 -70
- mirascope/core/anthropic/_utils/__init__.py +0 -16
- mirascope/core/anthropic/_utils/_convert_common_call_params.py +0 -25
- mirascope/core/anthropic/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -21
- mirascope/core/anthropic/_utils/_convert_message_params.py +0 -102
- mirascope/core/anthropic/_utils/_get_json_output.py +0 -31
- mirascope/core/anthropic/_utils/_handle_stream.py +0 -113
- mirascope/core/anthropic/_utils/_message_param_converter.py +0 -142
- mirascope/core/anthropic/_utils/_setup_call.py +0 -146
- mirascope/core/anthropic/call_params.py +0 -44
- mirascope/core/anthropic/call_response.py +0 -226
- mirascope/core/anthropic/call_response_chunk.py +0 -152
- mirascope/core/anthropic/dynamic_config.py +0 -40
- mirascope/core/anthropic/py.typed +0 -0
- mirascope/core/anthropic/stream.py +0 -204
- mirascope/core/anthropic/tool.py +0 -101
- mirascope/core/azure/__init__.py +0 -31
- mirascope/core/azure/_call.py +0 -67
- mirascope/core/azure/_call_kwargs.py +0 -13
- mirascope/core/azure/_utils/__init__.py +0 -14
- mirascope/core/azure/_utils/_convert_common_call_params.py +0 -26
- mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -21
- mirascope/core/azure/_utils/_convert_message_params.py +0 -121
- mirascope/core/azure/_utils/_get_credential.py +0 -33
- mirascope/core/azure/_utils/_get_json_output.py +0 -27
- mirascope/core/azure/_utils/_handle_stream.py +0 -130
- mirascope/core/azure/_utils/_message_param_converter.py +0 -117
- mirascope/core/azure/_utils/_setup_call.py +0 -183
- mirascope/core/azure/call_params.py +0 -59
- mirascope/core/azure/call_response.py +0 -215
- mirascope/core/azure/call_response_chunk.py +0 -105
- mirascope/core/azure/dynamic_config.py +0 -30
- mirascope/core/azure/py.typed +0 -0
- mirascope/core/azure/stream.py +0 -147
- mirascope/core/azure/tool.py +0 -93
- mirascope/core/base/__init__.py +0 -86
- mirascope/core/base/_call_factory.py +0 -256
- mirascope/core/base/_create.py +0 -253
- mirascope/core/base/_extract.py +0 -175
- mirascope/core/base/_extract_with_tools.py +0 -189
- mirascope/core/base/_partial.py +0 -95
- mirascope/core/base/_utils/__init__.py +0 -92
- mirascope/core/base/_utils/_base_message_param_converter.py +0 -22
- mirascope/core/base/_utils/_base_type.py +0 -26
- mirascope/core/base/_utils/_convert_base_model_to_base_tool.py +0 -48
- mirascope/core/base/_utils/_convert_base_type_to_base_tool.py +0 -24
- mirascope/core/base/_utils/_convert_function_to_base_tool.py +0 -139
- mirascope/core/base/_utils/_convert_messages_to_message_params.py +0 -178
- mirascope/core/base/_utils/_convert_provider_finish_reason_to_finish_reason.py +0 -20
- mirascope/core/base/_utils/_default_tool_docstring.py +0 -6
- mirascope/core/base/_utils/_extract_tool_return.py +0 -42
- mirascope/core/base/_utils/_fn_is_async.py +0 -24
- mirascope/core/base/_utils/_format_template.py +0 -32
- mirascope/core/base/_utils/_get_audio_type.py +0 -18
- mirascope/core/base/_utils/_get_common_usage.py +0 -20
- mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py +0 -137
- mirascope/core/base/_utils/_get_document_type.py +0 -7
- mirascope/core/base/_utils/_get_dynamic_configuration.py +0 -69
- mirascope/core/base/_utils/_get_fields_from_call_args.py +0 -34
- mirascope/core/base/_utils/_get_fn_args.py +0 -23
- mirascope/core/base/_utils/_get_image_dimensions.py +0 -39
- mirascope/core/base/_utils/_get_image_type.py +0 -26
- mirascope/core/base/_utils/_get_metadata.py +0 -17
- mirascope/core/base/_utils/_get_possible_user_message_param.py +0 -21
- mirascope/core/base/_utils/_get_prompt_template.py +0 -28
- mirascope/core/base/_utils/_get_template_values.py +0 -51
- mirascope/core/base/_utils/_get_template_variables.py +0 -38
- mirascope/core/base/_utils/_get_unsupported_tool_config_keys.py +0 -10
- mirascope/core/base/_utils/_is_prompt_template.py +0 -24
- mirascope/core/base/_utils/_json_mode_content.py +0 -17
- mirascope/core/base/_utils/_messages_decorator.py +0 -121
- mirascope/core/base/_utils/_parse_content_template.py +0 -323
- mirascope/core/base/_utils/_parse_prompt_messages.py +0 -63
- mirascope/core/base/_utils/_pil_image_to_bytes.py +0 -13
- mirascope/core/base/_utils/_protocols.py +0 -901
- mirascope/core/base/_utils/_setup_call.py +0 -79
- mirascope/core/base/_utils/_setup_extract_tool.py +0 -30
- mirascope/core/base/call_kwargs.py +0 -13
- mirascope/core/base/call_params.py +0 -36
- mirascope/core/base/call_response.py +0 -338
- mirascope/core/base/call_response_chunk.py +0 -130
- mirascope/core/base/dynamic_config.py +0 -82
- mirascope/core/base/from_call_args.py +0 -30
- mirascope/core/base/merge_decorators.py +0 -59
- mirascope/core/base/message_param.py +0 -175
- mirascope/core/base/messages.py +0 -116
- mirascope/core/base/metadata.py +0 -13
- mirascope/core/base/prompt.py +0 -497
- mirascope/core/base/response_model_config_dict.py +0 -9
- mirascope/core/base/stream.py +0 -479
- mirascope/core/base/stream_config.py +0 -11
- mirascope/core/base/structured_stream.py +0 -296
- mirascope/core/base/tool.py +0 -214
- mirascope/core/base/toolkit.py +0 -176
- mirascope/core/base/types.py +0 -344
- mirascope/core/bedrock/__init__.py +0 -34
- mirascope/core/bedrock/_call.py +0 -68
- mirascope/core/bedrock/_call_kwargs.py +0 -12
- mirascope/core/bedrock/_types.py +0 -104
- mirascope/core/bedrock/_utils/__init__.py +0 -14
- mirascope/core/bedrock/_utils/_convert_common_call_params.py +0 -39
- mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -23
- mirascope/core/bedrock/_utils/_convert_message_params.py +0 -111
- mirascope/core/bedrock/_utils/_get_json_output.py +0 -30
- mirascope/core/bedrock/_utils/_handle_stream.py +0 -104
- mirascope/core/bedrock/_utils/_message_param_converter.py +0 -172
- mirascope/core/bedrock/_utils/_setup_call.py +0 -258
- mirascope/core/bedrock/call_params.py +0 -38
- mirascope/core/bedrock/call_response.py +0 -248
- mirascope/core/bedrock/call_response_chunk.py +0 -111
- mirascope/core/bedrock/dynamic_config.py +0 -37
- mirascope/core/bedrock/py.typed +0 -0
- mirascope/core/bedrock/stream.py +0 -154
- mirascope/core/bedrock/tool.py +0 -100
- mirascope/core/cohere/__init__.py +0 -30
- mirascope/core/cohere/_call.py +0 -67
- mirascope/core/cohere/_call_kwargs.py +0 -11
- mirascope/core/cohere/_types.py +0 -20
- mirascope/core/cohere/_utils/__init__.py +0 -14
- mirascope/core/cohere/_utils/_convert_common_call_params.py +0 -26
- mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -24
- mirascope/core/cohere/_utils/_convert_message_params.py +0 -32
- mirascope/core/cohere/_utils/_get_json_output.py +0 -30
- mirascope/core/cohere/_utils/_handle_stream.py +0 -35
- mirascope/core/cohere/_utils/_message_param_converter.py +0 -54
- mirascope/core/cohere/_utils/_setup_call.py +0 -150
- mirascope/core/cohere/call_params.py +0 -62
- mirascope/core/cohere/call_response.py +0 -205
- mirascope/core/cohere/call_response_chunk.py +0 -125
- mirascope/core/cohere/dynamic_config.py +0 -32
- mirascope/core/cohere/py.typed +0 -0
- mirascope/core/cohere/stream.py +0 -113
- mirascope/core/cohere/tool.py +0 -93
- mirascope/core/costs/__init__.py +0 -5
- mirascope/core/costs/_anthropic_calculate_cost.py +0 -219
- mirascope/core/costs/_azure_calculate_cost.py +0 -11
- mirascope/core/costs/_bedrock_calculate_cost.py +0 -15
- mirascope/core/costs/_cohere_calculate_cost.py +0 -44
- mirascope/core/costs/_gemini_calculate_cost.py +0 -67
- mirascope/core/costs/_google_calculate_cost.py +0 -427
- mirascope/core/costs/_groq_calculate_cost.py +0 -156
- mirascope/core/costs/_litellm_calculate_cost.py +0 -11
- mirascope/core/costs/_mistral_calculate_cost.py +0 -64
- mirascope/core/costs/_openai_calculate_cost.py +0 -416
- mirascope/core/costs/_vertex_calculate_cost.py +0 -67
- mirascope/core/costs/_xai_calculate_cost.py +0 -104
- mirascope/core/costs/calculate_cost.py +0 -86
- mirascope/core/gemini/__init__.py +0 -40
- mirascope/core/gemini/_call.py +0 -67
- mirascope/core/gemini/_call_kwargs.py +0 -12
- mirascope/core/gemini/_utils/__init__.py +0 -14
- mirascope/core/gemini/_utils/_convert_common_call_params.py +0 -39
- mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -23
- mirascope/core/gemini/_utils/_convert_message_params.py +0 -156
- mirascope/core/gemini/_utils/_get_json_output.py +0 -35
- mirascope/core/gemini/_utils/_handle_stream.py +0 -33
- mirascope/core/gemini/_utils/_message_param_converter.py +0 -209
- mirascope/core/gemini/_utils/_setup_call.py +0 -149
- mirascope/core/gemini/call_params.py +0 -52
- mirascope/core/gemini/call_response.py +0 -216
- mirascope/core/gemini/call_response_chunk.py +0 -100
- mirascope/core/gemini/dynamic_config.py +0 -26
- mirascope/core/gemini/stream.py +0 -120
- mirascope/core/gemini/tool.py +0 -104
- mirascope/core/google/__init__.py +0 -29
- mirascope/core/google/_call.py +0 -67
- mirascope/core/google/_call_kwargs.py +0 -13
- mirascope/core/google/_utils/__init__.py +0 -14
- mirascope/core/google/_utils/_convert_common_call_params.py +0 -38
- mirascope/core/google/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -27
- mirascope/core/google/_utils/_convert_message_params.py +0 -297
- mirascope/core/google/_utils/_get_json_output.py +0 -37
- mirascope/core/google/_utils/_handle_stream.py +0 -58
- mirascope/core/google/_utils/_message_param_converter.py +0 -200
- mirascope/core/google/_utils/_setup_call.py +0 -201
- mirascope/core/google/_utils/_validate_media_type.py +0 -58
- mirascope/core/google/call_params.py +0 -22
- mirascope/core/google/call_response.py +0 -255
- mirascope/core/google/call_response_chunk.py +0 -135
- mirascope/core/google/dynamic_config.py +0 -26
- mirascope/core/google/stream.py +0 -199
- mirascope/core/google/tool.py +0 -146
- mirascope/core/groq/__init__.py +0 -30
- mirascope/core/groq/_call.py +0 -67
- mirascope/core/groq/_call_kwargs.py +0 -13
- mirascope/core/groq/_utils/__init__.py +0 -14
- mirascope/core/groq/_utils/_convert_common_call_params.py +0 -26
- mirascope/core/groq/_utils/_convert_message_params.py +0 -112
- mirascope/core/groq/_utils/_get_json_output.py +0 -27
- mirascope/core/groq/_utils/_handle_stream.py +0 -123
- mirascope/core/groq/_utils/_message_param_converter.py +0 -89
- mirascope/core/groq/_utils/_setup_call.py +0 -132
- mirascope/core/groq/call_params.py +0 -52
- mirascope/core/groq/call_response.py +0 -213
- mirascope/core/groq/call_response_chunk.py +0 -104
- mirascope/core/groq/dynamic_config.py +0 -29
- mirascope/core/groq/py.typed +0 -0
- mirascope/core/groq/stream.py +0 -135
- mirascope/core/groq/tool.py +0 -80
- mirascope/core/litellm/__init__.py +0 -28
- mirascope/core/litellm/_call.py +0 -67
- mirascope/core/litellm/_utils/__init__.py +0 -5
- mirascope/core/litellm/_utils/_setup_call.py +0 -109
- mirascope/core/litellm/call_params.py +0 -10
- mirascope/core/litellm/call_response.py +0 -24
- mirascope/core/litellm/call_response_chunk.py +0 -14
- mirascope/core/litellm/dynamic_config.py +0 -8
- mirascope/core/litellm/py.typed +0 -0
- mirascope/core/litellm/stream.py +0 -86
- mirascope/core/litellm/tool.py +0 -13
- mirascope/core/mistral/__init__.py +0 -36
- mirascope/core/mistral/_call.py +0 -65
- mirascope/core/mistral/_call_kwargs.py +0 -19
- mirascope/core/mistral/_utils/__init__.py +0 -14
- mirascope/core/mistral/_utils/_convert_common_call_params.py +0 -24
- mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -22
- mirascope/core/mistral/_utils/_convert_message_params.py +0 -122
- mirascope/core/mistral/_utils/_get_json_output.py +0 -34
- mirascope/core/mistral/_utils/_handle_stream.py +0 -139
- mirascope/core/mistral/_utils/_message_param_converter.py +0 -176
- mirascope/core/mistral/_utils/_setup_call.py +0 -164
- mirascope/core/mistral/call_params.py +0 -36
- mirascope/core/mistral/call_response.py +0 -205
- mirascope/core/mistral/call_response_chunk.py +0 -105
- mirascope/core/mistral/dynamic_config.py +0 -33
- mirascope/core/mistral/py.typed +0 -0
- mirascope/core/mistral/stream.py +0 -120
- mirascope/core/mistral/tool.py +0 -81
- mirascope/core/openai/__init__.py +0 -31
- mirascope/core/openai/_call.py +0 -67
- mirascope/core/openai/_call_kwargs.py +0 -13
- mirascope/core/openai/_utils/__init__.py +0 -14
- mirascope/core/openai/_utils/_convert_common_call_params.py +0 -26
- mirascope/core/openai/_utils/_convert_message_params.py +0 -148
- mirascope/core/openai/_utils/_get_json_output.py +0 -31
- mirascope/core/openai/_utils/_handle_stream.py +0 -138
- mirascope/core/openai/_utils/_message_param_converter.py +0 -105
- mirascope/core/openai/_utils/_setup_call.py +0 -155
- mirascope/core/openai/call_params.py +0 -92
- mirascope/core/openai/call_response.py +0 -273
- mirascope/core/openai/call_response_chunk.py +0 -139
- mirascope/core/openai/dynamic_config.py +0 -34
- mirascope/core/openai/py.typed +0 -0
- mirascope/core/openai/stream.py +0 -185
- mirascope/core/openai/tool.py +0 -101
- mirascope/core/py.typed +0 -0
- mirascope/core/vertex/__init__.py +0 -45
- mirascope/core/vertex/_call.py +0 -62
- mirascope/core/vertex/_call_kwargs.py +0 -12
- mirascope/core/vertex/_utils/__init__.py +0 -14
- mirascope/core/vertex/_utils/_convert_common_call_params.py +0 -37
- mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -23
- mirascope/core/vertex/_utils/_convert_message_params.py +0 -171
- mirascope/core/vertex/_utils/_get_json_output.py +0 -36
- mirascope/core/vertex/_utils/_handle_stream.py +0 -33
- mirascope/core/vertex/_utils/_message_param_converter.py +0 -133
- mirascope/core/vertex/_utils/_setup_call.py +0 -160
- mirascope/core/vertex/call_params.py +0 -24
- mirascope/core/vertex/call_response.py +0 -206
- mirascope/core/vertex/call_response_chunk.py +0 -99
- mirascope/core/vertex/dynamic_config.py +0 -28
- mirascope/core/vertex/stream.py +0 -119
- mirascope/core/vertex/tool.py +0 -101
- mirascope/core/xai/__init__.py +0 -28
- mirascope/core/xai/_call.py +0 -67
- mirascope/core/xai/_utils/__init__.py +0 -5
- mirascope/core/xai/_utils/_setup_call.py +0 -113
- mirascope/core/xai/call_params.py +0 -10
- mirascope/core/xai/call_response.py +0 -16
- mirascope/core/xai/call_response_chunk.py +0 -14
- mirascope/core/xai/dynamic_config.py +0 -8
- mirascope/core/xai/py.typed +0 -0
- mirascope/core/xai/stream.py +0 -57
- mirascope/core/xai/tool.py +0 -13
- mirascope/experimental/graphs/__init__.py +0 -5
- mirascope/experimental/graphs/finite_state_machine.py +0 -714
- mirascope/integrations/__init__.py +0 -16
- mirascope/integrations/_middleware_factory.py +0 -403
- mirascope/integrations/langfuse/__init__.py +0 -3
- mirascope/integrations/langfuse/_utils.py +0 -114
- mirascope/integrations/langfuse/_with_langfuse.py +0 -70
- mirascope/integrations/logfire/__init__.py +0 -3
- mirascope/integrations/logfire/_utils.py +0 -225
- mirascope/integrations/logfire/_with_logfire.py +0 -63
- mirascope/integrations/otel/__init__.py +0 -10
- mirascope/integrations/otel/_utils.py +0 -270
- mirascope/integrations/otel/_with_hyperdx.py +0 -60
- mirascope/integrations/otel/_with_otel.py +0 -59
- mirascope/integrations/tenacity.py +0 -14
- mirascope/llm/_call.py +0 -401
- mirascope/llm/_context.py +0 -384
- mirascope/llm/_override.py +0 -3639
- mirascope/llm/_protocols.py +0 -500
- mirascope/llm/_response_metaclass.py +0 -31
- mirascope/llm/call_response.py +0 -158
- mirascope/llm/call_response_chunk.py +0 -66
- mirascope/llm/stream.py +0 -162
- mirascope/llm/tool.py +0 -64
- mirascope/mcp/__init__.py +0 -7
- mirascope/mcp/_utils.py +0 -288
- mirascope/mcp/client.py +0 -167
- mirascope/mcp/server.py +0 -356
- mirascope/mcp/tools.py +0 -110
- mirascope/py.typed +0 -0
- mirascope/retries/__init__.py +0 -11
- mirascope/retries/fallback.py +0 -131
- mirascope/retries/tenacity.py +0 -50
- mirascope/tools/__init__.py +0 -37
- mirascope/tools/base.py +0 -98
- mirascope/tools/system/__init__.py +0 -0
- mirascope/tools/system/_docker_operation.py +0 -166
- mirascope/tools/system/_file_system.py +0 -267
- mirascope/tools/web/__init__.py +0 -0
- mirascope/tools/web/_duckduckgo.py +0 -111
- mirascope/tools/web/_httpx.py +0 -125
- mirascope/tools/web/_parse_url_content.py +0 -94
- mirascope/tools/web/_requests.py +0 -54
- mirascope/v0/__init__.py +0 -43
- mirascope/v0/anthropic.py +0 -54
- mirascope/v0/base/__init__.py +0 -12
- mirascope/v0/base/calls.py +0 -118
- mirascope/v0/base/extractors.py +0 -122
- mirascope/v0/base/ops_utils.py +0 -207
- mirascope/v0/base/prompts.py +0 -48
- mirascope/v0/base/types.py +0 -14
- mirascope/v0/base/utils.py +0 -21
- mirascope/v0/openai.py +0 -54
- mirascope-1.25.6.dist-info/METADATA +0 -169
- mirascope-1.25.6.dist-info/RECORD +0 -378
mirascope/v0/openai.py
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
"""OpenAI modules for the v0 look-alike implementation."""
|
|
2
|
-
|
|
3
|
-
from typing import ClassVar, Generic, TypeVar
|
|
4
|
-
|
|
5
|
-
from openai.types.chat import ChatCompletionToolChoiceOptionParam
|
|
6
|
-
from openai.types.chat.completion_create_params import ResponseFormat
|
|
7
|
-
from pydantic import ConfigDict
|
|
8
|
-
|
|
9
|
-
from ..core.openai import (
|
|
10
|
-
OpenAICallResponse,
|
|
11
|
-
OpenAICallResponseChunk,
|
|
12
|
-
OpenAITool,
|
|
13
|
-
openai_call,
|
|
14
|
-
)
|
|
15
|
-
from .base import BaseCall, BaseCallParams, BaseExtractor, ExtractedType
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
class OpenAICallParams(BaseCallParams):
|
|
19
|
-
"""The parameters to use when calling the OpenAI API."""
|
|
20
|
-
|
|
21
|
-
model: str
|
|
22
|
-
frequency_penalty: float | None = None
|
|
23
|
-
logit_bias: dict[str, int] | None = None
|
|
24
|
-
logprobs: bool | None = None
|
|
25
|
-
max_tokens: int | None = None
|
|
26
|
-
n: int | None = None
|
|
27
|
-
presence_penalty: float | None = None
|
|
28
|
-
response_format: ResponseFormat | None = None
|
|
29
|
-
seed: int | None = None
|
|
30
|
-
stop: str | list[str] | None = None
|
|
31
|
-
temperature: float | None = None
|
|
32
|
-
tool_choice: ChatCompletionToolChoiceOptionParam | None = None
|
|
33
|
-
top_logprobs: int | None = None
|
|
34
|
-
top_p: float | None = None
|
|
35
|
-
user: str | None = None
|
|
36
|
-
|
|
37
|
-
model_config = ConfigDict(arbitrary_types_allowed=True, extra="allow")
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
class OpenAICall(BaseCall[OpenAICallResponse, OpenAICallResponseChunk, OpenAITool]):
|
|
41
|
-
call_params: ClassVar[BaseCallParams] = OpenAICallParams(model="gpt-4o-mini")
|
|
42
|
-
|
|
43
|
-
_decorator = openai_call
|
|
44
|
-
_provider = "openai"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
T = TypeVar("T", bound=ExtractedType)
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
class OpenAIExtractor(BaseExtractor[T], Generic[T]):
|
|
51
|
-
call_params: ClassVar[BaseCallParams] = OpenAICallParams(model="gpt-4o-mini")
|
|
52
|
-
|
|
53
|
-
_decorator = openai_call
|
|
54
|
-
_provider = "openai"
|
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: mirascope
|
|
3
|
-
Version: 1.25.6
|
|
4
|
-
Summary: LLM abstractions that aren't obstructions
|
|
5
|
-
Project-URL: Homepage, https://mirascope.com
|
|
6
|
-
Project-URL: Documentation, https://mirascope.com/WELCOME
|
|
7
|
-
Project-URL: Repository, https://github.com/Mirascope/mirascope
|
|
8
|
-
Project-URL: Issues, https://github.com/Mirascope/mirascope/issues
|
|
9
|
-
Project-URL: Changelog, https://github.com/Mirascope/mirascope/releases
|
|
10
|
-
Author-email: William Bakst <william@mirascope.com>, Brendan Kao <brendan@mirascope.com>
|
|
11
|
-
Maintainer-email: William Bakst <william@mirascope.com>
|
|
12
|
-
License: MIT License
|
|
13
|
-
|
|
14
|
-
Copyright (c) 2023 Mirascope, Inc.
|
|
15
|
-
|
|
16
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
17
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
18
|
-
in the Software without restriction, including without limitation the rights
|
|
19
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
20
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
21
|
-
furnished to do so, subject to the following conditions:
|
|
22
|
-
|
|
23
|
-
The above copyright notice and this permission notice shall be included in all
|
|
24
|
-
copies or substantial portions of the Software.
|
|
25
|
-
|
|
26
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
27
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
28
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
29
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
30
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
31
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
32
|
-
SOFTWARE.
|
|
33
|
-
License-File: LICENSE
|
|
34
|
-
Keywords: agents,anthropic,artificial intelligence,bedrock,cohere,developer tools,gemini,groq,llm,llm tools,mistral,openai,prompt engineering,pydantic,vertex
|
|
35
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
36
|
-
Classifier: Framework :: Pydantic :: 2
|
|
37
|
-
Classifier: Intended Audience :: Developers
|
|
38
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
39
|
-
Classifier: Programming Language :: Python :: 3
|
|
40
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
41
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
42
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
43
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
44
|
-
Classifier: Topic :: File Formats :: JSON
|
|
45
|
-
Classifier: Topic :: File Formats :: JSON :: JSON Schema
|
|
46
|
-
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
47
|
-
Classifier: Topic :: Software Development :: Libraries
|
|
48
|
-
Requires-Python: >=3.10
|
|
49
|
-
Requires-Dist: docstring-parser<1.0,>=0.15
|
|
50
|
-
Requires-Dist: jiter>=0.5.0
|
|
51
|
-
Requires-Dist: pydantic<3.0,>=2.7.4
|
|
52
|
-
Requires-Dist: typing-extensions>=4.10.0
|
|
53
|
-
Provides-Extra: anthropic
|
|
54
|
-
Requires-Dist: anthropic<1.0,>=0.29.0; extra == 'anthropic'
|
|
55
|
-
Provides-Extra: azure
|
|
56
|
-
Requires-Dist: aiohttp<4.0,>=3.10.5; extra == 'azure'
|
|
57
|
-
Requires-Dist: azure-ai-inference<2.0,>=1.0.0b4; extra == 'azure'
|
|
58
|
-
Provides-Extra: bedrock
|
|
59
|
-
Requires-Dist: aioboto3<14,>=13.1.1; extra == 'bedrock'
|
|
60
|
-
Requires-Dist: boto3-stubs[bedrock-runtime]<2,>=1.35.32; extra == 'bedrock'
|
|
61
|
-
Requires-Dist: boto3<2,>=1.34.70; extra == 'bedrock'
|
|
62
|
-
Requires-Dist: types-aioboto3[bedrock-runtime]<14,>=13.1.1; extra == 'bedrock'
|
|
63
|
-
Provides-Extra: cohere
|
|
64
|
-
Requires-Dist: cohere<6,>=5.5.8; extra == 'cohere'
|
|
65
|
-
Provides-Extra: gemini
|
|
66
|
-
Requires-Dist: google-generativeai<1,>=0.4.0; extra == 'gemini'
|
|
67
|
-
Requires-Dist: pillow<11,>=10.4.0; extra == 'gemini'
|
|
68
|
-
Provides-Extra: google
|
|
69
|
-
Requires-Dist: google-genai<2,>=1.2.0; extra == 'google'
|
|
70
|
-
Requires-Dist: pillow<11,>=10.4.0; extra == 'google'
|
|
71
|
-
Requires-Dist: proto-plus>=1.24.0; extra == 'google'
|
|
72
|
-
Provides-Extra: groq
|
|
73
|
-
Requires-Dist: groq<1,>=0.9.0; extra == 'groq'
|
|
74
|
-
Provides-Extra: hyperdx
|
|
75
|
-
Requires-Dist: hyperdx-opentelemetry<1,>=0.1.0; extra == 'hyperdx'
|
|
76
|
-
Provides-Extra: langfuse
|
|
77
|
-
Requires-Dist: langfuse<3,>=2.30.0; extra == 'langfuse'
|
|
78
|
-
Provides-Extra: litellm
|
|
79
|
-
Requires-Dist: litellm<2,>=1.42.12; extra == 'litellm'
|
|
80
|
-
Provides-Extra: logfire
|
|
81
|
-
Requires-Dist: logfire<4,>=1.0.0; extra == 'logfire'
|
|
82
|
-
Provides-Extra: mcp
|
|
83
|
-
Requires-Dist: mcp>=1.3.0; extra == 'mcp'
|
|
84
|
-
Provides-Extra: mistral
|
|
85
|
-
Requires-Dist: mistralai<2,>=1.0.0; extra == 'mistral'
|
|
86
|
-
Provides-Extra: openai
|
|
87
|
-
Requires-Dist: openai<2,>=1.6.0; extra == 'openai'
|
|
88
|
-
Provides-Extra: opentelemetry
|
|
89
|
-
Requires-Dist: opentelemetry-api<2,>=1.22.0; extra == 'opentelemetry'
|
|
90
|
-
Requires-Dist: opentelemetry-sdk<2,>=1.22.0; extra == 'opentelemetry'
|
|
91
|
-
Provides-Extra: realtime
|
|
92
|
-
Requires-Dist: numpy<2,>=1.26.4; extra == 'realtime'
|
|
93
|
-
Requires-Dist: pydub<1,>=0.25.1; extra == 'realtime'
|
|
94
|
-
Requires-Dist: sounddevice<1,>=0.5.1; extra == 'realtime'
|
|
95
|
-
Requires-Dist: websockets<14,>=13.1; extra == 'realtime'
|
|
96
|
-
Provides-Extra: tenacity
|
|
97
|
-
Requires-Dist: tenacity<9,>=8.4.2; extra == 'tenacity'
|
|
98
|
-
Provides-Extra: vertex
|
|
99
|
-
Requires-Dist: google-cloud-aiplatform<2,>=1.38.0; extra == 'vertex'
|
|
100
|
-
Provides-Extra: xai
|
|
101
|
-
Requires-Dist: openai<2,>=1.6.0; extra == 'xai'
|
|
102
|
-
Description-Content-Type: text/markdown
|
|
103
|
-
|
|
104
|
-
<p align="center">
|
|
105
|
-
<a href="https://mirascope.com/#mirascope">
|
|
106
|
-
<img src="https://github.com/user-attachments/assets/58b04850-8f30-40a6-be68-96ed2aa9b6d8" />
|
|
107
|
-
</a>
|
|
108
|
-
</p>
|
|
109
|
-
|
|
110
|
-
<p align="center">
|
|
111
|
-
<a href="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml" target="_blank"><img src="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml/badge.svg?branch=main" alt="Tests"/></a>
|
|
112
|
-
<a href="https://codecov.io/github/Mirascope/mirascope" target="_blank"><img src="https://codecov.io/github/Mirascope/mirascope/graph/badge.svg?token=HAEAWT3KC9" alt="Coverage"/></a>
|
|
113
|
-
<a href="https://mirascope.com/docs/mirascope" target="_blank"><img src="https://img.shields.io/badge/docs-available-brightgreen" alt="Docs"/></a>
|
|
114
|
-
<a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/v/mirascope.svg" alt="PyPI Version"/></a>
|
|
115
|
-
<a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/pyversions/mirascope.svg" alt="Stars"/></a>
|
|
116
|
-
<a href="https://github.com/Mirascope/mirascope/tree/main/LICENSE"><img src="https://img.shields.io/github/license/Mirascope/mirascope.svg" alt="License"/></a>
|
|
117
|
-
<a href="https://github.com/Mirascope/mirascope/stargazers" target="_blank"><img src="https://img.shields.io/github/stars/Mirascope/mirascope.svg" alt="Stars"/></a>
|
|
118
|
-
</p>
|
|
119
|
-
|
|
120
|
-
---
|
|
121
|
-
|
|
122
|
-
Mirascope is a powerful, flexible, and user-friendly library that simplifies the process of working with LLMs through a unified interface that works across various supported providers, including [OpenAI](https://openai.com/), [Anthropic](https://www.anthropic.com/), [Mistral](https://mistral.ai/), [Google (Gemini/Vertex)](https://googleapis.github.io/python-genai/), [Groq](https://groq.com/), [Cohere](https://cohere.com/), [LiteLLM](https://www.litellm.ai/), [Azure AI](https://azure.microsoft.com/en-us/solutions/ai), and [Bedrock](https://aws.amazon.com/bedrock/).
|
|
123
|
-
|
|
124
|
-
Whether you're generating text, extracting structured information, or developing complex AI-driven agent systems, Mirascope provides the tools you need to streamline your development process and create powerful, robust applications.
|
|
125
|
-
|
|
126
|
-
## 30 Second Quickstart
|
|
127
|
-
|
|
128
|
-
Install Mirascope, specifying the provider(s) you intend to use, and set your API key:
|
|
129
|
-
|
|
130
|
-
```bash
|
|
131
|
-
pip install "mirascope[openai]"
|
|
132
|
-
export OPENAI_API_KEY=XXXXX
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
Make your first call to an LLM to extract the title and author of a book from unstructured text:
|
|
136
|
-
|
|
137
|
-
```python
|
|
138
|
-
from mirascope import llm
|
|
139
|
-
from pydantic import BaseModel
|
|
140
|
-
|
|
141
|
-
class Book(BaseModel):
|
|
142
|
-
title: str
|
|
143
|
-
author: str
|
|
144
|
-
|
|
145
|
-
@llm.call(provider="openai", model="gpt-4o-mini", response_model=Book)
|
|
146
|
-
def extract_book(text: str) -> str:
|
|
147
|
-
return f"Extract {text}"
|
|
148
|
-
|
|
149
|
-
book = extract_book("The Name of the Wind by Patrick Rothfuss")
|
|
150
|
-
assert isinstance(book, Book)
|
|
151
|
-
print(book)
|
|
152
|
-
# Output: title='The Name of the Wind' author='Patrick Rothfuss'
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
## Tutorials
|
|
156
|
-
|
|
157
|
-
Check out our [quickstart tutorial](https://mirascope.com/docs/mirascope/getting-started/quickstart) and many other tutorials for an interactive way to getting started with Mirascope.
|
|
158
|
-
|
|
159
|
-
## Usage
|
|
160
|
-
|
|
161
|
-
For a complete guide on how to use all of the various features Mirascope has to offer, read through our [Learn](https://mirascope.com/learn) documentation.
|
|
162
|
-
|
|
163
|
-
## Versioning
|
|
164
|
-
|
|
165
|
-
Mirascope uses [Semantic Versioning](https://semver.org/).
|
|
166
|
-
|
|
167
|
-
## Licence
|
|
168
|
-
|
|
169
|
-
This project is licensed under the terms of the [MIT License](https://github.com/Mirascope/mirascope/tree/main/LICENSE).
|
|
@@ -1,378 +0,0 @@
|
|
|
1
|
-
mirascope/__init__.py,sha256=Rmt0CqSEEEqc7KhW10KzQHgGij11PIKRrNQ_y4IU4eY,1127
|
|
2
|
-
mirascope/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
mirascope/beta/__init__.py,sha256=YsIIE5w3nKj0Ywcs_Y5tSE6WlHKR-nQwwbhNF1R8UW8,43
|
|
4
|
-
mirascope/beta/openai/__init__.py,sha256=a7xllQBfcpO6kYwZ5Zv1CWzN9qpS1SJoBgb1J20F-Hk,257
|
|
5
|
-
mirascope/beta/openai/realtime/__init__.py,sha256=kYEaLHjek8LsxR5xQB2JYMvCsHxi0MjtPGA4Nos4bgs,286
|
|
6
|
-
mirascope/beta/openai/realtime/realtime.py,sha256=_sc2HBJ26OfOLssosziytYLnRLNGupck7rKHeDZWhDM,19457
|
|
7
|
-
mirascope/beta/openai/realtime/recording.py,sha256=ZRvJbCQ2TdtlNEM-D4I8kTyQZ3tfR0KAdk6RhzBlqus,2876
|
|
8
|
-
mirascope/beta/openai/realtime/tool.py,sha256=ROQJSS31-s82yHiiSeCrF3vy7WXJMg4XnTj5skHcJoo,3309
|
|
9
|
-
mirascope/beta/openai/realtime/_utils/__init__.py,sha256=Jginrcpj_EkhdcMe79CtrN5FbS6_jt-fIKPOQ74U0Qg,55
|
|
10
|
-
mirascope/beta/openai/realtime/_utils/_audio.py,sha256=5M9olfNXRq4EBuScvbrWc4AVPsf7LvDiT9ZeJ3P6TPc,1884
|
|
11
|
-
mirascope/beta/openai/realtime/_utils/_protocols.py,sha256=oQSTwoAVg81NKnNaIpP9hMFqnn8sNstnLPaR9cMa7Dc,1440
|
|
12
|
-
mirascope/beta/rag/__init__.py,sha256=xWtAif91Eb4fRWAhIxraRqSPGins6S7D5AzlEVKknPw,466
|
|
13
|
-
mirascope/beta/rag/base/__init__.py,sha256=9svbynyBNzLelpCBCqoT4vwY9E2QXMFkPXk8EdIvyFY,631
|
|
14
|
-
mirascope/beta/rag/base/config.py,sha256=PgO1syia3jSqrze7zA1K0ZA0ephNZiSzMspI9GC_zTE,186
|
|
15
|
-
mirascope/beta/rag/base/document.py,sha256=cdHLyevVWgvIeld2p-A2nwfzrFDlIaySm3CX4glQwxM,207
|
|
16
|
-
mirascope/beta/rag/base/embedders.py,sha256=0X-GV1o4C8FjtoILQZJPkJvldK4NSoLzKIr99tFhun0,1181
|
|
17
|
-
mirascope/beta/rag/base/embedding_params.py,sha256=HZWonqnSxvUGNe6flxmicyVlDwYBt8L-OcQxQod0On8,526
|
|
18
|
-
mirascope/beta/rag/base/embedding_response.py,sha256=21k-_JKdvTMF5KFKjIkDYji4CJFKok4TAryKiEgPp4A,942
|
|
19
|
-
mirascope/beta/rag/base/query_results.py,sha256=ceGSaMzZ8X3qfC-5CwW1yftYhchUR67kHc1bR9PZty4,190
|
|
20
|
-
mirascope/beta/rag/base/vectorstore_params.py,sha256=4gErLjESDuYlwKsQqhqrhbojMCue4Mz_vgBY36Yos28,525
|
|
21
|
-
mirascope/beta/rag/base/vectorstores.py,sha256=BUnIWHIp_T3v-TNaoqT-XBseNYzDXHBXOERT2F_G_uI,1370
|
|
22
|
-
mirascope/beta/rag/base/chunkers/__init__.py,sha256=DFSBx6sNnnfR0nua74T1SGuRcwQoUSqHf0OOF783ZB4,76
|
|
23
|
-
mirascope/beta/rag/base/chunkers/base_chunker.py,sha256=hLK9iZ7_QYnc3HEN0j4nEv-JTaRFnswJESrFNsioOtY,958
|
|
24
|
-
mirascope/beta/rag/base/chunkers/text_chunker.py,sha256=C9o-gYytXoCBeMxOQtjCTBSu3JDkSxDAR_AI9KZG7Ek,913
|
|
25
|
-
mirascope/beta/rag/chroma/__init__.py,sha256=iYH8JKfNz6DrvR9c_z_YdzT5qdfMx9rg4SP4okISyRg,276
|
|
26
|
-
mirascope/beta/rag/chroma/types.py,sha256=cfqLoM5bqyAPcVRQC7KZ34cIQpwo8P_GXhgm-TZa-LY,2179
|
|
27
|
-
mirascope/beta/rag/chroma/vectorstores.py,sha256=iBgOezpyVbwLou1aQrKEkoapH8ZcikoDcZ3EHkc8f60,4089
|
|
28
|
-
mirascope/beta/rag/cohere/__init__.py,sha256=hZfZKIn1B7NdfaUJARWFppDwXAW93p2cHM2uB0OyMtk,300
|
|
29
|
-
mirascope/beta/rag/cohere/embedders.py,sha256=0V8o147p_nxiWt5nkfiUvtbeWNUH9En81yrv1AJJSJQ,2966
|
|
30
|
-
mirascope/beta/rag/cohere/embedding_params.py,sha256=TTT_oDFe22lzjcm8wIPU3snzklHtlWbh_o-Ks73XSaM,1020
|
|
31
|
-
mirascope/beta/rag/cohere/embedding_response.py,sha256=DjV5QbygsXdkNkdgPnnRTd2FbGuEFxYTQkxH4p4WHVs,1127
|
|
32
|
-
mirascope/beta/rag/cohere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
mirascope/beta/rag/openai/__init__.py,sha256=BHotLt8oCzdvxKrCGRQUjS0T9WYfVyzXkB1mWl7zJL4,295
|
|
34
|
-
mirascope/beta/rag/openai/embedders.py,sha256=yGeScGZTmvUmLs8HTl6coRlFrikDi6kJY61YW46A3Vs,5452
|
|
35
|
-
mirascope/beta/rag/openai/embedding_params.py,sha256=5jKzLsRsdPAo0QsDWYJN2I94s02_Av4MMvSMLhwde8w,729
|
|
36
|
-
mirascope/beta/rag/openai/embedding_response.py,sha256=4Rrk8L3J_Z89iKij7ZwJfbmn2lQ3nA1idr3zGrn-z8U,582
|
|
37
|
-
mirascope/beta/rag/openai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
mirascope/beta/rag/pinecone/__init__.py,sha256=zek8AjyFPFp0eyijsEoUtSskMk01svV4Y5d1qgiHvCM,421
|
|
39
|
-
mirascope/beta/rag/pinecone/types.py,sha256=Bn-yRCqGp9ASPFsezRs4KwxNfdqnjUjeMq8P5vw6-0k,4743
|
|
40
|
-
mirascope/beta/rag/pinecone/vectorstores.py,sha256=ZcLwVmrxNMq5a2mLI-3F9XJ_UYDryKoKqMMQs0iHquM,5127
|
|
41
|
-
mirascope/beta/rag/weaviate/__init__.py,sha256=eod9OprMo1zdDb-waYWtBJKWuYQRx7v-QEen-wzm_5w,231
|
|
42
|
-
mirascope/beta/rag/weaviate/types.py,sha256=-2r2Vy71kpLlRJgVqWoE3atub5a2eymHPSjTHuSqCfQ,2984
|
|
43
|
-
mirascope/beta/rag/weaviate/vectorstores.py,sha256=8Nwy-QRHwSUdvMkqEhqmUkN7y_CzQN7bop7do1K8v4w,3606
|
|
44
|
-
mirascope/core/__init__.py,sha256=10mn-PHVEOUu0aZ-CIOZDl89exoRcJVDBB1xWK938YA,2074
|
|
45
|
-
mirascope/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
-
mirascope/core/anthropic/__init__.py,sha256=GB-CULa3jYEPv1ZDyZjNCKQJbrc6ojqu8WNRSFElQ-4,918
|
|
47
|
-
mirascope/core/anthropic/_call.py,sha256=LXUR__AyexD-hsPMPKpA7IFuh8Cfc0uAg1GrJSxiWnU,2358
|
|
48
|
-
mirascope/core/anthropic/_call_kwargs.py,sha256=EoXSl2B5FoLD_Nv03-ttXjiKlpBihZGXu6U-Ol3qwZ8,389
|
|
49
|
-
mirascope/core/anthropic/_thinking.py,sha256=huHH20tdXgS6GpDz5cYFgf5HzmzrJ8FaUNfrBepkf4w,1882
|
|
50
|
-
mirascope/core/anthropic/call_params.py,sha256=OUUTHGCXxKilTmjqpgmAdgKuF-oO_WX7tZJdEtWarS0,1357
|
|
51
|
-
mirascope/core/anthropic/call_response.py,sha256=ufUDPAqZcGQtA5YDLirvJiY9MWnDr01O4ZzXS7PCk8c,7004
|
|
52
|
-
mirascope/core/anthropic/call_response_chunk.py,sha256=ERv3arJxwOUJTtGRcAVj4xHPbzZfo6U5itC0lYvrEfg,4738
|
|
53
|
-
mirascope/core/anthropic/dynamic_config.py,sha256=kZV4ApAnm3P1X5gKPJ3hbr45K6tgaNX8L6Ca8NjTkxU,1192
|
|
54
|
-
mirascope/core/anthropic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
mirascope/core/anthropic/stream.py,sha256=bQPuNs9vuwO5qdqGskXoj1WgzUUW0JxVgtAXkMnsaOs,6988
|
|
56
|
-
mirascope/core/anthropic/tool.py,sha256=HtbYV5j4itV8v6lTyLDY72NMX2kxRaXVgpZ_m89HqIk,2891
|
|
57
|
-
mirascope/core/anthropic/_utils/__init__.py,sha256=GDO3G2dvWsE8UhFyQ1lKkRVMeOrqqogBISRKJYJmoEQ,493
|
|
58
|
-
mirascope/core/anthropic/_utils/_convert_common_call_params.py,sha256=ILd7AH_atmPUPj7I74EsmxG3rmWC7b5tgjnlR24jKUs,765
|
|
59
|
-
mirascope/core/anthropic/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=UqqiDEaw20_nDbQUvRJC-ZneCd35f_2GEUpiUNMibr0,704
|
|
60
|
-
mirascope/core/anthropic/_utils/_convert_message_params.py,sha256=paDIPksOzZK5yhckUX8-3y5czUIWDxdWCwJmzI6rmEE,4270
|
|
61
|
-
mirascope/core/anthropic/_utils/_get_json_output.py,sha256=vkHvhc96RLrGREYVCKr14Umq80EUa7pCtlcImjXB5gA,1157
|
|
62
|
-
mirascope/core/anthropic/_utils/_handle_stream.py,sha256=6Ll2FQt1KWrz5jqgeP1NikHEjlrSbfPUQCH4eoX4eVA,4010
|
|
63
|
-
mirascope/core/anthropic/_utils/_message_param_converter.py,sha256=1Blj5YT-ifJw12Y9reUK740CO2Fwp-m21_bLEal2PHw,6205
|
|
64
|
-
mirascope/core/anthropic/_utils/_setup_call.py,sha256=xPY6O7MMOwaot5xZSSHqyGyazJxVHPx77W20jZ-cK6E,4812
|
|
65
|
-
mirascope/core/azure/__init__.py,sha256=7Dpkf10T-TGxk7Lstej6x6s6On7QjI0qeE2ABO7QWmQ,852
|
|
66
|
-
mirascope/core/azure/_call.py,sha256=SHqSJe6_4zgn4Y9PkpDl4vXvLuT4QmVnWUcws9e_RR8,2237
|
|
67
|
-
mirascope/core/azure/_call_kwargs.py,sha256=q38xKSgCBWi8DLScepG-KnUfgi67AU6xr2uOHwCZ2mI,435
|
|
68
|
-
mirascope/core/azure/call_params.py,sha256=NK_ggVJbactDip85DbfCaqSWRpO0CgwN1svY-KW4_Yg,1836
|
|
69
|
-
mirascope/core/azure/call_response.py,sha256=FzSqAunmZCeVhQIei2_YcUqZBnJUgmEFFT4jHiJFm28,7068
|
|
70
|
-
mirascope/core/azure/call_response_chunk.py,sha256=bWgpT-XldmetNwcQmpVVHRCLn6B6UKM6NK_RAxb2Zio,3224
|
|
71
|
-
mirascope/core/azure/dynamic_config.py,sha256=6SBMGFce7tuXdwHrlKNISpZxVxUnnumbIQB9lGR6nbs,1066
|
|
72
|
-
mirascope/core/azure/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
-
mirascope/core/azure/stream.py,sha256=XfEO6sOgnXiOhhuagrFdtFI-oQECxBP0Zt0wbfUH1TU,4637
|
|
74
|
-
mirascope/core/azure/tool.py,sha256=SAhrGT-_rO0i4Jv9rMEFbMDYPqsm415qXUtHY3aNhrQ,2682
|
|
75
|
-
mirascope/core/azure/_utils/__init__.py,sha256=v9ILkXOs2qfFwuKWlOb9k7X09fmLnmKzYe1iMP2Zlag,387
|
|
76
|
-
mirascope/core/azure/_utils/_convert_common_call_params.py,sha256=mDmrDIEOn2nm4mTFQvv8ErM0xDvjtupvIL9beycPx4I,790
|
|
77
|
-
mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=Tn9tf--eJ1__iapf-D67UYwHFOBoEgTIJSVn8nqos3Q,823
|
|
78
|
-
mirascope/core/azure/_utils/_convert_message_params.py,sha256=qUs88dNeUw57XpHW7ihk3HZ96phfPssPS-A_49eypw0,5085
|
|
79
|
-
mirascope/core/azure/_utils/_get_credential.py,sha256=hEWoKtB27PLZtC35qvPx36CPvQ9eHzr4tDFcq-13rqI,970
|
|
80
|
-
mirascope/core/azure/_utils/_get_json_output.py,sha256=Qec7WJY5is1Q63Vp9uUNNfkRwgxhdoLMCI7AF_e2t90,1017
|
|
81
|
-
mirascope/core/azure/_utils/_handle_stream.py,sha256=M_BGnjBGWTPefNyIMuJSHiDxIvqmENmqfVlDx_qzL1c,4638
|
|
82
|
-
mirascope/core/azure/_utils/_message_param_converter.py,sha256=JAUeHObtd_V225YyZqEruuih3HRozq43pqjYJCbJj8A,4443
|
|
83
|
-
mirascope/core/azure/_utils/_setup_call.py,sha256=cdUof-RCxsPbKuJvevsEUYXU-ckoql3wTevNEQiEpz4,6496
|
|
84
|
-
mirascope/core/base/__init__.py,sha256=tBy5Q2jrioxxYji_tArS-fcxBYmIBbhmGGZDpkhDjE8,2111
|
|
85
|
-
mirascope/core/base/_call_factory.py,sha256=YdFHAa9WtGfYeqVcM2xaDNh5gMg584rOe26_E51-1to,9663
|
|
86
|
-
mirascope/core/base/_create.py,sha256=M6dpcWwtyb6O7pa9pT0rdwhYEUcuB2iu2uv97kAU1qk,10090
|
|
87
|
-
mirascope/core/base/_extract.py,sha256=QTqkArgmgR17OB5jTP86Wo-TW-BcouOcK9gdMy-EcNw,6799
|
|
88
|
-
mirascope/core/base/_extract_with_tools.py,sha256=MW4v8D1xty7LqLb5RwMFkX-peQqA73CtAVwGm7mC5w8,7338
|
|
89
|
-
mirascope/core/base/_partial.py,sha256=w_ACCgsDKNLtMyAP-lNmfRdrFEPmzh2BT4aninajxyY,3240
|
|
90
|
-
mirascope/core/base/call_kwargs.py,sha256=0mznCsrj1dYxvdwYNF0RKbc9CiU5G6WvvcjPqOMsOE4,351
|
|
91
|
-
mirascope/core/base/call_params.py,sha256=wtuuOY-SwIZYCDBKfn_xRC0Kf1cUuI4eSQaXu6VrtaE,1331
|
|
92
|
-
mirascope/core/base/call_response.py,sha256=2f7ETVpr3ZPcTfGJ7aQp4xlN-7fU7IWDvdfT-fMzDr0,10632
|
|
93
|
-
mirascope/core/base/call_response_chunk.py,sha256=ZfulgERwgva55TLrQI9XimX8bpgOqBNLs_I-_kELl-4,3606
|
|
94
|
-
mirascope/core/base/dynamic_config.py,sha256=V5IG2X5gPFpfQ47uO8JU1zoC2eNdRftsRZEmwhRPaYI,2859
|
|
95
|
-
mirascope/core/base/from_call_args.py,sha256=8ijMX7PN6a4o6uLdmXJlSRnE-rEVJU5NLxUmNrS8dvU,909
|
|
96
|
-
mirascope/core/base/merge_decorators.py,sha256=9pQYXuTxLh4mGKVIsnR5pYBkYCaQjg85TTelC6XDldE,1988
|
|
97
|
-
mirascope/core/base/message_param.py,sha256=5AtuTmpscZKsXengBPkPV4F33Et0BQRpfeRwMMvqqdY,3822
|
|
98
|
-
mirascope/core/base/messages.py,sha256=tn38kanabpq6fabxvb0p8zo5fZBBz6Yotl1szCgh3xg,2671
|
|
99
|
-
mirascope/core/base/metadata.py,sha256=V9hgMkj6m3QGsu4H5LhCxBZBYQLoygJv0CeLIf1DF0M,382
|
|
100
|
-
mirascope/core/base/prompt.py,sha256=M5PK9JoEsWTQ-kzNCpZKdDGzWAkb8MS267xEFCPfpAU,15414
|
|
101
|
-
mirascope/core/base/response_model_config_dict.py,sha256=OUdx_YkV2vBzUSSB2OYLAAHf22T7jvF5tRuc6c-vhNQ,254
|
|
102
|
-
mirascope/core/base/stream.py,sha256=ZHjC9MQ3HT9KMbqCKTB0um2fvMLJmRYU_eSGdfRj79I,17274
|
|
103
|
-
mirascope/core/base/stream_config.py,sha256=vwWqNh9NJhTYjiJmfDbC9D5O84je_lBRhNOt4wI3FHM,238
|
|
104
|
-
mirascope/core/base/structured_stream.py,sha256=FIvLXXKninrpQ5P7MsLEqGrU4cfvEDiPbueZqgJ4Dlw,10395
|
|
105
|
-
mirascope/core/base/tool.py,sha256=or8Zv0reSLSGjBAxlcfX4MzEQyhyPv-HOivJLJ9rQGs,7220
|
|
106
|
-
mirascope/core/base/toolkit.py,sha256=GmZquYPqvQL2J9Hd6StEwx6jfeFsqtcUyxKvp4iW_7Q,6271
|
|
107
|
-
mirascope/core/base/types.py,sha256=4GVyVzHThWJU2Og-wpVbYNPZD8QMdHltIAV83FUlisM,9247
|
|
108
|
-
mirascope/core/base/_utils/__init__.py,sha256=Tm-9-6k7cZL3IaqebOEaKpTg9nFUMfAGHHeKmC3YzLQ,3192
|
|
109
|
-
mirascope/core/base/_utils/_base_message_param_converter.py,sha256=mavWnEEonk3BoinyqtGm-avNq-KvtW6YAW2NMAXIO2Y,695
|
|
110
|
-
mirascope/core/base/_utils/_base_type.py,sha256=x8ZabSxZZNAy6ER-VQEkB6mNyjWcGSCBivFydFNIRUE,700
|
|
111
|
-
mirascope/core/base/_utils/_convert_base_model_to_base_tool.py,sha256=JoHf1CbRwK91dABm5xLhdIPmeMSFS_nj-qW9OQu_YJ0,1750
|
|
112
|
-
mirascope/core/base/_utils/_convert_base_type_to_base_tool.py,sha256=fAOfqqoT0_vk1i-h-lCdWQYYeTjZ3fTiCgwGmgtHk9o,734
|
|
113
|
-
mirascope/core/base/_utils/_convert_function_to_base_tool.py,sha256=squjro0oxwXOiavcf4bSHjHS94uSeCBGpykacoFpKx8,5729
|
|
114
|
-
mirascope/core/base/_utils/_convert_messages_to_message_params.py,sha256=9gys7ZPBAiuQH5hdi4_bL0KH32Q96fESyKDW5S0-9Js,4532
|
|
115
|
-
mirascope/core/base/_utils/_convert_provider_finish_reason_to_finish_reason.py,sha256=Mki5mYbYX8vUW-oosC4PaRNUHW_T5xAQWti3_1ndtTk,611
|
|
116
|
-
mirascope/core/base/_utils/_default_tool_docstring.py,sha256=JLyryjGDaHMU-P7gUpnjkPyELCQsQgi8AP4Dp_yXPOM,277
|
|
117
|
-
mirascope/core/base/_utils/_extract_tool_return.py,sha256=HYx7F7JIDonr4n4_1DWpNeZl4kaD0OdwlmdzV3qmHDk,1575
|
|
118
|
-
mirascope/core/base/_utils/_fn_is_async.py,sha256=dMrvkwqyyNhuaQUHtNMxpMoBoHqZuHPbh4nqfK-KKi0,728
|
|
119
|
-
mirascope/core/base/_utils/_format_template.py,sha256=3l0Iq1LxQhocR588bzUDtfLalfiq_Rw_tHrVdgoZHiA,1061
|
|
120
|
-
mirascope/core/base/_utils/_get_audio_type.py,sha256=PN8MlgKgl5OIDANgSUlI4UarLkfBHfWmWWls9shPM8M,683
|
|
121
|
-
mirascope/core/base/_utils/_get_common_usage.py,sha256=s9Gvq0wl4ZM1V3zmI0LDEIG8wIxWEOXkjuDBjtyFx9s,675
|
|
122
|
-
mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py,sha256=vAjvM_2pE4paDOPnehzer6-THpKRkzveTBlr8fCpyGU,4226
|
|
123
|
-
mirascope/core/base/_utils/_get_document_type.py,sha256=XKuXlSssVLT_hR7XQHKY2fjhTN2v00DTIZDzH37MN-8,237
|
|
124
|
-
mirascope/core/base/_utils/_get_dynamic_configuration.py,sha256=4zyGYhJLJF7TfO-ZD2bLZOF46_RFIb_zQq5NaZH6ugA,2033
|
|
125
|
-
mirascope/core/base/_utils/_get_fields_from_call_args.py,sha256=UxisQxdsNppyDxYscyDbRa3NkHd943a83V5hBot9kRI,1124
|
|
126
|
-
mirascope/core/base/_utils/_get_fn_args.py,sha256=g4k-w44NwVvypfRq4kNAX8v-kaBX-i9lg4CKY-g6FaM,731
|
|
127
|
-
mirascope/core/base/_utils/_get_image_dimensions.py,sha256=cQTVJO7X0kACazqjGMMl_Pee3On_l1iD1n7BBb_7gGA,1262
|
|
128
|
-
mirascope/core/base/_utils/_get_image_type.py,sha256=2BvCbPQWxsuTYQYsdm7_V_l1bX-eYioIIQNK6T_DAxk,856
|
|
129
|
-
mirascope/core/base/_utils/_get_metadata.py,sha256=j1HHSlcVAVpF7XmhzcqmPdorFwdgdicqYwsGGrE1PHs,563
|
|
130
|
-
mirascope/core/base/_utils/_get_possible_user_message_param.py,sha256=iU1hcKuRDWByk8MvOMyrdM5SZ3Zsnrcr4Ljp5r40IwE,690
|
|
131
|
-
mirascope/core/base/_utils/_get_prompt_template.py,sha256=m5CIVhlNsnCIDiE1c5fnb_8NID-w-f0KEK2pUS3YJGs,941
|
|
132
|
-
mirascope/core/base/_utils/_get_template_values.py,sha256=TRCl0g26m_hb93VMkVFqonzABCET9-yrSVBBPXWg2qA,1928
|
|
133
|
-
mirascope/core/base/_utils/_get_template_variables.py,sha256=uwxkrkeZEzsWRskNJLxHoGhkefFC7fNAEZLhWdTZ6Jk,1057
|
|
134
|
-
mirascope/core/base/_utils/_get_unsupported_tool_config_keys.py,sha256=fG34xCSnQ2VW3IDf7u4zSD6051E-UYyC6Jwm4LvXR-g,395
|
|
135
|
-
mirascope/core/base/_utils/_is_prompt_template.py,sha256=WfUYtvmlw-Yx5eYuechyQKo4DGVWRXNePoN3Bw70xvo,621
|
|
136
|
-
mirascope/core/base/_utils/_json_mode_content.py,sha256=EMWnlmyEQV2VgX7D5lbovw1i3JKQKtpXt3TI6wP_vI4,675
|
|
137
|
-
mirascope/core/base/_utils/_messages_decorator.py,sha256=dnvbhmwvzGcew8LU0Q_HlDrsIXai-4LuMeZ3Z2-z6wA,3873
|
|
138
|
-
mirascope/core/base/_utils/_parse_content_template.py,sha256=8GoisGbizGBbksUpUE7IbzVJrt76Mfdu-PI9e2OPIi4,10807
|
|
139
|
-
mirascope/core/base/_utils/_parse_prompt_messages.py,sha256=lGDYxvwea--gnE3LChNF9b1uxKrAKlYkVb9Ep7fM_zo,2523
|
|
140
|
-
mirascope/core/base/_utils/_pil_image_to_bytes.py,sha256=qN8nYwRU1hgX1TjEpLKk5i-GBtxBQjTIp2KlMIdbBe8,387
|
|
141
|
-
mirascope/core/base/_utils/_protocols.py,sha256=Ca6wOHK-yBdRQV68fmxmbnwMI3gie7DJ_Zn2CilDUG8,28493
|
|
142
|
-
mirascope/core/base/_utils/_setup_call.py,sha256=tnvs73IU4GDGkgqvqko0f2KKpAO-hK3bQUUW7C0Z94A,3107
|
|
143
|
-
mirascope/core/base/_utils/_setup_extract_tool.py,sha256=y_guGnX6j748T3uygqrMijxEnI8ffrD0UWPP_qg9zoE,1290
|
|
144
|
-
mirascope/core/bedrock/__init__.py,sha256=bbBnEu4vqofB76SdUrMCjx8pmiZFRySeSXGbfvADxL4,973
|
|
145
|
-
mirascope/core/bedrock/_call.py,sha256=8Z8sdzpTdJsMHBev35B1KH3O16_eMLbtTkOmPB7bzvo,2317
|
|
146
|
-
mirascope/core/bedrock/_call_kwargs.py,sha256=N1d_iglnwZW3JrcaT8WTOeuLT5MYcVLU5vS8u8uyEL4,408
|
|
147
|
-
mirascope/core/bedrock/_types.py,sha256=ntmzYsgT6wuigv1GavkdqCvJnAYRsFvVuIwxafE4DFY,3229
|
|
148
|
-
mirascope/core/bedrock/call_params.py,sha256=3eKNYTteCTaPLqvAcy1vHU5aY9nMVNhmApL45ugPbrQ,1716
|
|
149
|
-
mirascope/core/bedrock/call_response.py,sha256=V9YFYdPxW415t-yBq4Y5Jexn5hkewiePnWv9gghW9JA,8359
|
|
150
|
-
mirascope/core/bedrock/call_response_chunk.py,sha256=EAs0mJseL-C4dlnEhggtUT8_s6L2d5lSAqrIjLxQepI,3524
|
|
151
|
-
mirascope/core/bedrock/dynamic_config.py,sha256=X6v93X9g14mfvkGLL08yX-xTFGgX8y8bVngNmExdUhQ,1166
|
|
152
|
-
mirascope/core/bedrock/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
-
mirascope/core/bedrock/stream.py,sha256=UyA6b7l3-MjEULzo-DXF-le7N3oQw6W5FFk48_K93a0,5219
|
|
154
|
-
mirascope/core/bedrock/tool.py,sha256=tgt__paZyzpN1_NdTVKh-2hIWHah2Ect8lAfM1GEl-s,2758
|
|
155
|
-
mirascope/core/bedrock/_utils/__init__.py,sha256=OYpHXxPRbgasCLz_emLatmNa5WCb_S6pvVFHcNoGy9E,389
|
|
156
|
-
mirascope/core/bedrock/_utils/_convert_common_call_params.py,sha256=i17yrW-_7qdIsf-zS3OD5HIO0uykCdfanPsjV3WxTEY,1091
|
|
157
|
-
mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=A67-Q3zgpXh9q0iub5IfJw9VRgHvK-pczt1Btot_jks,792
|
|
158
|
-
mirascope/core/bedrock/_utils/_convert_message_params.py,sha256=ZPFj34ed0-4bmMldj4tR6EGb9RsuHkXzSwjmwEeN-KU,4680
|
|
159
|
-
mirascope/core/bedrock/_utils/_get_json_output.py,sha256=hW-IBBQ5YW85VljjFJHDDtu66zsaF2ydTbFxgCX_j6A,1159
|
|
160
|
-
mirascope/core/bedrock/_utils/_handle_stream.py,sha256=s8KNMNDKzvSIkFROtaZgbEJry78X_qCzTvGmHcL7UW0,3776
|
|
161
|
-
mirascope/core/bedrock/_utils/_message_param_converter.py,sha256=BCoFozjclkqAZq1InB1ar_IAVGMW9xclU1bK-oi2zI0,6765
|
|
162
|
-
mirascope/core/bedrock/_utils/_setup_call.py,sha256=XQs-JlviE0uhbBxEpjXP8812NbiObLYx5VkAwJJAF84,9168
|
|
163
|
-
mirascope/core/cohere/__init__.py,sha256=vk73WFGBOEmMFEiqWMRnPfxsCBDlDcq8SaLB2A6RKeo,830
|
|
164
|
-
mirascope/core/cohere/_call.py,sha256=y0nB_7h7FWCNxHRPywtAVCYXyeYX3uzTyYBPWnuLwUE,2261
|
|
165
|
-
mirascope/core/cohere/_call_kwargs.py,sha256=YmHwiofs0QADGp0wXUtOr_Z5Pt849zaCtIZmVyjw2OM,292
|
|
166
|
-
mirascope/core/cohere/_types.py,sha256=dMcep2mhuUUUmKvFUmdoxkq4Zg5AtB2xquROiBbwRvo,1017
|
|
167
|
-
mirascope/core/cohere/call_params.py,sha256=xtmELsLkjfyfUoNbZpn3JET-gJxo1EIvlcwxgMw3gcw,1860
|
|
168
|
-
mirascope/core/cohere/call_response.py,sha256=2nvT9tBqW0N6Kekf_W93rb8NBYdkT_lOvaXn57A9pXU,6362
|
|
169
|
-
mirascope/core/cohere/call_response_chunk.py,sha256=M-EkkGOuNFnYqzAxn5HbE9EFmU4IRUA4kNPFnzl-nBs,3806
|
|
170
|
-
mirascope/core/cohere/dynamic_config.py,sha256=noH36l6qGGnClVz0EtMqeW_0e4-oTCviU5SLIl8YS64,941
|
|
171
|
-
mirascope/core/cohere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
|
-
mirascope/core/cohere/stream.py,sha256=63vrbbFudQ6Z63dexPuL34sX-y3Q3arX-9zALLt3Nb4,3391
|
|
173
|
-
mirascope/core/cohere/tool.py,sha256=fWp4aYVUFo8D6bOmh1WtBnTn9-jRMQvK6PRVw313xLs,2870
|
|
174
|
-
mirascope/core/cohere/_utils/__init__.py,sha256=gVNO0OaGN-YpZXNEAGR8tTxKg36Zhsj5sAPDeOfHy3Y,388
|
|
175
|
-
mirascope/core/cohere/_utils/_convert_common_call_params.py,sha256=PHJ8IaTfOiU_MY5Lef-dpOCTmAi8zZmS7ic79iwkKJU,804
|
|
176
|
-
mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=JP8bUgIf1kATRejvcaS27wTTr8i-wQhCzue2fLSXd2I,795
|
|
177
|
-
mirascope/core/cohere/_utils/_convert_message_params.py,sha256=RE_SPJs7FQE1f3g0aJnUQ6VPsPq0FzN0zLVeeB-ky7Y,1227
|
|
178
|
-
mirascope/core/cohere/_utils/_get_json_output.py,sha256=65gJEpp2ThxGDXJQZyGACpyC-93SbDCthj3aXNrhg-M,1151
|
|
179
|
-
mirascope/core/cohere/_utils/_handle_stream.py,sha256=X7sPmnhKlRr8j6-Ds8ZGkajriCEKMYxzDRYltmHYfWI,1181
|
|
180
|
-
mirascope/core/cohere/_utils/_message_param_converter.py,sha256=IXuPK1mwA69LmcRFGzipwpn73YuKAnETtbUS0KAC_w0,1911
|
|
181
|
-
mirascope/core/cohere/_utils/_setup_call.py,sha256=xdyXamNXYzjRldzQ-xyu-WvH7A7LjNuE2W-w9zP-f9U,4603
|
|
182
|
-
mirascope/core/costs/__init__.py,sha256=yh17QpYkspXEgHG7cjyh-v86TXdv6Nmoz_wWNc4F1ww,123
|
|
183
|
-
mirascope/core/costs/_anthropic_calculate_cost.py,sha256=G5jkMLTKsgbQL-Z42LAdsPdOQZVWDUpcqSlIEn9L7qQ,8916
|
|
184
|
-
mirascope/core/costs/_azure_calculate_cost.py,sha256=E4SBA5BBXteipS9HiaEqhVmnckfnl0PJGeX9XMtT0wA,268
|
|
185
|
-
mirascope/core/costs/_bedrock_calculate_cost.py,sha256=bAxF7rdu2VwDz7sZuN8e3Pe3Thn8ICl7eCxMhbmkjao,557
|
|
186
|
-
mirascope/core/costs/_cohere_calculate_cost.py,sha256=nqt-H79SOljN35GOHPuYsrN6kBzNANzJFX8HBikit_Q,1266
|
|
187
|
-
mirascope/core/costs/_gemini_calculate_cost.py,sha256=2zBrG49ZdX2IyoybC8_akaJU4RWCunvkfIvH7HajAgg,2298
|
|
188
|
-
mirascope/core/costs/_google_calculate_cost.py,sha256=t3DMnt3w10e6rtofhhnLT40Y-qgdCxsehnjLLp5yrhs,14537
|
|
189
|
-
mirascope/core/costs/_groq_calculate_cost.py,sha256=1AEN3b8hY2dSzdPtoHxAj7Zt6EOEDczzu63ZfijWisQ,5695
|
|
190
|
-
mirascope/core/costs/_litellm_calculate_cost.py,sha256=0gS8EvLzCsl1JkzA1W621PM9-64mkpS2XXlKotqZ36A,241
|
|
191
|
-
mirascope/core/costs/_mistral_calculate_cost.py,sha256=QhutXiWTCRHbrnyKZs-9JZPiF58IAEC2L8sRtBpzH3E,3218
|
|
192
|
-
mirascope/core/costs/_openai_calculate_cost.py,sha256=P7083lU29TVZDK8dT-_JEpQi984x-KJUhzfjmukXMQY,15918
|
|
193
|
-
mirascope/core/costs/_vertex_calculate_cost.py,sha256=KxW2nk0wskNjt-1itvlV-KR6qzOwBwa5V6UzzRetbbQ,2350
|
|
194
|
-
mirascope/core/costs/_xai_calculate_cost.py,sha256=fUFwXMQhWjWK2UtApKragK4G5xmgy9zJSuou05Rajzk,3267
|
|
195
|
-
mirascope/core/costs/calculate_cost.py,sha256=j8BKH5QN0t89JcLZWfklvKPV873Opzn5rFJuejyvb9Y,3043
|
|
196
|
-
mirascope/core/gemini/__init__.py,sha256=x7GxY48nHa6nNFhoaS3ED8NK_DwF2bNEGXiWU865m7c,1105
|
|
197
|
-
mirascope/core/gemini/_call.py,sha256=g47rUaE4V_onORvRUP9GlgnQKda28dV1Ge2YACvrD-c,2344
|
|
198
|
-
mirascope/core/gemini/_call_kwargs.py,sha256=4f34gl1BPM14wkd0fGJw_58jYzxgGgNvZkjVI5d1hgU,360
|
|
199
|
-
mirascope/core/gemini/call_params.py,sha256=aEXhgZVB0npcT6wL_p7GVGIE3vi_JOiMKdgWtpXTezQ,1723
|
|
200
|
-
mirascope/core/gemini/call_response.py,sha256=7A2S60Vq2cmI3HkbtW-d3j-WPty2OXGxUp8RrHMKFxg,6391
|
|
201
|
-
mirascope/core/gemini/call_response_chunk.py,sha256=YRyCrPLY5F79h_q3Yk6bg2ZiER_PpbAsg41ucy06QQ4,2915
|
|
202
|
-
mirascope/core/gemini/dynamic_config.py,sha256=_bmJUVHFyrr3zKea96lES20q4GPOelK3W7K1DcX0mZ8,836
|
|
203
|
-
mirascope/core/gemini/stream.py,sha256=1OIS-rrrDfRVRL86_HYatJ5uUKVLG2eRFx_PVb2YrCQ,3621
|
|
204
|
-
mirascope/core/gemini/tool.py,sha256=ohO2kJPuAnYmO-t5WdavRbeSMgSfn66-A-6PEYraDPA,3073
|
|
205
|
-
mirascope/core/gemini/_utils/__init__.py,sha256=0ZThXHighRBkotSbO4L19q1MN7T0LDoVVE4qJ5XW_-Q,388
|
|
206
|
-
mirascope/core/gemini/_utils/_convert_common_call_params.py,sha256=1ZTpwqain90Va70xC9r9-_1YEIyvyZdjMiejN7E6yY4,1072
|
|
207
|
-
mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=jkZM8hpkZjR1izwSyKTVwkkN_nfLROwx0V_yQsVDiB8,761
|
|
208
|
-
mirascope/core/gemini/_utils/_convert_message_params.py,sha256=GYqU8pnjCa9Y-iIqkhPyvXegANtr8EJ9A3YwRDyR_dc,6864
|
|
209
|
-
mirascope/core/gemini/_utils/_get_json_output.py,sha256=C2aeeEmcC-mBnbRL8aq3yohdCZJWMJc78E2GYqefK9k,1240
|
|
210
|
-
mirascope/core/gemini/_utils/_handle_stream.py,sha256=1JoRIjwuVehVIjkvT_U2r9TMvMZB96ldp1n1AGon-tw,1153
|
|
211
|
-
mirascope/core/gemini/_utils/_message_param_converter.py,sha256=4r_H1xtJErtLsrui8sG8YTIEjOiqQq_QA6fsMStwG8I,8359
|
|
212
|
-
mirascope/core/gemini/_utils/_setup_call.py,sha256=QaboJO2k1D2ingfHuPSpb-YjMGRIcTIFN5Qe54eMCXM,4992
|
|
213
|
-
mirascope/core/google/__init__.py,sha256=5EhyiomPnjOS59FgfQP2uPCXS74ZJrGYvJ_CZbYdF40,790
|
|
214
|
-
mirascope/core/google/_call.py,sha256=GJOPyvHzVlSXvJpgQhJFg4wFHFUYsvvrbjhNxU-nSl8,2344
|
|
215
|
-
mirascope/core/google/_call_kwargs.py,sha256=baCYcxWsmV06ATw6nuQhh6FPm3k6oWmKOn0MyjESDGc,372
|
|
216
|
-
mirascope/core/google/call_params.py,sha256=9Dt5m1pPVjpl5Qppz6Egl_9FyGjjz9aGCnXkVps7C_Q,538
|
|
217
|
-
mirascope/core/google/call_response.py,sha256=SuNN7WV5HuZBda36Vd0CLnMuzwcnZbDYDgM6z2P8pjY,7922
|
|
218
|
-
mirascope/core/google/call_response_chunk.py,sha256=4d4YS-NyGxidB_8EkD8V_XzohcBxnTg3h8JEvgrKWPk,4028
|
|
219
|
-
mirascope/core/google/dynamic_config.py,sha256=O6j8F0fLVFuuNwURneu5OpPuu_bMEtbDEFHhJXRT6V0,857
|
|
220
|
-
mirascope/core/google/stream.py,sha256=voWrLRDfoG7NtNSNNRS44x9tNM6Y_i_9_V8bO1-Sx_k,6551
|
|
221
|
-
mirascope/core/google/tool.py,sha256=61a9Ejdxz41pwaab9VE2yvP_J1Aebua3BeRPJ_GJSnE,5138
|
|
222
|
-
mirascope/core/google/_utils/__init__.py,sha256=vL0hx6WKW5lqpUcFTFCFGvmwtR-pts0JzWgCXhaUVrI,388
|
|
223
|
-
mirascope/core/google/_utils/_convert_common_call_params.py,sha256=TF7GWBHcpfzb7XmrxKp3gnaONITYF93lqr4XkSVz_uU,1195
|
|
224
|
-
mirascope/core/google/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=ig4tb7Zanz-tyZpvc9Ncd47a2FNTOS7-wl1PYBq-4cY,879
|
|
225
|
-
mirascope/core/google/_utils/_convert_message_params.py,sha256=n0EbY3QPd4cpYRxWMDwV5s79Lqoj5d2CrcqUOdmn5Jg,13435
|
|
226
|
-
mirascope/core/google/_utils/_get_json_output.py,sha256=sxDgT0Ra6YJynL5_hhakf0dNJEhZm0DfAgfcvC_DAFU,1596
|
|
227
|
-
mirascope/core/google/_utils/_handle_stream.py,sha256=xTaQvAWnJ195YI_h68USvit4-G8T_fogmtBZFhu1qoE,2238
|
|
228
|
-
mirascope/core/google/_utils/_message_param_converter.py,sha256=8N3etkSjoyU0wxcGVw13A5EtI7iphBD4pHG87iUCkZg,8094
|
|
229
|
-
mirascope/core/google/_utils/_setup_call.py,sha256=UoV4McGgSS79PKErjArCmrq1HmpFvq2qegJYoyY4P5U,6469
|
|
230
|
-
mirascope/core/google/_utils/_validate_media_type.py,sha256=qLSoUlv5l5AZJ_PAsGFZmHNNdJHiB3jbFuAR2Ckga6s,1746
|
|
231
|
-
mirascope/core/groq/__init__.py,sha256=8jWCQScdei_TImGMWUwiKnlOwffQqaXdAL-bluFmEL0,798
|
|
232
|
-
mirascope/core/groq/_call.py,sha256=gR8VN5IaYWIFXc0csn995q59FM0nBs-xVFjkVycPjMM,2223
|
|
233
|
-
mirascope/core/groq/_call_kwargs.py,sha256=trT8AdQ-jdQPYKlGngIMRwwQuvKuvAbvI1yyozftOuI,425
|
|
234
|
-
mirascope/core/groq/call_params.py,sha256=FchtsaeohTzYKzY9f2fUIzjgG2y4OtsnRWiHsUBLdi0,1619
|
|
235
|
-
mirascope/core/groq/call_response.py,sha256=wEcOeanmYjD9FmrvgBXs7h6ptbfZcQugjvBl7g2Nq_k,7045
|
|
236
|
-
mirascope/core/groq/call_response_chunk.py,sha256=lhlL7XelfBWzCY8SkCYHnstrTXo14s6aUsMRreuEYR0,3094
|
|
237
|
-
mirascope/core/groq/dynamic_config.py,sha256=AjcXBVeBdMiI6ObHanX3TVMKYxm4iWhXju3m6d-ZWMY,937
|
|
238
|
-
mirascope/core/groq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
-
mirascope/core/groq/stream.py,sha256=hlz9k5XVJfAH290_5RG2cYHiG-7tO7BuiJpDLn--tzY,4457
|
|
240
|
-
mirascope/core/groq/tool.py,sha256=mCUkDHqcZX3Kb44p6gDF9psswWjEBjegCHHbIgoziVc,2319
|
|
241
|
-
mirascope/core/groq/_utils/__init__.py,sha256=Eu1QZZWKg_QhCIQPnjFc2izio83IfRx6NvLJY8mz9fc,386
|
|
242
|
-
mirascope/core/groq/_utils/_convert_common_call_params.py,sha256=vRvabHCsB5h-Bv-dpMpNAHrQ6rrbAyc52V09x-zXTx0,725
|
|
243
|
-
mirascope/core/groq/_utils/_convert_message_params.py,sha256=23fMq7-hnDrYyNQ8AJowwygPxvX7cf4efsXAFMBttwg,4676
|
|
244
|
-
mirascope/core/groq/_utils/_get_json_output.py,sha256=vMbXmHC6OIwkg0TjyCTTUtIww3lfbApNy6yWgoAijGA,1012
|
|
245
|
-
mirascope/core/groq/_utils/_handle_stream.py,sha256=CsjFZYip-Xxo-ZP6dSdNrIW9xSl-feTnYiYv-r39U0s,4605
|
|
246
|
-
mirascope/core/groq/_utils/_message_param_converter.py,sha256=znFVMmYHAMceHZ6ya9QEIZKVjDtYTj5ZU-TP29x0Uho,3587
|
|
247
|
-
mirascope/core/groq/_utils/_setup_call.py,sha256=fsXbP1NpzpJ3rq3oMvNEvgN4TJzudYb2zrW7JwKhbBM,4424
|
|
248
|
-
mirascope/core/litellm/__init__.py,sha256=gsgXatPQTmEESU7h-eZ2DMurDeHYO9wXqKYMS_L3wl8,779
|
|
249
|
-
mirascope/core/litellm/_call.py,sha256=mSCU9nT0ZQTru6BppGJgtudAWqWFs0a6m5q-VYbM-ow,2391
|
|
250
|
-
mirascope/core/litellm/call_params.py,sha256=6bnAHDkHaltwMzaF-REE80kZgZxLldL6QD341a1m-PI,270
|
|
251
|
-
mirascope/core/litellm/call_response.py,sha256=N6oEp4KLyi9wLhwiJ33AyGlY-xVGlE1QvB5NJiohN7E,739
|
|
252
|
-
mirascope/core/litellm/call_response_chunk.py,sha256=cd43hZunl0VFtwInjMIJPIOl3mjomAvbG2Bzg2KZsoY,460
|
|
253
|
-
mirascope/core/litellm/dynamic_config.py,sha256=ZKyVTht2qfJ2ams3HrlRierq2sE01SqiBimh51rE_6A,296
|
|
254
|
-
mirascope/core/litellm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
|
-
mirascope/core/litellm/stream.py,sha256=icE1YxWJlFW30k99mcYRdgKywb3z-3VUvYJFho_Yarg,3442
|
|
256
|
-
mirascope/core/litellm/tool.py,sha256=qG9-CU4OJ1lzIVWXQRGtyGHNu8P6viUfG1vmDupPhg0,287
|
|
257
|
-
mirascope/core/litellm/_utils/__init__.py,sha256=cJLLm3wKSo_t2fMoTD-QzYvOkO7M7dWM5UerYMgHv80,112
|
|
258
|
-
mirascope/core/litellm/_utils/_setup_call.py,sha256=qQJKg5pMIcnvRUdKx65PbCR6dSZDziNg6wlezVrcpls,3493
|
|
259
|
-
mirascope/core/mistral/__init__.py,sha256=75tjaJC9nioECzQumC0FYITjosMsXCO1VzPV1t41PCU,893
|
|
260
|
-
mirascope/core/mistral/_call.py,sha256=p9aSLYVSNgaIGA5SqCgGuT7iWN5WLfwmXubk4IF-w_I,2274
|
|
261
|
-
mirascope/core/mistral/_call_kwargs.py,sha256=vZxlADPx4muIePARGdfKOVQpxpIoaXT9tCG6kY5oxSQ,513
|
|
262
|
-
mirascope/core/mistral/call_params.py,sha256=wWHWI9hRnfloGhQurMwCcka9c1u_TwgcN84Ih6qVBXs,1054
|
|
263
|
-
mirascope/core/mistral/call_response.py,sha256=Qt4M9l5a7u7t2awISdm90SuWJzAhosXmqRj1R1AgfIY,6294
|
|
264
|
-
mirascope/core/mistral/call_response_chunk.py,sha256=HvoPONyOcbMQPWnrG0qBCfiT6PHLaPR9nrByUuT1Cro,3130
|
|
265
|
-
mirascope/core/mistral/dynamic_config.py,sha256=-pzTvXf870NxEhjpgjqPahFWqqifzMhSbvM0kXs2G_s,937
|
|
266
|
-
mirascope/core/mistral/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
-
mirascope/core/mistral/stream.py,sha256=AuLhdYd2oNBNmoRV05mkuEDEgAiqbc6GPT9T3LeV1u8,3616
|
|
268
|
-
mirascope/core/mistral/tool.py,sha256=CUZQksDSc4JtwJSzr21zqhH1QJMMceu1drZmIl7Ntsw,2314
|
|
269
|
-
mirascope/core/mistral/_utils/__init__.py,sha256=OEbMTcG48qVN68NOTsDjXhuX-NrW9mlGUKr3nmBR3gc,389
|
|
270
|
-
mirascope/core/mistral/_utils/_convert_common_call_params.py,sha256=7nDwJ3vtzErHQHKmuNUpiq0yLkBS6mO_6X0JJpHzQbY,663
|
|
271
|
-
mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=ZxS1jyEweJYbjOdb543sPKSI17oUhATbs1JsIYVzKkA,720
|
|
272
|
-
mirascope/core/mistral/_utils/_convert_message_params.py,sha256=nW18Bh4wQ-Nc00hu86d6hE9nC5wk_76dV7CXahfyQHo,4737
|
|
273
|
-
mirascope/core/mistral/_utils/_get_json_output.py,sha256=WxZqpaVec8J5hRYemEHjCK-VhQeAyZ2c-ipWMArXM4o,1243
|
|
274
|
-
mirascope/core/mistral/_utils/_handle_stream.py,sha256=9HowP742tvtXDuq8jO3KGPEnOL92xSP3fMP4SqkjC9E,5083
|
|
275
|
-
mirascope/core/mistral/_utils/_message_param_converter.py,sha256=CCkL4iTei5Ce5ke0h_QnFOdjxulx4Vmyw3a0wDK_T0E,6889
|
|
276
|
-
mirascope/core/mistral/_utils/_setup_call.py,sha256=bVTkWZMVIRKRD-L4ptOxy1QF-KSnlfrveOEYwYqjhqY,5057
|
|
277
|
-
mirascope/core/openai/__init__.py,sha256=lOzSimt1AaWyFW2s_w1So5lIn7K2rpj3bEFicjoiyjM,882
|
|
278
|
-
mirascope/core/openai/_call.py,sha256=ExXdY3rjBbil0ija2HlGMRvcOE2zOOj13rgliw8nmFc,2260
|
|
279
|
-
mirascope/core/openai/_call_kwargs.py,sha256=x53EZmxqroNewR194M_JkRP1Ejuh4BTtDL-b7XNSo2Q,435
|
|
280
|
-
mirascope/core/openai/call_params.py,sha256=TmUID-ssX9XDvLrqoLftxO08_oPB3zCMh-fIErD4s4w,3101
|
|
281
|
-
mirascope/core/openai/call_response.py,sha256=m-y7TePiy0SJALIeTR4Vy0Ph70FHyMwNaeEpaaKyrD0,9045
|
|
282
|
-
mirascope/core/openai/call_response_chunk.py,sha256=GLHiLEb-bRvTtBA9O2zlz8Dzqi7lwladRlNPwM0jv-g,4261
|
|
283
|
-
mirascope/core/openai/dynamic_config.py,sha256=D36E3CMpXSaj5I8FEmtzMJz9gtTsNz1pVW_iM3dOCcw,1045
|
|
284
|
-
mirascope/core/openai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
|
-
mirascope/core/openai/stream.py,sha256=jyI9Q4-Ne4N34n30RzRCYsi8z-hFqXbV_Occ7KrFkW4,6174
|
|
286
|
-
mirascope/core/openai/tool.py,sha256=iJWJQrY3-1Rq5OywzKFO9JUAcglneGD0UtkS3pcA0pg,3154
|
|
287
|
-
mirascope/core/openai/_utils/__init__.py,sha256=Y1nMFOydpFvMWcuoB8TzMD33uZoMIM0C8_kYJkv_JJE,388
|
|
288
|
-
mirascope/core/openai/_utils/_convert_common_call_params.py,sha256=gvxsRdULxiC2137M9l53hUmF0ZkBxFQFurhWBcl_5Cg,739
|
|
289
|
-
mirascope/core/openai/_utils/_convert_message_params.py,sha256=B4pNV-QDR6bLaJVif1pjEogeEASzhPA6YokPGGLQaNw,6219
|
|
290
|
-
mirascope/core/openai/_utils/_get_json_output.py,sha256=Q_5R6NFFDvmLoz9BQiymC5AEyYvxKPH2_XnOQZ8hIkU,1215
|
|
291
|
-
mirascope/core/openai/_utils/_handle_stream.py,sha256=adsHAcTtGyMMFU9xnUsE4Yd2wrhSNSjcVddkS74mli0,5226
|
|
292
|
-
mirascope/core/openai/_utils/_message_param_converter.py,sha256=r6zJ54xHMxxJ-2daY8l5FyDIa0HsdXeP0cN1wHNt6-E,4101
|
|
293
|
-
mirascope/core/openai/_utils/_setup_call.py,sha256=8zxNZrWcZgBxi4kwzeXHsxFoJW0n0MZYSmSAYj3ossk,5500
|
|
294
|
-
mirascope/core/vertex/__init__.py,sha256=eg_kNX956OYABi3leev5GyDg0KK8QopgztBtrMX7TGE,1435
|
|
295
|
-
mirascope/core/vertex/_call.py,sha256=ebQmWoQLnxScyxhnGKU3MmHkXXzzs_Sw2Yf-d3nZFwU,2323
|
|
296
|
-
mirascope/core/vertex/_call_kwargs.py,sha256=6JxQt1bAscbhPWTGESG1TiskB-i5imDHqLMgbMHmyfI,353
|
|
297
|
-
mirascope/core/vertex/call_params.py,sha256=ISBnMITxAtvuGmpLF9UdkqcDS43RwtuuVakk01YIHDs,706
|
|
298
|
-
mirascope/core/vertex/call_response.py,sha256=ATzIX1uSxMxzmh3R-PW_wmbxevyBEx6-Za9Fpf0epWM,6258
|
|
299
|
-
mirascope/core/vertex/call_response_chunk.py,sha256=MDCeDjzFonqRpFdoQnfJRGDPiJakLB9n-o2WyOGLKNw,2926
|
|
300
|
-
mirascope/core/vertex/dynamic_config.py,sha256=KISQf7c2Rf1EpaS_2Ik6beA1w9uz_dAvMBk4nQcrdaM,809
|
|
301
|
-
mirascope/core/vertex/stream.py,sha256=FYhCtYRfQ6lEccHO5ZKVrQJ8iafpelVFIzykO3xVjGE,3544
|
|
302
|
-
mirascope/core/vertex/tool.py,sha256=l8DGC6rh6mvXyDVzAzOMYtxQyym-XLlJSr7082TVGK0,3173
|
|
303
|
-
mirascope/core/vertex/_utils/__init__.py,sha256=pD3-tMQD7Oe-k6T50wKb0vAsQ-nt4XFbJVam7m3leZg,388
|
|
304
|
-
mirascope/core/vertex/_utils/_convert_common_call_params.py,sha256=v-kKo6vQdlQiQQnA3hRaS7NWCdzheVE0OGbLV4-8XLE,1056
|
|
305
|
-
mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=jkZM8hpkZjR1izwSyKTVwkkN_nfLROwx0V_yQsVDiB8,761
|
|
306
|
-
mirascope/core/vertex/_utils/_convert_message_params.py,sha256=e2Q5B-CrNTNJ1b7lDobs96eAJnOQDJq5PSuuouD5TUE,7476
|
|
307
|
-
mirascope/core/vertex/_utils/_get_json_output.py,sha256=NxbdPPde9lyWSaWQYNPFgmFfOLwNBuyLKwXcS6q6GHw,1298
|
|
308
|
-
mirascope/core/vertex/_utils/_handle_stream.py,sha256=zUhwnkGUdQvfU8AJ3u975HoNR1BfaWH7_VBcmBaNmuU,1139
|
|
309
|
-
mirascope/core/vertex/_utils/_message_param_converter.py,sha256=wtysOaa9JsodMrAy1xUBWbIIjt9bIMTjBBfb3LpKFOc,5460
|
|
310
|
-
mirascope/core/vertex/_utils/_setup_call.py,sha256=9LXR-8sFumEJvUYm58VQTBMkZMOR45K86-sTkA7xuFY,5110
|
|
311
|
-
mirascope/core/xai/__init__.py,sha256=_5TaPqkZI-kU8FhF7ZSZz6I2cnnCgOVIM36hGiDh_Kc,699
|
|
312
|
-
mirascope/core/xai/_call.py,sha256=gMCRzQFMPsWclPoyY--8189ajzX7BVkcwsGEdZALBLQ,2317
|
|
313
|
-
mirascope/core/xai/call_params.py,sha256=1zRuST6shKUI1A_Fw6kqybObHiPpO2Nn0GEioOAtows,266
|
|
314
|
-
mirascope/core/xai/call_response.py,sha256=u-hfLQtazSVBz4DnKLCuz-R2oT0ki21PhUEueJcH-Rw,440
|
|
315
|
-
mirascope/core/xai/call_response_chunk.py,sha256=lnLNhzG1vFUYCgy267ZvteqrLtkddrrsRjfKS70YSdE,448
|
|
316
|
-
mirascope/core/xai/dynamic_config.py,sha256=GOVAuS1eso4qrTG1SNAfs6TWB8aOuWFtDXcm5BTVFr8,288
|
|
317
|
-
mirascope/core/xai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
|
-
mirascope/core/xai/stream.py,sha256=qnGhY8FCbq4MRYyL_1_WagLhjL5v_Pzu3HOrcQ7D03Q,2159
|
|
319
|
-
mirascope/core/xai/tool.py,sha256=W_UaEatgrtHkuDVILQSaBoomN3zFMS9YnXky-Py6MRY,275
|
|
320
|
-
mirascope/core/xai/_utils/__init__.py,sha256=gHldtQYziYseLvCM0yvH-O87sFdvbP5pvz66hEllaj0,108
|
|
321
|
-
mirascope/core/xai/_utils/_setup_call.py,sha256=0pCy8SqEQQEFUrCYTe6EEn_z7GuTY7-Gb9hnwkoBbH8,3523
|
|
322
|
-
mirascope/experimental/graphs/__init__.py,sha256=xwvU6T5lqfMXeHZ0IN8cepzkFkSURpeeV7ozokjzaBY,162
|
|
323
|
-
mirascope/experimental/graphs/finite_state_machine.py,sha256=xsiguJCW7nyMuITezYKHevM1R2LIs1rdMeqw5kmJITs,26470
|
|
324
|
-
mirascope/integrations/__init__.py,sha256=ieLWknpbkO_gABIVl9790YTTCCRO9ISQ35-1SeOSU0Q,392
|
|
325
|
-
mirascope/integrations/_middleware_factory.py,sha256=v-S-hVU5S7P9Lu8PiKyUhmtp_rbQaIJ1droC8BcKBAE,17362
|
|
326
|
-
mirascope/integrations/tenacity.py,sha256=jk64MBncCMbgoQMaXQgjxg9Y9UstRqTt2RCeA86pdCU,326
|
|
327
|
-
mirascope/integrations/langfuse/__init__.py,sha256=wG3eBXwGPbFedB28L1K_q1iCf_dERjVmTDCWK4nHZyM,71
|
|
328
|
-
mirascope/integrations/langfuse/_utils.py,sha256=FPqmiBhzWKitFXn6RkWJ1unH8z_ebNLtaBuRD73fQLs,3430
|
|
329
|
-
mirascope/integrations/langfuse/_with_langfuse.py,sha256=UTA--jCB9K8SqUmaVz_X_rBJA9W0adpbrPWJtPOFU-4,1880
|
|
330
|
-
mirascope/integrations/logfire/__init__.py,sha256=OWceKOygazwUG1XLGvSu3T2-AqnuBxf3--fbwGZ1G9o,68
|
|
331
|
-
mirascope/integrations/logfire/_utils.py,sha256=2BU37ucJPPYviQvMbrD0Qcqhh5hLifYN7PeaBK4bAk0,7108
|
|
332
|
-
mirascope/integrations/logfire/_with_logfire.py,sha256=DfN6QbCrTlR1K3bS4M43rP8rvYKPgAqfx2k0MpzHY3g,1799
|
|
333
|
-
mirascope/integrations/otel/__init__.py,sha256=OzboYfm3fUNwKTuu08KX83hQHYI4oZYN2DjgXoKcJS4,225
|
|
334
|
-
mirascope/integrations/otel/_utils.py,sha256=SCVb3MpcpqLpCpumJEbEdINceNdusnyT6iuKPz66sBc,8778
|
|
335
|
-
mirascope/integrations/otel/_with_hyperdx.py,sha256=f17uxXQk5zZPtyj6zwPwJz5i7atsnUPOoq1LqT8JO0E,1637
|
|
336
|
-
mirascope/integrations/otel/_with_otel.py,sha256=tbjd6BEbcSfnsm5CWHBoHwbRNrHt6-t4or-SYGQSD-w,1659
|
|
337
|
-
mirascope/llm/__init__.py,sha256=LI3YkfIZLJ_Pzkm2x4W0HbKO-EHDDojc5oYp7qO6YNs,508
|
|
338
|
-
mirascope/llm/_call.py,sha256=_YOmo5Y4NU2Jz1XcgEEI94UCyzgiAFrKwIH7o2KQ5vM,13933
|
|
339
|
-
mirascope/llm/_context.py,sha256=vtHJkLlFfUwyR_hYEHXAw3xunpHhLn67k4kuFw50GR8,12481
|
|
340
|
-
mirascope/llm/_override.py,sha256=m4MdOhM-aJRIGP7NBJhscq3ISNct6FBPn3jjmryFo_Q,112292
|
|
341
|
-
mirascope/llm/_protocols.py,sha256=HXspRAC0PduGqbh2BM0CGe5iVj7CC3ZKMPAYvFvbDNQ,16406
|
|
342
|
-
mirascope/llm/_response_metaclass.py,sha256=6DLQb5IrqMldyEXHT_pAsr2DlUVc9CmZuZiBXG37WK8,851
|
|
343
|
-
mirascope/llm/call_response.py,sha256=tJ6jHZ4PFaYf_4Hn9OihlVqOxNEM9d6gAi4Bo15XXnQ,4825
|
|
344
|
-
mirascope/llm/call_response_chunk.py,sha256=bZwO43ipc6PO1VLgGSaAPRqCIUyZD_Ty5oxdJX62yno,1966
|
|
345
|
-
mirascope/llm/stream.py,sha256=GtUKyLBlKqqZTOKjdL9FLInCXJ0ZOEAe6nymbjKwyTQ,5293
|
|
346
|
-
mirascope/llm/tool.py,sha256=MQRJBPhP1d-OyOz3PE_VsKmSXca0chySyYO1U9OW8ck,1824
|
|
347
|
-
mirascope/mcp/__init__.py,sha256=1tvG-fRD-_mr2vF3M49OgTLR7Vw8zdT6LucxnY4prF8,282
|
|
348
|
-
mirascope/mcp/_utils.py,sha256=yLTSGApgzTq-0jrU3bkORlaCG4XvhaFhsfr4YZpT2gA,9455
|
|
349
|
-
mirascope/mcp/client.py,sha256=ZK88o4UelR9htFWAWDbw084ZTrRL8tONdxlIX62adnM,5608
|
|
350
|
-
mirascope/mcp/server.py,sha256=weXBk9ZmUcfZ5SZcR-dGRxvVXRMpn5UsE6ancnK1HZk,12402
|
|
351
|
-
mirascope/mcp/tools.py,sha256=IT7CEqbBBiFc7mkaRpWIepUpuy_oSdcEa4cwGopEYWc,3079
|
|
352
|
-
mirascope/retries/__init__.py,sha256=xw3jJm-vL4kR10VaKN6A8KGoP2CsAg5_Gy1eWVMgYhQ,249
|
|
353
|
-
mirascope/retries/fallback.py,sha256=yT-vg7QkDwLHidTenq0HoX0RzbPc2G6IXILGluhzdGc,5063
|
|
354
|
-
mirascope/retries/tenacity.py,sha256=stBJPjEpUzP53IBVBFtqY2fUSgmOV1-sIIXZZJ9pvLY,1387
|
|
355
|
-
mirascope/tools/__init__.py,sha256=wsMYzSvGlFblPcsIF2YV92eZlDHSraWbjB5TicORUyA,959
|
|
356
|
-
mirascope/tools/base.py,sha256=Bdnf9Te2tnPnvBS-dEeXVPv_jn5-z9FY_MQmBwP1ijU,3429
|
|
357
|
-
mirascope/tools/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
|
-
mirascope/tools/system/_docker_operation.py,sha256=eosRLlV8GjXd--7AADEnS8DuMGMB-n8n6jHrZha4vfE,6138
|
|
359
|
-
mirascope/tools/system/_file_system.py,sha256=LclUoBjzk9MWK8UgQn2ulD0ofGpUncEcDQ_O9qdglmo,8892
|
|
360
|
-
mirascope/tools/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
mirascope/tools/web/_duckduckgo.py,sha256=vKPcBW_wXAB1lB_W9BW5pmRlIGBZL82AbhvwpOdENvY,3684
|
|
362
|
-
mirascope/tools/web/_httpx.py,sha256=9v-6_ALr-D5qf3TbJpO3-JoG1-TpH1fR5K2REju1lPQ,4566
|
|
363
|
-
mirascope/tools/web/_parse_url_content.py,sha256=Wa5Omjx-q-Q-LxYlN42wEkUAhPpuLfYh1qSTjtv8Jdc,3374
|
|
364
|
-
mirascope/tools/web/_requests.py,sha256=ExdzaKs6I2hx-MFtFNYq3xeRF8ewScm75KCf-FWNptk,1887
|
|
365
|
-
mirascope/v0/__init__.py,sha256=BfM7dzuJssYjRpI-5A8quXvVlyeLlnwss0J0WTCVvU4,3115
|
|
366
|
-
mirascope/v0/anthropic.py,sha256=G_36FJlyJ5QNxPn36DltFVcxYHhA_bDfjWjXp_L7xuE,1492
|
|
367
|
-
mirascope/v0/openai.py,sha256=01F_yPeP1h-UO5U7DtmB8xfKhAmGs7e3yzG818q0qoM,1655
|
|
368
|
-
mirascope/v0/base/__init__.py,sha256=IvAeqVvDQwQc6hKgQNp-N9mcuXcDQ4XrWgLinYiQR10,248
|
|
369
|
-
mirascope/v0/base/calls.py,sha256=7JmDZbWSNkQ3njYTw0C8Dk73NttOwusACml4s7sRy1w,4156
|
|
370
|
-
mirascope/v0/base/extractors.py,sha256=6PASapliHGrMNVsO3IGFDTSmv22nPkVdg0zgPky6LDY,4246
|
|
371
|
-
mirascope/v0/base/ops_utils.py,sha256=1Qq-VIwgHBaYutiZsS2MUQ4OgPC3APyywI5bTiTAmAE,8161
|
|
372
|
-
mirascope/v0/base/prompts.py,sha256=FM2Yz98cSnDceYogiwPrp4BALf3_F3d4fIOCGAkd-SE,1298
|
|
373
|
-
mirascope/v0/base/types.py,sha256=ZfatJoX0Yl0e3jhv0D_MhiSVHLYUeJsdN3um3iE10zY,352
|
|
374
|
-
mirascope/v0/base/utils.py,sha256=XREPENRQTu8gpMhHU8RC8qH_am3FfGUvY-dJ6x8i-mw,681
|
|
375
|
-
mirascope-1.25.6.dist-info/METADATA,sha256=u7K4te7sbm5FJ_Z4RRn_5wEplYHymZJzjwqROENuNgw,8542
|
|
376
|
-
mirascope-1.25.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
377
|
-
mirascope-1.25.6.dist-info/licenses/LICENSE,sha256=LAs5Q8mdawTsVdONpDGukwsoc4KEUBmmonDEL39b23Y,1072
|
|
378
|
-
mirascope-1.25.6.dist-info/RECORD,,
|