mirascope 1.25.7__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.7.dist-info → mirascope-2.0.0.dist-info}/WHEEL +1 -1
- {mirascope-1.25.7.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 -154
- 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.7.dist-info/METADATA +0 -169
- mirascope-1.25.7.dist-info/RECORD +0 -378
|
@@ -0,0 +1,423 @@
|
|
|
1
|
+
mirascope/__init__.py,sha256=V3T7JlZJ4G9dA5lmq5eTtLYUajbQmTvT3-tUlv8o-fg,265
|
|
2
|
+
mirascope/_stubs.py,sha256=iq5hxVYdLEZ_b2fyBNeY5HXcL50Dcw22HBaBr3ydPgU,12179
|
|
3
|
+
mirascope/api/__init__.py,sha256=FL0OpTweJC0SUpOnZJddDzeC0JwxPDkIaL78VpeMtko,498
|
|
4
|
+
mirascope/api/client.py,sha256=3JrrC2zNlEttAUXHGN1kbDpGczyI9zCNiSZ3dEyqtAI,8253
|
|
5
|
+
mirascope/api/settings.py,sha256=fljRPNm5w4FSAiY5fLQfsx2mk75o5fDmObuUQFAVlAI,2635
|
|
6
|
+
mirascope/api/_generated/README.md,sha256=7-B_qhXCHaXKX9FPG-G112hKmXM64uM6eNqmSdpaL_8,6079
|
|
7
|
+
mirascope/api/_generated/__init__.py,sha256=ZIX_SjuD8PIB3gifL9sDgEt8zqfEFTv2IvjK-_GzOsw,16800
|
|
8
|
+
mirascope/api/_generated/client.py,sha256=Xh_VGnnbdZaSUpWzjGWu-1lwoZ_6isz9eU-BATjo_vs,8775
|
|
9
|
+
mirascope/api/_generated/environment.py,sha256=eKhvb5ZF3qzJj2OtEI7E9STAquQ1VivYLdmHRc4hFV4,262
|
|
10
|
+
mirascope/api/_generated/reference.md,sha256=Zb8SXjz4ZRLdaGdWGzCldyCwykWkmyotNK2qD3XJX9A,53535
|
|
11
|
+
mirascope/api/_generated/annotations/__init__.py,sha256=z1rsEyNXWcegCIeC-Y2P9TBI0fVbNs1FohqSJiqrK84,987
|
|
12
|
+
mirascope/api/_generated/annotations/client.py,sha256=rikFtCmou4D4hSZqtaxFnIc7ZKMt86XztUyh4pMcXII,13818
|
|
13
|
+
mirascope/api/_generated/annotations/raw_client.py,sha256=EEC2Rr5KT_WmLn9aFgQxApnxHGl3MdOOcoYAti4syhE,54205
|
|
14
|
+
mirascope/api/_generated/annotations/types/__init__.py,sha256=-U6nlJtxOBmo1di8pon6SOxRJADXO3tmK5300zA2wDo,1455
|
|
15
|
+
mirascope/api/_generated/annotations/types/annotations_create_request_label.py,sha256=XxGv-GJp9jQtQv0Df5kRxGo1qGfrmJ0QqspAwwIa58M,169
|
|
16
|
+
mirascope/api/_generated/annotations/types/annotations_create_response.py,sha256=4sNJKTHBe8399-WvUsfyePR3PWbMwtfeZATiND0yX6U,1912
|
|
17
|
+
mirascope/api/_generated/annotations/types/annotations_create_response_label.py,sha256=sgU9wOsFjiHVuEDOYMLPbb7l9GaUvUBVrjFZyLqnIH0,170
|
|
18
|
+
mirascope/api/_generated/annotations/types/annotations_get_response.py,sha256=LOSoUPx5vBp_1FK46XKMhe8ncmtgVnneGeHv7vZpLYc,1900
|
|
19
|
+
mirascope/api/_generated/annotations/types/annotations_get_response_label.py,sha256=UL9KM8UB3r0QWwt74vxfpNgxUME7sOF2jkodbrxhrWQ,167
|
|
20
|
+
mirascope/api/_generated/annotations/types/annotations_list_request_label.py,sha256=kJoxcE3eBevTNwZ-XoqGNKLWa2jR57ItfW3RRpn6b9Q,167
|
|
21
|
+
mirascope/api/_generated/annotations/types/annotations_list_response.py,sha256=CEYb-7xWHEhPjEjYYA-sm-L7h2y7636nb7_2PiJPbUE,698
|
|
22
|
+
mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item.py,sha256=zuIm_tzzpNvmPhVs3ZrVgH9Hs9FW9gBSZ_jQX9tHZWY,1975
|
|
23
|
+
mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item_label.py,sha256=LmmRwYPPyhZqPD1dx3gFc6UP2kggglVm3Uf9UzQCBlY,183
|
|
24
|
+
mirascope/api/_generated/annotations/types/annotations_update_request_label.py,sha256=h5kV2c_2xGbonMwIawEkJMfCjCLQM5GG696vBf9D8X4,169
|
|
25
|
+
mirascope/api/_generated/annotations/types/annotations_update_response.py,sha256=5C_ULw6_Dy-pYBa7DQu-rpWg3WUx7zuHgfhtm2JOu0U,1912
|
|
26
|
+
mirascope/api/_generated/annotations/types/annotations_update_response_label.py,sha256=4RSJF4EayZ36u6ElR011HtXukTD5yWMVffN97hWPBfU,170
|
|
27
|
+
mirascope/api/_generated/api_keys/__init__.py,sha256=YxpCHmd7eSJqWJRUKXr6f4FP8o7LQxUy5qfbrW4M_eQ,367
|
|
28
|
+
mirascope/api/_generated/api_keys/client.py,sha256=EVoiFaKo_AZx6fbk_mHkpO8Dhy55RZE7feD5_vkC2dA,13252
|
|
29
|
+
mirascope/api/_generated/api_keys/raw_client.py,sha256=krocdRnvdrWxDgQoJejhAwGCznu2KAiYkhXDl64e3DI,46783
|
|
30
|
+
mirascope/api/_generated/api_keys/types/__init__.py,sha256=r4EapaWDx9Yrm_1VkToXpEDmv1nzc3oMjg2ZgOWWQ1k,491
|
|
31
|
+
mirascope/api/_generated/api_keys/types/api_keys_create_response.py,sha256=HRHNrlUyUcb9UfZU5E45EAsjbN4QkxaBqRe01XLjdRM,1097
|
|
32
|
+
mirascope/api/_generated/api_keys/types/api_keys_get_response.py,sha256=zB81EPfqZiFjOFxi_0bS8j1MjyTAY1M5kM97ii4j-Qo,1081
|
|
33
|
+
mirascope/api/_generated/api_keys/types/api_keys_list_all_for_org_response_item.py,sha256=dHhQYENzAZmm7dMqGpmPElqK32iKViZYn3ogXfV-w6k,1438
|
|
34
|
+
mirascope/api/_generated/api_keys/types/api_keys_list_response_item.py,sha256=RBo_VKmYXOHaNpyk1DN9a5U5ylMGW5w7O2CEfceJrxQ,1086
|
|
35
|
+
mirascope/api/_generated/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
|
|
36
|
+
mirascope/api/_generated/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
37
|
+
mirascope/api/_generated/core/client_wrapper.py,sha256=VKeoRFhVJQlHVWupwP-uXTSe0W6IcI_zMTyktTwi7eA,1515
|
|
38
|
+
mirascope/api/_generated/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
39
|
+
mirascope/api/_generated/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
40
|
+
mirascope/api/_generated/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
41
|
+
mirascope/api/_generated/core/http_client.py,sha256=QurkBvCZZz2Z1d8znp4M2YbOXebBUPcPXRhPIS84Wvk,21214
|
|
42
|
+
mirascope/api/_generated/core/http_response.py,sha256=4uOAtXXFTyFXHLXeQWSfQST9PGcOCRAdHVgGTxdyg84,1334
|
|
43
|
+
mirascope/api/_generated/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
|
|
44
|
+
mirascope/api/_generated/core/pydantic_utilities.py,sha256=HxbbISfaP1XBvzbIkc0ZcF_GHKd9BfYsJAcFh9B126k,10787
|
|
45
|
+
mirascope/api/_generated/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
|
|
46
|
+
mirascope/api/_generated/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
47
|
+
mirascope/api/_generated/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
48
|
+
mirascope/api/_generated/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
|
|
49
|
+
mirascope/api/_generated/docs/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
50
|
+
mirascope/api/_generated/docs/client.py,sha256=bc0oKpBYoy2EnRx0wg1p5xISjG6sviq3lBKTuURRS0Q,2479
|
|
51
|
+
mirascope/api/_generated/docs/raw_client.py,sha256=4mROH4uAY6LGd7YWPvmSrGeHd2CI5-DxIFvgYXT1MYQ,6821
|
|
52
|
+
mirascope/api/_generated/environments/__init__.py,sha256=rzvE2sTAjdFSPLj0qf81Heoihqp-4mKs6fh_LrVgvJQ,677
|
|
53
|
+
mirascope/api/_generated/environments/client.py,sha256=XlF6-CwbKAQcsJMYsPuZIV65yyoWH2StspZQO9g9DZE,16289
|
|
54
|
+
mirascope/api/_generated/environments/raw_client.py,sha256=YA3aiupt3FdgrEmBVBmFaAlgd0jyVa36mKP2K6c_ILg,58937
|
|
55
|
+
mirascope/api/_generated/environments/types/__init__.py,sha256=V0L42qFnzjz8tr8gTRUXw86Nby9qKc3wEvpRUpeiuqc,987
|
|
56
|
+
mirascope/api/_generated/environments/types/environments_create_response.py,sha256=cmuKzDllXRM__ZUfetHAWF4Jn-BhJFp6t6-0ZPL7ABA,716
|
|
57
|
+
mirascope/api/_generated/environments/types/environments_get_analytics_response.py,sha256=yWi0_OAGDOvwVKzyCgmyS54z-t4Gy7rS3_rC9qJ2AqM,2320
|
|
58
|
+
mirascope/api/_generated/environments/types/environments_get_analytics_response_top_functions_item.py,sha256=u1KmofDMm5W8htGzw-4TFDO8p73ojI4g9T_TnAn74QQ,743
|
|
59
|
+
mirascope/api/_generated/environments/types/environments_get_analytics_response_top_models_item.py,sha256=lEADv9MoqNCqtJHSQaDc3VnMPazoO4kYqD6P55fKTqE,593
|
|
60
|
+
mirascope/api/_generated/environments/types/environments_get_response.py,sha256=FLmCOukQYh0V9ymZeyRCVjur-IVjz6tPFemhIH07Ep0,713
|
|
61
|
+
mirascope/api/_generated/environments/types/environments_list_response_item.py,sha256=o5vuBGT6PXMgEXhN8SB2Q3h-tzmzrob6wZSExM9TOrk,718
|
|
62
|
+
mirascope/api/_generated/environments/types/environments_update_response.py,sha256=NSn9K_ixPzvLuU7xF2_ON3K4_qHAgMfWsgmcyHCqgiY,716
|
|
63
|
+
mirascope/api/_generated/errors/__init__.py,sha256=ATkpJBhBcmnkQpvZn677H4722NI_9-k2j1aSyEaEaT0,785
|
|
64
|
+
mirascope/api/_generated/errors/bad_request_error.py,sha256=sXtevRE-mhlGmbQDAaseWN4KqYFaFSNDBiViPXcrPoE,369
|
|
65
|
+
mirascope/api/_generated/errors/conflict_error.py,sha256=vitWOI-KwPr7cu4J8H_3NMaAB7oVaIR_fmR_IH2bzAk,367
|
|
66
|
+
mirascope/api/_generated/errors/forbidden_error.py,sha256=MCz9k9nUfJT1aDTTM1c3bDK0ANV4vSliSMZynXLBHV0,397
|
|
67
|
+
mirascope/api/_generated/errors/internal_server_error.py,sha256=t1-kpoDC2biEuoE-Ne8v1kuQswvsIEwt_xPPoBmGG00,342
|
|
68
|
+
mirascope/api/_generated/errors/not_found_error.py,sha256=e1m0KLZHBW5nqqnVzLl589k3AXdBgJGiafijhwY9tFI,385
|
|
69
|
+
mirascope/api/_generated/errors/payment_required_error.py,sha256=EDc0-GMpzpR7P0wc9jS_vWtunA6ICnLremtv9WjJsm8,438
|
|
70
|
+
mirascope/api/_generated/errors/service_unavailable_error.py,sha256=gLGMVEFuS7rzLJHosTDv4x_OVOdR65I1aZBn73waCtM,377
|
|
71
|
+
mirascope/api/_generated/errors/too_many_requests_error.py,sha256=uOvzFzeCaBzFI-uENVev0OmDJHLjNTHVQSxxffjnjp0,413
|
|
72
|
+
mirascope/api/_generated/errors/unauthorized_error.py,sha256=d5MEGAcmZ65n2bx1WAVa4goJ2q7uugy6YZyGCs_zHoM,400
|
|
73
|
+
mirascope/api/_generated/functions/__init__.py,sha256=oLjCzn-MKrHIxGV5z2elOK4dG4esHoJwMQFRjbEK7r4,1381
|
|
74
|
+
mirascope/api/_generated/functions/client.py,sha256=vLykxRH6HVXeG7D7YPFmU6ttSRXZlTSNDb-hXtABCaM,16462
|
|
75
|
+
mirascope/api/_generated/functions/raw_client.py,sha256=6eqPk4YI7o1X4L-tQ3n2RZkCkag3gKiTADH3vW_Pww0,72462
|
|
76
|
+
mirascope/api/_generated/functions/types/__init__.py,sha256=ePNVxcxuQxjPllnMOXAB-4pVo1uW2aaX_NPv4EPR3hQ,2155
|
|
77
|
+
mirascope/api/_generated/functions/types/functions_create_request_dependencies_value.py,sha256=A-bx9nZE0aYoNLuLo6xQYe2GvvUq76ZiBfdJOZ31n2c,603
|
|
78
|
+
mirascope/api/_generated/functions/types/functions_create_response.py,sha256=-NIC1-HuzDHpAfnM4bYgSb1V3EkffqJ3Ud_Mi1LH_iQ,1642
|
|
79
|
+
mirascope/api/_generated/functions/types/functions_create_response_dependencies_value.py,sha256=uH0JsZ4QbarNF1eiVT_go8GbMVndHeBRPe7MOemlpJc,604
|
|
80
|
+
mirascope/api/_generated/functions/types/functions_find_by_hash_response.py,sha256=yjm77Q3bPditf4xK7tVIPR9DkYWoGtt2nAup8px42EE,1676
|
|
81
|
+
mirascope/api/_generated/functions/types/functions_find_by_hash_response_dependencies_value.py,sha256=ZrhLgxa2vDThOc9AgLjSiYMjFBQfLaT-6hRvNgx6pog,608
|
|
82
|
+
mirascope/api/_generated/functions/types/functions_get_by_env_response.py,sha256=IdmzapxETNVX9ATkfl7VK2V7ZOO3ULXipA7UWGNPUW4,1767
|
|
83
|
+
mirascope/api/_generated/functions/types/functions_get_by_env_response_dependencies_value.py,sha256=Z1BTN_3xh_VKtQj872eirU5o6dAbmUhv7bzjzKddhas,628
|
|
84
|
+
mirascope/api/_generated/functions/types/functions_get_response.py,sha256=JLyHjIuf4tWSX6KNjt9_mobSZC9pUuGfwLFOno3i6pw,1630
|
|
85
|
+
mirascope/api/_generated/functions/types/functions_get_response_dependencies_value.py,sha256=OiD6Z39V4cDImDRILIfQfgVlMH3idJz9RQ8p5jG6DWE,601
|
|
86
|
+
mirascope/api/_generated/functions/types/functions_list_by_env_response.py,sha256=DnFTgOg7jP_WkghF8FCJM9zDE8SrUgGzQUW7NhSfJYc,735
|
|
87
|
+
mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item.py,sha256=zO2mD0td0OJQdPxWJHmdEJqgdhzSENS90ApQxKDrtAM,1860
|
|
88
|
+
mirascope/api/_generated/functions/types/functions_list_by_env_response_functions_item_dependencies_value.py,sha256=hE_610_LWn5YVoxRiwbW1KHBTR9a3Fp1eFYIPhFdSjY,642
|
|
89
|
+
mirascope/api/_generated/functions/types/functions_list_response.py,sha256=QFrlBjZugHKQ6oL1bqSvyhg1Tal6ZQG1ZW9rEN8PPMA,682
|
|
90
|
+
mirascope/api/_generated/functions/types/functions_list_response_functions_item.py,sha256=oPJKwQdKo8M0vXVA333SLMI9M-LfpohjEfEn3ktMjl4,1711
|
|
91
|
+
mirascope/api/_generated/functions/types/functions_list_response_functions_item_dependencies_value.py,sha256=wPsajRsxnZ1Ut9dxmnMWOibrJ38IwiR0v-_6x9_P4Dg,615
|
|
92
|
+
mirascope/api/_generated/health/__init__.py,sha256=UN1u0qzFG8zDGf3CABrpMNNEP467lQZKLQfTOpkwm2E,215
|
|
93
|
+
mirascope/api/_generated/health/client.py,sha256=iqLicxinxNofeZfFkQVOv9Xv0o37amPQbDawA3UCVO8,2520
|
|
94
|
+
mirascope/api/_generated/health/raw_client.py,sha256=HzaJEzCxRPcORHhL2nLBC6QsG2vwSWxWJ374cQoa3Hw,6529
|
|
95
|
+
mirascope/api/_generated/health/types/__init__.py,sha256=dYIZPgww1FuKOKJTeUWMDad1XYTzQaxp8jbwsfI_THI,272
|
|
96
|
+
mirascope/api/_generated/health/types/health_check_response.py,sha256=OCmNPA0BN9mfNoQKzl1aS2uFwzG60su540pZtC8gFJI,659
|
|
97
|
+
mirascope/api/_generated/health/types/health_check_response_status.py,sha256=eCSX3a4cA5zETaIbLvtYkSeS3585DuJa9VnM1fw3VxE,155
|
|
98
|
+
mirascope/api/_generated/organization_invitations/__init__.py,sha256=4LHOmmo5wJRLPqyiZ3jVG_VW3LK-VQVbFUfTwweMbcw,1247
|
|
99
|
+
mirascope/api/_generated/organization_invitations/client.py,sha256=4vpnNlGWnIJ4L8PAkUxn5iU4dTv_qCIP-gMZ6Ap2rCk,13992
|
|
100
|
+
mirascope/api/_generated/organization_invitations/raw_client.py,sha256=MQ1AopdvO0xGMuxTnd-2nS0ytalLW2IFp2D9PUysUfI,58289
|
|
101
|
+
mirascope/api/_generated/organization_invitations/types/__init__.py,sha256=eoOMa4pr1aks2d79z2YXDV8JsPs2giYVC-KVLxFWmos,1956
|
|
102
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response.py,sha256=pbvwLUaCkCQ5fuPKlh2OR0U5JINptYKHL4E_g9JusmA,1129
|
|
103
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_accept_response_role.py,sha256=s7pe7kJSJ_QZuvK1GNmD3v8Kwyy8GhDPrE7wokylXbw,199
|
|
104
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_create_request_role.py,sha256=BFbrM6Zvoeu-kkuIwChUbglZHqVMc0JCP0GeF4F5rOs,189
|
|
105
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response.py,sha256=WMbw_BXCN5qxCn9_aq9qgis1lJMX77SUuT8V2XK5c4M,1794
|
|
106
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_role.py,sha256=jut1aUdREuXC_JmnvmIzjtV1ypL-Xf28chsE3GnfYmA,190
|
|
107
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_create_response_status.py,sha256=I4Q5HEOVq6Mcc8Yc0TWRAXmMvCWwaNxt3THnIm20NwM,207
|
|
108
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response.py,sha256=WYeQx8nRE2qoRXwni8XTK1hWpRDChyD0q48k0Gxd4lU,1773
|
|
109
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_role.py,sha256=yv2ZNNawl2HguL7g2wK791Z2TyzsohLku-Myt4K7s5o,187
|
|
110
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_get_response_status.py,sha256=XTDkOAnAZJjNJTyMrcQmEAHW-Raj4vAGkMtkC1CQt8g,204
|
|
111
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item.py,sha256=XUI64NgbuEXV_YsTFz8f5xvslWzyrVrT1XJagdlY5qw,1810
|
|
112
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_role.py,sha256=QIeyL8Hepqmv1wZOVB3kd5_510xJlu382QTBEAOS6pw,192
|
|
113
|
+
mirascope/api/_generated/organization_invitations/types/organization_invitations_list_response_item_status.py,sha256=kWWYhN14j5YyruD4uqmLcpFx1AcdenHDhVQqFAVDI78,209
|
|
114
|
+
mirascope/api/_generated/organization_memberships/__init__.py,sha256=prLRAN0NE2qCEyEKZEOF3LGS0hKHEEE-18ALm2ALo9w,593
|
|
115
|
+
mirascope/api/_generated/organization_memberships/client.py,sha256=gch4fhbKXom6t5ZFt3bvvTWyatdFmfIlWUIYF4Qrc_A,7830
|
|
116
|
+
mirascope/api/_generated/organization_memberships/raw_client.py,sha256=BaKyBRGosp_Sub4Ij-sn2fUgUoWLF8-zjRdgI3lfcIM,28058
|
|
117
|
+
mirascope/api/_generated/organization_memberships/types/__init__.py,sha256=UVNVtiWUeJhAR3pI_Ge3f1INOZ1A3Sa50sT8XVie_zE,880
|
|
118
|
+
mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item.py,sha256=XEcHxcEHu25EnIANzWcywe_sZvhTEcT6w7WtYlDA7Jw,1084
|
|
119
|
+
mirascope/api/_generated/organization_memberships/types/organization_memberships_list_response_item_role.py,sha256=EENBhbHWU9ctfBToOG9niRgUMmPZHwqKpOwjym0SXHY,201
|
|
120
|
+
mirascope/api/_generated/organization_memberships/types/organization_memberships_update_request_role.py,sha256=kUavwPK90ZQw5u7L6hp7cHv0GLjRMdOQeXvUAob1SHg,189
|
|
121
|
+
mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response.py,sha256=ZRQ4GuJni-cy_cO1Zy4Iw2IpfwHlJP_BCD0g3uyxjUs,1022
|
|
122
|
+
mirascope/api/_generated/organization_memberships/types/organization_memberships_update_response_role.py,sha256=ep-3UPcB2lgKw5RiLp0cIT36naCA4_80XlOe8LME8VE,199
|
|
123
|
+
mirascope/api/_generated/organizations/__init__.py,sha256=Wx3aakQiihffMYWi_naB8nzVkecrgaUzFIVYQYr_I1s,2139
|
|
124
|
+
mirascope/api/_generated/organizations/client.py,sha256=sQDV1myJfqD3u9QXS1G721sxIiuk163IsbFFOIYQIo8,22373
|
|
125
|
+
mirascope/api/_generated/organizations/raw_client.py,sha256=fMnsqAc36uiTdWenuDABkE9rnQl5CkBbtVfauVXA0qk,99234
|
|
126
|
+
mirascope/api/_generated/organizations/types/__init__.py,sha256=nrCKSWMs6oAUOLH2Y1hdNpWEgpzyBmx_Ok6sepvf7XA,3347
|
|
127
|
+
mirascope/api/_generated/organizations/types/organizations_create_payment_intent_response.py,sha256=htrwhC04GWL11qaTKhq_eA5z8VMayxO7_9aPdlOxtzk,736
|
|
128
|
+
mirascope/api/_generated/organizations/types/organizations_create_response.py,sha256=E3nGwz8zEfyURDeIDuPe0fRRskPCWLdzer-jeCZOWLA,854
|
|
129
|
+
mirascope/api/_generated/organizations/types/organizations_create_response_role.py,sha256=roWFhmJ4rCJro_d9PY7J_aY_1CSy9dVrHVOroB8TTZc,183
|
|
130
|
+
mirascope/api/_generated/organizations/types/organizations_get_response.py,sha256=-81O2sx7tsIllQlRPaNjucrwjHglBhXVtoUAbQpTs34,842
|
|
131
|
+
mirascope/api/_generated/organizations/types/organizations_get_response_role.py,sha256=ss7tx77198U7lfSx4nE1mivQnx1fsNa9yphyXnWIJlU,180
|
|
132
|
+
mirascope/api/_generated/organizations/types/organizations_list_response_item.py,sha256=lYKaFoHzPF8mwZHGhLf_oGMPvF65_pNtlglpWOauvjs,863
|
|
133
|
+
mirascope/api/_generated/organizations/types/organizations_list_response_item_role.py,sha256=QUU5wueSKFMc8ktSmCNKVXOh7t6-ag5C1dk_v4nn9Ak,185
|
|
134
|
+
mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_request_target_plan.py,sha256=syB6ykAeynzdSW_fk4K8ZYzzCCPjc12K5enFBWeudqY,208
|
|
135
|
+
mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response.py,sha256=RDjXHqLCYooP71ssT8eTCfRtstQz_vdBtyG2b-f3JQk,1684
|
|
136
|
+
mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item.py,sha256=3XDk23rINz97cx_4rLdLVtZIAmzs8CO_BEvPt8gUOY0,1069
|
|
137
|
+
mirascope/api/_generated/organizations/types/organizations_preview_subscription_change_response_validation_errors_item_resource.py,sha256=KGiKHyMimsuzaYcayRr_yAm-9umQt5sWepfcgyliY5A,227
|
|
138
|
+
mirascope/api/_generated/organizations/types/organizations_router_balance_response.py,sha256=N3C0mG65Lrb6YE-QGKl3MhN6lh5LJIAtJnv34uhxs5w,651
|
|
139
|
+
mirascope/api/_generated/organizations/types/organizations_subscription_response.py,sha256=uWOwaTpOjIxGj_IxjNvHnJdjHB2-iHs9TKOFxiIFzCg,1872
|
|
140
|
+
mirascope/api/_generated/organizations/types/organizations_subscription_response_current_plan.py,sha256=ts_AQ4MXwog70MiYZloDcceGa52ReZv-Znzcymn1lio,197
|
|
141
|
+
mirascope/api/_generated/organizations/types/organizations_subscription_response_payment_method.py,sha256=SMlwBrx-vxrY1E145ZiYK6mT8xBWRFgsgBwSYoXKzd4,829
|
|
142
|
+
mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change.py,sha256=ZZNdIKoAsY1U9eqaC5AcaKPyVC6gZxp4IOnHesHMAhU,1168
|
|
143
|
+
mirascope/api/_generated/organizations/types/organizations_subscription_response_scheduled_change_target_plan.py,sha256=R5-j4YIeF6mXPGGMhQHvytDegJZXXxo98tBdpI-hlnM,211
|
|
144
|
+
mirascope/api/_generated/organizations/types/organizations_update_response.py,sha256=ZnFC3ZBe6MjGyrdo15obNTDRjkkS0QNgQ_lUWdY7Yyc,854
|
|
145
|
+
mirascope/api/_generated/organizations/types/organizations_update_response_role.py,sha256=qyCnx6lOhkw0r95dXv7mX9MR2wzQkaHVoVfoIS-vTiw,183
|
|
146
|
+
mirascope/api/_generated/organizations/types/organizations_update_subscription_request_target_plan.py,sha256=42gFruhWa0lQLJffzpsZscDlQdwGnoIUQcn4UJsoEPI,201
|
|
147
|
+
mirascope/api/_generated/organizations/types/organizations_update_subscription_response.py,sha256=NTTFm8FP44eq2qoRMK0KmguBv4Y852JzGipFC0ulisM,1147
|
|
148
|
+
mirascope/api/_generated/project_memberships/__init__.py,sha256=AYWPIJfcssyclHJKpbAN9cpYs3DW3ELo90OAvMyBzzc,791
|
|
149
|
+
mirascope/api/_generated/project_memberships/client.py,sha256=8U23Jr9LhszwTnZ02uNcnQK478gOxdY0PqgUAzLK-4Q,11106
|
|
150
|
+
mirascope/api/_generated/project_memberships/raw_client.py,sha256=2YGlbChBPPoGBuKKBKphXm0pb4pQrxOiZh0xohqQgvk,39206
|
|
151
|
+
mirascope/api/_generated/project_memberships/types/__init__.py,sha256=0eoRZ7kipXg7BukA1DiKC1H0_z1M-oJFH8fqeve7Qkw,1176
|
|
152
|
+
mirascope/api/_generated/project_memberships/types/project_memberships_create_request_role.py,sha256=WlaXQSfGPQDLrRSkTFPTj7iWsyjReAxrt0KZ34SomRk,210
|
|
153
|
+
mirascope/api/_generated/project_memberships/types/project_memberships_create_response.py,sha256=uF_2wiUu35UBgKrvJ7o2jnmKXL_BqQoMq3a8Sp51sQw,1192
|
|
154
|
+
mirascope/api/_generated/project_memberships/types/project_memberships_create_response_role.py,sha256=v3l9P-EvNy3qOmf0qw6lG2pSnLMWZNWxK_4qY9m34j8,211
|
|
155
|
+
mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item.py,sha256=boQnM-dzUWvGM8sJh7jtmUtEbBS_SVWeBvheFqVE9tE,1064
|
|
156
|
+
mirascope/api/_generated/project_memberships/types/project_memberships_list_response_item_role.py,sha256=kiiEQJxcJAVRBWg7omRSmeaBOD528f3BtdrRxrD8x1k,213
|
|
157
|
+
mirascope/api/_generated/project_memberships/types/project_memberships_update_request_role.py,sha256=YkpNUrCzZrR3SC8XdUBHG6-C5B9ULe9BRc3HwDqPv5w,210
|
|
158
|
+
mirascope/api/_generated/project_memberships/types/project_memberships_update_response.py,sha256=wOFZaAVUZVnAo_C-SpCzuVQJ3OZC7X_TH1wSsm4gqGA,1192
|
|
159
|
+
mirascope/api/_generated/project_memberships/types/project_memberships_update_response_role.py,sha256=oamlzChHLv3YkQuKylWu717m71OuRXRJ8TjZ78Idm-Q,211
|
|
160
|
+
mirascope/api/_generated/projects/__init__.py,sha256=YEwN_qOHVrlplGeCfkW3R8x-4LzLoBN6jrRNfMlrXoQ,313
|
|
161
|
+
mirascope/api/_generated/projects/client.py,sha256=n56pGfcZaCIRR0ceL21rinLEF-Xyt0VrCjTLh1ytyjQ,11447
|
|
162
|
+
mirascope/api/_generated/projects/raw_client.py,sha256=WOFMmT6StIdzlyEEwv_D3WcUs4aS5tffGimVAaEmOug,49220
|
|
163
|
+
mirascope/api/_generated/projects/types/__init__.py,sha256=bDZbRUDWC8tsZqwUob4H-4PSqVRJrCoTWH10g5Ojh30,443
|
|
164
|
+
mirascope/api/_generated/projects/types/projects_create_response.py,sha256=GkbUCfsQQTlM-oX4L87Y3ftZUREO7s98EKjtHnVVxN0,819
|
|
165
|
+
mirascope/api/_generated/projects/types/projects_get_response.py,sha256=SzdRUJ6M2xBjviqsQx-3KIlKApYzvciOCQ3MbxlD5b4,816
|
|
166
|
+
mirascope/api/_generated/projects/types/projects_list_response_item.py,sha256=M3Oc4sZH_Qw-5G2_KjAZmOyxQK1fjjQiALdyB1x7Xyk,821
|
|
167
|
+
mirascope/api/_generated/projects/types/projects_update_response.py,sha256=zxhSs9sm41fHeEyxgcWQrBeMTmnMGyKTHwWegEAu31g,819
|
|
168
|
+
mirascope/api/_generated/tags/__init__.py,sha256=FMuGSAnTnn850O_LuLRmJr2C01I-Dq8vRncAUXxVveU,375
|
|
169
|
+
mirascope/api/_generated/tags/client.py,sha256=8ErVoaJIFx9wvGP3UJ3MaXP3R7zg7LVmFcVHgxgUZrU,11976
|
|
170
|
+
mirascope/api/_generated/tags/raw_client.py,sha256=qOrE9X9lzW4qoyPz-vywV630Qh6k8i_wZAPoW4rv03c,48001
|
|
171
|
+
mirascope/api/_generated/tags/types/__init__.py,sha256=XAA1J-C30Cs3iow_H38DD7QaZd16cn4eflJFi7iY9Bk,500
|
|
172
|
+
mirascope/api/_generated/tags/types/tags_create_response.py,sha256=lPs7r6I64YtAngdd5oC-75-X_Sxc-I-rMhGVA7NjSMA,1265
|
|
173
|
+
mirascope/api/_generated/tags/types/tags_get_response.py,sha256=PE80M3zHKRkDXfTMZmNaPoPUBf0KAInAOH2hY3LRC_c,1262
|
|
174
|
+
mirascope/api/_generated/tags/types/tags_list_response.py,sha256=IVeovOXbyFyEB59f1ESoV7oE98qnleRRwmcoXnKnPOM,664
|
|
175
|
+
mirascope/api/_generated/tags/types/tags_list_response_tags_item.py,sha256=ZVmML4gHKNJHtejYuqYDHqAGiwMBK_MrxbDpcG4LKE4,1271
|
|
176
|
+
mirascope/api/_generated/tags/types/tags_update_response.py,sha256=Cg_uS33ibq1kOsls4_TlslpnytxB3izB6ifgqJ87X_U,1265
|
|
177
|
+
mirascope/api/_generated/token_cost/__init__.py,sha256=ghhOVHP5QDlJ-ba4Ael7zVbeuAs7MRrqIo6RbHH4Igo,239
|
|
178
|
+
mirascope/api/_generated/token_cost/client.py,sha256=UyVyjohrMG6JVpdQlfxiDgMhYffkmu1aVtzcwHaqEUo,4433
|
|
179
|
+
mirascope/api/_generated/token_cost/raw_client.py,sha256=O8NPJGkqh7STg-uMdWQ4Dc4TQ-On6g3yRaIYBW-kTKw,9587
|
|
180
|
+
mirascope/api/_generated/token_cost/types/__init__.py,sha256=5dFmUwjrCVsEB8aG6kzxgWP-Tuav3NrwVWJBQuO2x8Q,310
|
|
181
|
+
mirascope/api/_generated/token_cost/types/token_cost_calculate_request_usage.py,sha256=iw-fDR-zlt8SfZ_sgTZBm71IwXhaC9ytsQv1lwlP6JU,1530
|
|
182
|
+
mirascope/api/_generated/token_cost/types/token_cost_calculate_response.py,sha256=-FGopWmM6tIGzWWmT4IWfuW3L3t55VVWmFXPEzZbqRg,1925
|
|
183
|
+
mirascope/api/_generated/traces/__init__.py,sha256=eUX06BZcJJkuxVIjRle0NOig4QDGZR6daGu9hlWTWnc,5333
|
|
184
|
+
mirascope/api/_generated/traces/client.py,sha256=a5-suH_fee5wMNspaIfhQ93Cv1ZgsCvLz5137jL4egI,32891
|
|
185
|
+
mirascope/api/_generated/traces/raw_client.py,sha256=2Xirgy2-oXDc9qaiCzZmy-et6qWffAWzIqmd8vUh3to,88205
|
|
186
|
+
mirascope/api/_generated/traces/types/__init__.py,sha256=yr_ciwVxoJ1kKWD7C8JM8K88TvxLWvyHtJrHXiul1Kk,8635
|
|
187
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item.py,sha256=8k0xOLNtq5NliwPvWjg0xk31W7YkXbhL4QPxFdjeRAc,1193
|
|
188
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource.py,sha256=NQq9S77Yy0Z3vD389idTPLRCyLDc4RQYovtxvlUTOwc,1021
|
|
189
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item.py,sha256=LED5nVoE1ZWe4q8Opq1ZtdKZdDiJeC944qNiHD_Kvj0,799
|
|
190
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value.py,sha256=EtZLyE2u5yNzwfng0cvb_tdcJoKpmZtc6ADuITHlNOo,1838
|
|
191
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_array_value.py,sha256=BT1gVFMVGLqOyxs7ajD8f8aZ7RZi9YxiLNegIR6Y9rM,620
|
|
192
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value.py,sha256=dyeQR7V8UNLk6WXqVh7r0QNV0S_NaqbNfJtg7EPRjhU,883
|
|
193
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value_values_item.py,sha256=jknB6j4y91ZUEDHNdJ7jKHWPsacbai6l3pitBl2BpbU,637
|
|
194
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item.py,sha256=GGA3fzgtHnIXhmYZtlwt0yK1stHg4W99PkrTZkPauk0,1194
|
|
195
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope.py,sha256=SXn_zVSUx-SiPdPZK_dzy5M6WnGFn9fFs87CcTWmVmA,1139
|
|
196
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item.py,sha256=1U2XQuzzYeBXJhnuIPQobmxuReJGaTe02W9YiBzo3QU,846
|
|
197
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value.py,sha256=Mr_tuTHECQlqzK_mOfYEHiAz84QpR38c-4Il2AGN-LY,1921
|
|
198
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_array_value.py,sha256=-pEaqcxatk0WWTZWENvnYI6wXTZusQRmd-XBausBht0,631
|
|
199
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value.py,sha256=Y4PXKRLKAv990GMV8oNdrA3QzGNufrjna_qV2g0Cdzc,930
|
|
200
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value_values_item.py,sha256=U3M6YoXYpaVQmC69UeMqBYR4RldYItkNRm1YFLGd2zM,654
|
|
201
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item.py,sha256=u81MfkMQiaB0QiwEvqbK82G6N68MO496sNzPV__QbXI,2323
|
|
202
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item.py,sha256=9L_9QzaCOvHy1lwuJV2QfIZliXiAMuB204tomWBY8eQ,863
|
|
203
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value.py,sha256=Xh1g7687ZP540y1ckW7xIkReKcf-xPm7YM-e39V4XU0,1951
|
|
204
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_array_value.py,sha256=sv0Pc27OzV7Z1rBiNawrsU8X_f__oH0xNQrnqijbXy8,635
|
|
205
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value.py,sha256=qOZBwK4Z2qdbNWSHvXFphiOU21_UWon4D4Px7wvA980,961
|
|
206
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value_values_item.py,sha256=QPwi-dEtpBQOdNoSOohgjLqtfK3ooGT2iPeRk38-wWw,658
|
|
207
|
+
mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_status.py,sha256=e9dLxbrT3y23QCUC7-mLLLCnliNe1XhKgMIqKzZQ4q4,640
|
|
208
|
+
mirascope/api/_generated/traces/types/traces_create_response.py,sha256=PiQTMmPVj7t3802RAR4CyMYisC_vSqn7_Ctx5Y6A7WM,836
|
|
209
|
+
mirascope/api/_generated/traces/types/traces_create_response_partial_success.py,sha256=uGFG7AUmoBVCLzr5HArCNyHldsnnd8W547prECNq7qY,831
|
|
210
|
+
mirascope/api/_generated/traces/types/traces_get_analytics_summary_response.py,sha256=SDFZT278UnjgB1gpuIJWsjHn75tNtdoMZFrvLkci1tI,2329
|
|
211
|
+
mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_functions_item.py,sha256=Kr037C3ss3hVH0qrWi2qJwthHeXJttb8qIkLSfWJ9YE,744
|
|
212
|
+
mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_models_item.py,sha256=v-KGeMC_0f-oW9S26MF7xVDBpRo-N9ABYWO-kgI0TKE,594
|
|
213
|
+
mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response.py,sha256=s3CEybUT2vpo38MTdsYO7Y_DRE_xN0ZgsaAq7mF25qc,1144
|
|
214
|
+
mirascope/api/_generated/traces/types/traces_get_trace_detail_by_env_response_spans_item.py,sha256=38LF6XysreETPQQP7honTjR2AiOG88oVJvJYnxvulno,3489
|
|
215
|
+
mirascope/api/_generated/traces/types/traces_get_trace_detail_response.py,sha256=0Qrkq5KPznhKfdgwMAZtb5JfIB7bwwvmeNvxMIy60fw,1122
|
|
216
|
+
mirascope/api/_generated/traces/types/traces_get_trace_detail_response_spans_item.py,sha256=mVadnGkf9n5Bnaj_8RWAqbPDeWT7jWcp01Z5OGqUBXw,3484
|
|
217
|
+
mirascope/api/_generated/traces/types/traces_list_by_function_hash_response.py,sha256=37Z12m__7ebFWARMrIop4Gtf3VUErvYoFc5zh90XZVE,748
|
|
218
|
+
mirascope/api/_generated/traces/types/traces_list_by_function_hash_response_traces_item.py,sha256=w5xcnQtFjHuQirMkIYKVxr6-JP2ClrW5Rx6a8F8vHE0,1593
|
|
219
|
+
mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item.py,sha256=oxzX_9H8TWGHFikePiln6HJw1y0Q_bUpvu7lEJ0SJI0,815
|
|
220
|
+
mirascope/api/_generated/traces/types/traces_search_by_env_request_attribute_filters_item_operator.py,sha256=iARBdocl8IYgW9_k240tAddVlFVUv11DDg4WkqiPvRo,217
|
|
221
|
+
mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_by.py,sha256=93VMOI1ZvOmoNlKI2bBk8XK8TDDeU5cOpe3hDI3H18o,205
|
|
222
|
+
mirascope/api/_generated/traces/types/traces_search_by_env_request_sort_order.py,sha256=hVNtrmu9KoxCqQ08_uvjJJQwkpEpJBn84si0EXzC-RI,178
|
|
223
|
+
mirascope/api/_generated/traces/types/traces_search_by_env_response.py,sha256=nb7ax-DvAwehOru75x4U1siy14BL65zkBuWmXRWLS-c,859
|
|
224
|
+
mirascope/api/_generated/traces/types/traces_search_by_env_response_spans_item.py,sha256=LpZWsCeuaZpfjKxP1RQUCs0uu7P8EgMm0xEDZ1e3z08,1922
|
|
225
|
+
mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item.py,sha256=T4mt0eENx_rgrkEQ70KTJoZjsjyASqN8IYTQQ4-usWM,793
|
|
226
|
+
mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item_operator.py,sha256=rw8D6ArkspyfhiuTg22aAmsMzcC9Ms9_f84muwwma8U,212
|
|
227
|
+
mirascope/api/_generated/traces/types/traces_search_request_sort_by.py,sha256=7B7vLEgVzhWD3mB3R4oPzDW0S_KOwtjyRsU0HoNJ-eY,200
|
|
228
|
+
mirascope/api/_generated/traces/types/traces_search_request_sort_order.py,sha256=JDOi0Hm9JJgSVgf5w8MYDNlDXWWhEFfKO55C_sN4dMw,167
|
|
229
|
+
mirascope/api/_generated/traces/types/traces_search_response.py,sha256=WzMs7RWjXZsrvsiKJ-zoBXLaofv64vL1YENr5F0rc8Q,837
|
|
230
|
+
mirascope/api/_generated/traces/types/traces_search_response_spans_item.py,sha256=tPE_zGpn-hI1WwIFJpOw4gBE1Um8cKbT1Zu22gDDYv4,1917
|
|
231
|
+
mirascope/api/_generated/types/__init__.py,sha256=4ZVx0giF2n4pmpU5x7XiIcOW2yZSzM0zrW6m3r-rdqw,3110
|
|
232
|
+
mirascope/api/_generated/types/already_exists_error.py,sha256=30O2D_-CnzDRyYSEKfAFEvKL6dPWc9VNt633j1J1Nl8,661
|
|
233
|
+
mirascope/api/_generated/types/already_exists_error_tag.py,sha256=Gkkp8M2D68eeecqivCeLZdEQ9s_E4-Wian0_SVrRMGU,167
|
|
234
|
+
mirascope/api/_generated/types/bad_request_error_body.py,sha256=f8UD-pn2uvH1fcSGwpMPLYbPsnXn25cPx8IsXFIDnv4,1474
|
|
235
|
+
mirascope/api/_generated/types/click_house_error.py,sha256=kT6Mb4NOGM8EGwmFh13sr9Ols8oR_8-9igV2JvUWO_4,610
|
|
236
|
+
mirascope/api/_generated/types/database_error.py,sha256=bTu0RjXzACVsQaUgm1kP6FriuJju4O54k99j5whf-Ls,661
|
|
237
|
+
mirascope/api/_generated/types/database_error_tag.py,sha256=f7yylB3n3uxnf99qE3w3jLz5F5lCx-thc7px9SvvK9E,157
|
|
238
|
+
mirascope/api/_generated/types/date.py,sha256=fhFLkKHbKDr9xn2egvvOM09roleYs3IqO48kIBfJFps,76
|
|
239
|
+
mirascope/api/_generated/types/http_api_decode_error.py,sha256=ttpbtVIhr2LEm6IlYVyvXUPaQynodqZe4IryKGx4hP8,743
|
|
240
|
+
mirascope/api/_generated/types/http_api_decode_error_tag.py,sha256=4brH10CC1DEuSmruTFmEuy9rVgpucv9Wsde-4g6oYQM,167
|
|
241
|
+
mirascope/api/_generated/types/immutable_resource_error.py,sha256=C2IojsOHrQhGz3B-Vpvku7twPfwui-3CXUq6jTIdjAc,596
|
|
242
|
+
mirascope/api/_generated/types/internal_server_error_body.py,sha256=HAC2_umbP_IIi6QmLno7CUTUfkPYsHJIAo1vVYlpHTk,1457
|
|
243
|
+
mirascope/api/_generated/types/issue.py,sha256=UH7Vluu2-nde1xkM_wQSox9tBAm9MOMVCJmIl2k4nM4,989
|
|
244
|
+
mirascope/api/_generated/types/issue_tag.py,sha256=aiydCFAGJqClMhG33t5wK4BdT-T1UEMk-lg76ImwLOc,259
|
|
245
|
+
mirascope/api/_generated/types/not_found_error_body.py,sha256=xg1tJCJOSdN13l0psBIXSBxRBb6J4p4OxrQ-fJck_kg,645
|
|
246
|
+
mirascope/api/_generated/types/not_found_error_tag.py,sha256=dQtLl0Mr8uW56l-DVlHqaHxxUaUu4s5p8Dk2nRcx4yk,157
|
|
247
|
+
mirascope/api/_generated/types/number_from_string.py,sha256=P4GqQL6owYChES9O22OcQ4Z-lL1pROFZy3-MgGKMnv8,88
|
|
248
|
+
mirascope/api/_generated/types/permission_denied_error.py,sha256=gcV4fhwJVfx8Fs97hQQ397tGcGVvjIWbCr9nK249dG4,673
|
|
249
|
+
mirascope/api/_generated/types/permission_denied_error_tag.py,sha256=VWaSMhz1SBMF950Y_8hXHN6-0ZgxzmSJySuPSAsQv6k,173
|
|
250
|
+
mirascope/api/_generated/types/plan_limit_exceeded_error.py,sha256=uznqkB64RoZwR2KLlCJGrF1cPj1CPiYo8bpnFK4cbt8,1034
|
|
251
|
+
mirascope/api/_generated/types/plan_limit_exceeded_error_tag.py,sha256=8dMAOTEXhelzK9XrHLbhiH8Ix5k-F60N9O_Dzt9M_KY,181
|
|
252
|
+
mirascope/api/_generated/types/pricing_unavailable_error.py,sha256=VQSdnHqZT20gDw78N0Ha-xOzxDlGXYZ7pGZZErOH5nc,636
|
|
253
|
+
mirascope/api/_generated/types/property_key.py,sha256=G_qu_0R1rdi2eY-rhTC3NO-IrbdHR0AcgdjSdwIOkBE,181
|
|
254
|
+
mirascope/api/_generated/types/property_key_key.py,sha256=hiSH72vcSGbDPQUl8HwgRqJE8uaEZrHafhH68AJq12Q,674
|
|
255
|
+
mirascope/api/_generated/types/property_key_key_tag.py,sha256=aNrMYf3B6V098Z9-tqlkNH1XvbkX9t2se3x-qbVe0CQ,151
|
|
256
|
+
mirascope/api/_generated/types/rate_limit_error.py,sha256=lfpN085x7FZQ2L5c7wLgDPWHCjgbhWhes5E544MybTc,989
|
|
257
|
+
mirascope/api/_generated/types/rate_limit_error_tag.py,sha256=mNWT42YP0x0gpBhawrUZE4hZIJ84CFO26AM47Rrde7s,159
|
|
258
|
+
mirascope/api/_generated/types/service_unavailable_error_body.py,sha256=-W6-sYgM6j2KjAuTlv5FN5ZmO77tzZ-M_bjiXqBGFz4,706
|
|
259
|
+
mirascope/api/_generated/types/service_unavailable_error_tag.py,sha256=PL02iPsFZ3uvX4TYx38eKiOnqz64hfNssjbjL-7N0os,183
|
|
260
|
+
mirascope/api/_generated/types/stripe_error.py,sha256=VIJ5sZ0Qs6hbAS5aRoMApdSh2VVvB_ut9WMEoqp7Bjc,584
|
|
261
|
+
mirascope/api/_generated/types/subscription_past_due_error.py,sha256=a-1Rb33jN_pZkuKsLdk8RRFXPOi0TQjGLiftukrAbr4,988
|
|
262
|
+
mirascope/api/_generated/types/subscription_past_due_error_tag.py,sha256=ghRiStRa--el9MUbcTwhfYKdhj60cqf08DIqZYUArFg,185
|
|
263
|
+
mirascope/api/_generated/types/unauthorized_error_body.py,sha256=0k725xKXRagfrb1HJoygl87SQvZdd6WEU2ACrDbt694,618
|
|
264
|
+
mirascope/api/_generated/types/unauthorized_error_tag.py,sha256=sx-QdNmQjboMaPni2EVKoorYvWk5OmHHlT5-IBiFhQw,165
|
|
265
|
+
mirascope/llm/__init__.py,sha256=1hP54tE5tO6lyrgiZHafc8JbF3LOIKrPON9UQJPo9uw,5879
|
|
266
|
+
mirascope/llm/exceptions.py,sha256=hYc8A8A6unqPaB9GmvdlWIEUso4NWlR7lXELEVVyGFc,10839
|
|
267
|
+
mirascope/llm/calls/__init__.py,sha256=aA-IoOlXdmhVybHTj_fGx1jDlIL-a7ed7xncO2aMIJY,293
|
|
268
|
+
mirascope/llm/calls/calls.py,sha256=K4lLbAgfpvuNyYfh8UYm37onUr8QcEm4BMK_1CBr7i4,11836
|
|
269
|
+
mirascope/llm/calls/decorator.py,sha256=hMJscJ1cPnQctGZfTqJV6hoCScYherCutOecIcpJfbk,9006
|
|
270
|
+
mirascope/llm/content/__init__.py,sha256=4a5UaoiF8OKfXS9j7INFvOnU7bkNpacpiZ6IlLgC6Lc,1926
|
|
271
|
+
mirascope/llm/content/audio.py,sha256=W6liY1PuQ0pF91eDBnNKW52dr-G7-vnd-rhlSqebx9Y,5311
|
|
272
|
+
mirascope/llm/content/document.py,sha256=oz3LSUEhJh-lEUDCss5p_xkPBDYQhAu9m9SGFr64_pI,2369
|
|
273
|
+
mirascope/llm/content/image.py,sha256=lG0nPvObNEva1XjqUJcZI2T7jZ1xhHaSjqsCncg0XEU,6155
|
|
274
|
+
mirascope/llm/content/text.py,sha256=4lDzXXpDy601RAkv9m85InP_CklvLccFATPThBcY1Ho,1099
|
|
275
|
+
mirascope/llm/content/thought.py,sha256=jWtlVWoS-fDjByD-m2SPdPNNxvQhfwfOio0B95j10qU,1729
|
|
276
|
+
mirascope/llm/content/tool_call.py,sha256=W4ZShdrcwaYINadJRy5gVY1DFkzIdELVr0K8BZNsox8,1739
|
|
277
|
+
mirascope/llm/content/tool_output.py,sha256=M2pOtjEQfkK_ERgiZCGJmxiScVzSAnZrEvJ8K4luIN4,1294
|
|
278
|
+
mirascope/llm/context/__init__.py,sha256=2Bx8CQhTXWbtwMirZ8ppmFKPXjuYezyi10XfmRpAE5I,179
|
|
279
|
+
mirascope/llm/context/_utils.py,sha256=3DbV0NL49m9oZYMUOHJULnVFMu6sO_SXZiriDs1L-vc,1210
|
|
280
|
+
mirascope/llm/context/context.py,sha256=qvmRXsyea34wXP-_0CCe6RwkT3H57dojCw6HHnv8LVc,629
|
|
281
|
+
mirascope/llm/formatting/__init__.py,sha256=6zM0U-WyMEmSlk0DJG_SIKAYf8Ot_zS0o29RgNRW7oc,1097
|
|
282
|
+
mirascope/llm/formatting/format.py,sha256=8XeRBRsp7nimvNO5FJu2IEnrz2wbiCHVXrHYJr9mFOQ,10223
|
|
283
|
+
mirascope/llm/formatting/from_call_args.py,sha256=FfnInMf-KCo6VKIPWsppMSzapWqtGlfKwNMJSkzo2ys,917
|
|
284
|
+
mirascope/llm/formatting/output_parser.py,sha256=qmqWjO4cJX-xgxf0Tgd1bK3rejgRJzqfSDiD2-KTphU,5806
|
|
285
|
+
mirascope/llm/formatting/partial.py,sha256=RcByspgDHIR3H8TtrQuI0uaTc71Pc0wThAD6Vgfslps,4555
|
|
286
|
+
mirascope/llm/formatting/primitives.py,sha256=6Y73meE0L-J0gy35YPFUhygJg-bgH8ueCiX2SqtHyPs,4997
|
|
287
|
+
mirascope/llm/formatting/types.py,sha256=5TM5wMAxT6UmKuwfy_xF3J9wrvklvOVV57q0BmB__4Y,2627
|
|
288
|
+
mirascope/llm/mcp/__init__.py,sha256=WaITd9dM6QZqsvBLqHkUhWRYGGlVsgEMF1MN36G7ckM,198
|
|
289
|
+
mirascope/llm/mcp/mcp_client.py,sha256=FNYY7jPnJWNf0T3jo6ZpaTnPouetb7SKR_K_MVFoNjM,4471
|
|
290
|
+
mirascope/llm/messages/__init__.py,sha256=N2w3oWTJjOhoYXTPEVjkyOOPFINBGuGHbE0TQVxZ_Hc,807
|
|
291
|
+
mirascope/llm/messages/_utils.py,sha256=jmE_S01LAW1MWCv6pUoTk92mHJxqcu3bocRJzKgY_lo,977
|
|
292
|
+
mirascope/llm/messages/message.py,sha256=GkF556Na5H8AMGSMqA6Y4n-uHI3ZKRaq6K9d9acdtaE,6521
|
|
293
|
+
mirascope/llm/models/__init__.py,sha256=3U4pAV4iwpHS29Ip9mG-dlHpR2OhbJFiKEZ1y0VkeM0,648
|
|
294
|
+
mirascope/llm/models/models.py,sha256=jMj9gs2rmtUSEZb57QHczrDCn08tDDulS8HYUa6hoDg,47416
|
|
295
|
+
mirascope/llm/models/params.py,sha256=D5Evg-9YDJoJ24cihqFMnV0CvKLt3yBabxGs1erN9T0,2636
|
|
296
|
+
mirascope/llm/models/thinking_config.py,sha256=CkFOkw-fjDlsZbHJbV68v4yRwb5o6miVxBySrZbHGXw,2627
|
|
297
|
+
mirascope/llm/prompts/__init__.py,sha256=rOtSiZvw6vsJl7vCFWzKZnm3haNhnLtPRzPfdbgoH7U,727
|
|
298
|
+
mirascope/llm/prompts/_utils.py,sha256=42hTqm8PuLpDOz4Mi59kaUou43qeo5R-9703l8cciSg,1018
|
|
299
|
+
mirascope/llm/prompts/decorator.py,sha256=UiCA921u1qCQZPqrDRE4xERg7nzyzf1rChAEN216ojA,7179
|
|
300
|
+
mirascope/llm/prompts/prompts.py,sha256=WZUERWWVIvJq6LGMl6ixSGFoAayVwdVjm16CLEUGyew,15926
|
|
301
|
+
mirascope/llm/prompts/protocols.py,sha256=auopJnLAfOognCFVVnXrvb4zFj3102Ofi2iVHfublM0,2242
|
|
302
|
+
mirascope/llm/providers/__init__.py,sha256=JP1cW_IFUZwkcHWP2Kc9ezihfQu7CY80ayqmkVeR9pc,1953
|
|
303
|
+
mirascope/llm/providers/model_id.py,sha256=qr7RKkP_3Blgxjzw_HvQVJLM1aTzsP-jVFsycz0itI8,292
|
|
304
|
+
mirascope/llm/providers/provider_id.py,sha256=NfZeoJWJ1UUrbhmaPkbFQGz-utPQGMiMqIaXvrjQMEo,1038
|
|
305
|
+
mirascope/llm/providers/provider_registry.py,sha256=AVg9nh58v21JXFvDaBxrB998cqnSgXQe-XO0RB3qskU,10753
|
|
306
|
+
mirascope/llm/providers/anthropic/__init__.py,sha256=t9m32IiohMu6Aqlj7iVBcngY6KiUlJBnJBFyPYttXpY,261
|
|
307
|
+
mirascope/llm/providers/anthropic/beta_provider.py,sha256=VF550Qam3Fzq9LiGF7UJS_2vKC0-kLF3uv2Rvc3V8h8,13078
|
|
308
|
+
mirascope/llm/providers/anthropic/model_id.py,sha256=3Wf4cZG8NUO3i7dHmw3At46JMfTuRWpS8pKYX2s-8B8,715
|
|
309
|
+
mirascope/llm/providers/anthropic/model_info.py,sha256=YuklafFMIpkyLBJSBB0XlB6MK9Bz6hp9Z6APxJ9G1j4,2965
|
|
310
|
+
mirascope/llm/providers/anthropic/provider.py,sha256=n2zeMIKtTPq2LqqrK_njwloBZZW0qdluaeLt55Q7Lt0,16778
|
|
311
|
+
mirascope/llm/providers/anthropic/_utils/__init__.py,sha256=tp-7bIM6G7JHoP7UgfG1hp1lcKdSM5C5UU2kB0Nxj8M,662
|
|
312
|
+
mirascope/llm/providers/anthropic/_utils/beta_decode.py,sha256=vMXBVAsicZf-wxdHxhYdcuucnRa_mN5NlGEisj0BrxQ,10627
|
|
313
|
+
mirascope/llm/providers/anthropic/_utils/beta_encode.py,sha256=zRoeIpoju3TJ9SMzZOtGmmcPl24GkRCP0LuCvRgXvDE,8879
|
|
314
|
+
mirascope/llm/providers/anthropic/_utils/decode.py,sha256=SYhL8X8YG11OD2uulUG9wrN-26SDHmq2zKHJxDzQXhA,10863
|
|
315
|
+
mirascope/llm/providers/anthropic/_utils/encode.py,sha256=m2_X-TcgokC7xgJcjxHyNKL19fcRlZYJvSpx529ZdyY,14888
|
|
316
|
+
mirascope/llm/providers/anthropic/_utils/errors.py,sha256=PoKmVYvo9eYHviDOSU0Pd3qaXqpWYN52JvZbtrMDPhw,1724
|
|
317
|
+
mirascope/llm/providers/base/__init__.py,sha256=bCn-JWBHmCUuobB_Rekzhy2ry4B6A5qBwMlVnz51zY0,292
|
|
318
|
+
mirascope/llm/providers/base/_utils.py,sha256=Yfmrg2wAaxej2367Wm34LPSHnDcIhqk244gNlrAADE4,9202
|
|
319
|
+
mirascope/llm/providers/base/base_provider.py,sha256=41q-8A8V6qXzo8JObSbENKJCWadtNl9viMUfq-tMnGA,53351
|
|
320
|
+
mirascope/llm/providers/base/kwargs.py,sha256=pjaHVqtlmScUBqG8ZAllVaLoepdKE-KYl2eTqzOBXm0,406
|
|
321
|
+
mirascope/llm/providers/google/__init__.py,sha256=EuZ4D5aSldPfd1rvG62_l9ERzJzqTyp6276RGRXBiqQ,157
|
|
322
|
+
mirascope/llm/providers/google/message.py,sha256=ryNsMKPSyBSVXl_H0MQEaSiWC3FFybjxIUuORNSiKTk,179
|
|
323
|
+
mirascope/llm/providers/google/model_id.py,sha256=vZJeKT-_J7oiFT5AkudintCFE4DhFJ-VZOFOcLP1rn0,603
|
|
324
|
+
mirascope/llm/providers/google/model_info.py,sha256=AEW-UciRp_62AOzS40G6G0C3He8KkU10ZbfgIDgCxcQ,2019
|
|
325
|
+
mirascope/llm/providers/google/provider.py,sha256=Z-00NATbvahQjyeschDDrxnadmKG_JlpaPXycClP4cE,17041
|
|
326
|
+
mirascope/llm/providers/google/_utils/__init__.py,sha256=8yvZ73EQ3iF0Om2oWHMTYjVCFnYEHyASLGifwOJnz-k,369
|
|
327
|
+
mirascope/llm/providers/google/_utils/decode.py,sha256=kji0lSJL3VnS_2O7WOhSwQbc3c3mZ4_Uf3KZfxJgRlI,11972
|
|
328
|
+
mirascope/llm/providers/google/_utils/encode.py,sha256=kHVZplmhF7sdvgadPU6N3FUMokDgXksyLL5RAVUSswE,15177
|
|
329
|
+
mirascope/llm/providers/google/_utils/errors.py,sha256=or1eSWtw4tBhLsVIRUE-7i8PnSQPWfvmuZdbo9xRisw,1410
|
|
330
|
+
mirascope/llm/providers/mirascope/__init__.py,sha256=koKKp7SctUQWBzSMDFMJ-ejWCvCXK3GCIOSAEd406mw,132
|
|
331
|
+
mirascope/llm/providers/mirascope/_utils.py,sha256=AeRZT6jqq8PbQ8iVz4wT3XLANAPO8AK4LrcM9G1tbFA,2322
|
|
332
|
+
mirascope/llm/providers/mirascope/provider.py,sha256=rnOP4h5a-kKriRqK2GZWykr4XmkIa03NFk2Cpm7aewY,11446
|
|
333
|
+
mirascope/llm/providers/mlx/__init__.py,sha256=_tJnr28-86i87FbryFFPCYgEqwbcg1NaXb1oUo2s_hY,153
|
|
334
|
+
mirascope/llm/providers/mlx/_utils.py,sha256=eEhOW9mTo2v3fOD7Vgza_kPSdo_kyl1JXoYnS0qx5Zs,4210
|
|
335
|
+
mirascope/llm/providers/mlx/mlx.py,sha256=qoFqyL-UwusTHX4yngLS6CqZVRb17gwfUIBBTzmITcs,8437
|
|
336
|
+
mirascope/llm/providers/mlx/model_id.py,sha256=oHj-ptT4vTPcatHtjDSw7Z7-xs8ACMfYeRoEsKkM6yE,618
|
|
337
|
+
mirascope/llm/providers/mlx/provider.py,sha256=oI9cKXZeZ6GePUjJmkcyFFd2M7e8gBmn44oF6knsBQo,14859
|
|
338
|
+
mirascope/llm/providers/mlx/encoding/__init__.py,sha256=qdI7HELeha1wj1OoOn1jH0Xta6yNkI_SDlYbqoWUd0c,163
|
|
339
|
+
mirascope/llm/providers/mlx/encoding/base.py,sha256=zpDMZbgAWuBomtWMs_1kiXl56MaW8HRgoizalceThVM,2295
|
|
340
|
+
mirascope/llm/providers/mlx/encoding/transformers.py,sha256=JwGASFHOCyrK3LSELq-7y8Qrb2gBwo-7WAGw8FuAddM,5078
|
|
341
|
+
mirascope/llm/providers/ollama/__init__.py,sha256=M6kIJVYg4JYGTCk6Nq1uiu9xl7p6g6nERrVeS71Sn7U,113
|
|
342
|
+
mirascope/llm/providers/ollama/provider.py,sha256=9c0pKDtc--H0SLiyqrjBKzt-Ya8gE9qZ-jpZvKEG90Y,2311
|
|
343
|
+
mirascope/llm/providers/openai/__init__.py,sha256=D1b01XExoHIDdPdoWEBtnEZLZdEL54ASqOrPnt3YfAE,454
|
|
344
|
+
mirascope/llm/providers/openai/model_id.py,sha256=XDQxd2BgG_YIGwzyTRNaySRXoU80-q0AR-xOdtvpB8I,1009
|
|
345
|
+
mirascope/llm/providers/openai/model_info.py,sha256=DN-y-qzq2UahK11hJUe12SB1upRD6BWZkTLhEX092sY,9563
|
|
346
|
+
mirascope/llm/providers/openai/provider.py,sha256=z8h3bOOjbak12QHzvZwC2hCEe1pUCnnsh9g8GybGEPs,15774
|
|
347
|
+
mirascope/llm/providers/openai/_utils/__init__.py,sha256=jzAtRZEqvbHnJw8iEillZU4tWXedmtTWuE_PqyYUVvM,101
|
|
348
|
+
mirascope/llm/providers/openai/_utils/errors.py,sha256=760JxYcm9LJk7aIYmyPTrvjfBG2ku8-wZDb0_rkNpMs,1634
|
|
349
|
+
mirascope/llm/providers/openai/completions/__init__.py,sha256=yZ-REySFP37yKjBozFybRu1ZSRPr7r5W4_bOu7z8Ymg,190
|
|
350
|
+
mirascope/llm/providers/openai/completions/base_provider.py,sha256=LNYNgXLVuHsFemCGYaAO8E4wr__a6XSOwa2atffOzXY,18548
|
|
351
|
+
mirascope/llm/providers/openai/completions/provider.py,sha256=jEH-9rMmNLEBDWVaOZj0rMuRtjwQxdK917tODk-C6pE,719
|
|
352
|
+
mirascope/llm/providers/openai/completions/_utils/__init__.py,sha256=j6brTqACyRS71pkZIcL-LxneE5ALhaHkCtUnBUS0448,266
|
|
353
|
+
mirascope/llm/providers/openai/completions/_utils/decode.py,sha256=C-hSaLcxrN0JzYkWYLweIqd6Eq1-QF0Bt9NH2XET2sc,8951
|
|
354
|
+
mirascope/llm/providers/openai/completions/_utils/encode.py,sha256=mXTwKFiOxfd7bDbDMg5cFhS7Jzn3qTgfaZMMyd__Qz4,14019
|
|
355
|
+
mirascope/llm/providers/openai/responses/__init__.py,sha256=_r-w3uzGYdP9T7v2c__izSOXbolrg8axmK6j9TTRgbA,92
|
|
356
|
+
mirascope/llm/providers/openai/responses/provider.py,sha256=W5d53_UOHUX5X4jRsXr5nm-AWrLKpWThCJUTidaBpWk,17962
|
|
357
|
+
mirascope/llm/providers/openai/responses/_utils/__init__.py,sha256=7TVVzYepHXvhe-XOt454VIGGIm2soCikX18s8jNhclc,309
|
|
358
|
+
mirascope/llm/providers/openai/responses/_utils/decode.py,sha256=nuINrGsjSo0uupCTNXnsNGa4jFO3wMIel_NfyshdJTo,9912
|
|
359
|
+
mirascope/llm/providers/openai/responses/_utils/encode.py,sha256=1EXKlFw6nEQw0BxITZQvWC-rW-X1vsfOd8uv0wV8LR8,13867
|
|
360
|
+
mirascope/llm/providers/together/__init__.py,sha256=ukc99bsfsYB0fq4alaRqClxFG3bKJ0eYGPj7AfjLnpM,122
|
|
361
|
+
mirascope/llm/providers/together/provider.py,sha256=LauQR6kdxFNkO8CqaJIbiyn2TxI6mO3z5GhnZbHxQa0,1295
|
|
362
|
+
mirascope/llm/responses/__init__.py,sha256=5A9uc3eBzeN3-zMm2yYoJqh--5YZaAt699e3iy3s1mA,1516
|
|
363
|
+
mirascope/llm/responses/_utils.py,sha256=0_vuY5qcFD91sF2uCOM1PxJse5vP6pEPedEFqKAabXI,4096
|
|
364
|
+
mirascope/llm/responses/base_response.py,sha256=Se0tf3hIB8Y7cBvAeLJEctA-w-pdLIHOURBn023m51s,4269
|
|
365
|
+
mirascope/llm/responses/base_stream_response.py,sha256=EnkUorTV-i9o8f3RPxJjShss0ngX-MDIB4OZ61VhGdY,33113
|
|
366
|
+
mirascope/llm/responses/finish_reason.py,sha256=Az5OY6pfZoOPEpzVnl07AqZPz5ZC-w4YKwpUPbFJGdM,798
|
|
367
|
+
mirascope/llm/responses/response.py,sha256=BZ8Bw263DJQFnWZyp0Ky3mVYrG4z7l_bZ88CSlxOw4A,12518
|
|
368
|
+
mirascope/llm/responses/root_response.py,sha256=LXAMDgI29UF8VYv0a76IfZkiQnebpTPFDkgJR8zFdZo,9246
|
|
369
|
+
mirascope/llm/responses/stream_response.py,sha256=G3iIM4a6IuRVuW40-CT6y_1TOJkaSoyseIIaYjtpSMs,24094
|
|
370
|
+
mirascope/llm/responses/streams.py,sha256=TmEFvLVEWHfVYplik61yUWisxe8JGbaZdh7yC7e-axI,10789
|
|
371
|
+
mirascope/llm/responses/usage.py,sha256=mm4f9EDBzR57bqPTG2B0iqYnwbyog7csHqo0zjnwWVM,2984
|
|
372
|
+
mirascope/llm/tools/__init__.py,sha256=P9NX6pP5fKScTAuR9K3fODdW17wQ-6fcArVx2klGies,961
|
|
373
|
+
mirascope/llm/tools/_utils.py,sha256=mUi6vUEwYuwu8W9FCQcQ_9h_VE_U-Y3Y2UQ2YptPZL4,1171
|
|
374
|
+
mirascope/llm/tools/decorator.py,sha256=2ZTvYH0jrft0E3BdQ2BB9Okyb72JOIqQvBkLWmWuo7w,5663
|
|
375
|
+
mirascope/llm/tools/protocols.py,sha256=pUgGuh4TilRuoipeEHfTzu5cXacMnUpz0Q5YXQyAY2I,3050
|
|
376
|
+
mirascope/llm/tools/tool_schema.py,sha256=2wVqbXx2B12dE1u_By9Vlbrjz0R_s8pmE6M1Av4GrAE,10291
|
|
377
|
+
mirascope/llm/tools/toolkit.py,sha256=YFBEUWEeFRsujYjhsBvD7Hu3-tlvQP3sihp_c65ZVHE,5284
|
|
378
|
+
mirascope/llm/tools/tools.py,sha256=CaSGvjFnj-A8KIpInc7m5VNj7wY-eW25f4fvAZeDwWQ,9844
|
|
379
|
+
mirascope/llm/types/__init__.py,sha256=lqzi1FkZ-s-D9-KQzVkAHuQQ1zp6B6yM3r9UNo46teE,357
|
|
380
|
+
mirascope/llm/types/dataclass.py,sha256=y4_9M3Yqw_4I-H0V4TwvgGIp6JvRdtpW11NxqufnsJk,247
|
|
381
|
+
mirascope/llm/types/jsonable.py,sha256=KY6l21_RBhlHQRXQ_xy6pUqqbTVb_jVFSU4ykRy_OLU,1104
|
|
382
|
+
mirascope/llm/types/type_vars.py,sha256=OsAcQAZh5T_X8ZTLlP4GC1x3qgVY9rfYSnME8aMTDxw,642
|
|
383
|
+
mirascope/ops/__init__.py,sha256=tS2HIXbbKo9VY2LPngNaAtel9aNQblt2Tz3scyYUmyw,2617
|
|
384
|
+
mirascope/ops/exceptions.py,sha256=N5AES285tTxFJ1THIeJht-_ZEQ7-7_FWoes4EBAu3B8,641
|
|
385
|
+
mirascope/ops/_internal/__init__.py,sha256=yCf8bnHiQFWYsBkwBPyMqknI5apmOwlmyf105mH9EAE,173
|
|
386
|
+
mirascope/ops/_internal/closure.py,sha256=lPkZLfL33OZ3yxdZhT3RXqhD0ychKWH0zevU4V-VHCY,42465
|
|
387
|
+
mirascope/ops/_internal/configuration.py,sha256=kWgqLM6XOJ9WK_7y7R3ULQ0UE7r9dgxxMIfg4YRZ0c4,5228
|
|
388
|
+
mirascope/ops/_internal/context.py,sha256=G0Jiv6XfWjeDyRrh5-Wg6I0UlqiDj17SNMhtQ6Rw3lM,2522
|
|
389
|
+
mirascope/ops/_internal/propagation.py,sha256=2in7uttv2b5MBoe3Ol1mgn6N20TqhH0sErGak7hMUDY,7032
|
|
390
|
+
mirascope/ops/_internal/protocols.py,sha256=72K-AIHpDsflo58cig_jO1_xdAwuqZaQBU96G4sGe_I,4229
|
|
391
|
+
mirascope/ops/_internal/session.py,sha256=-7r2TbJiAKeEQ0YaJ9X_2BlumLK7x6h9wP6f8ei-5GA,4105
|
|
392
|
+
mirascope/ops/_internal/spans.py,sha256=Mx4x2sSYYIhibcHKr99TTboUdGrSPV09NpftJD5kkBE,7675
|
|
393
|
+
mirascope/ops/_internal/traced_calls.py,sha256=nHz2NgG9IHyhDKozKp7m252lDetdSaGn-tYhtZSO9LM,13000
|
|
394
|
+
mirascope/ops/_internal/traced_functions.py,sha256=dAMx6BfBs6phc8LgdbsBZFUCN7el-sRMhK6yBYm6zVw,18884
|
|
395
|
+
mirascope/ops/_internal/tracing.py,sha256=RzHBc-yEbj3Z_Kjobh26FWDSnF6AGbRCsb0JXBSzPdc,10244
|
|
396
|
+
mirascope/ops/_internal/types.py,sha256=5B1RgChTEbGkLZvdoX8XA2vMKn4bS8BczjGDElxmugI,412
|
|
397
|
+
mirascope/ops/_internal/utils.py,sha256=qxr0ysyrBZP7ov9pqAirtDjftprMswwq3szbbVqjabk,4466
|
|
398
|
+
mirascope/ops/_internal/versioned_calls.py,sha256=7oePDEuf98ph6yrHKJmXSagc1mGz5sdTTJgQnB2CyHM,18445
|
|
399
|
+
mirascope/ops/_internal/versioned_functions.py,sha256=lX0jgOPdtaajFM8kEkkEBRbGCrLuTo65EApnYCSDo_U,13522
|
|
400
|
+
mirascope/ops/_internal/versioning.py,sha256=MxiezWrGUPiLZxZnwwXDFTR7EMrfTHR7rmd14TuDCL8,8286
|
|
401
|
+
mirascope/ops/_internal/exporters/__init__.py,sha256=3PUd75TczW_8bUImcWgddWyoRmygGf6T_jL7Jo3t_sY,608
|
|
402
|
+
mirascope/ops/_internal/exporters/exporters.py,sha256=nRyDXxf0Mgy0D5sni60tdi8Hgfivj2eLO1dWwtaydRI,14932
|
|
403
|
+
mirascope/ops/_internal/exporters/processors.py,sha256=hkNwA5m0e_KJoPQf_EPUaK6ItZlJ8D5TCBs-JAhGKXo,3511
|
|
404
|
+
mirascope/ops/_internal/exporters/types.py,sha256=1ge7nwNQ3HUH4qVoYeHhSUp3LxohkvDSoqPw2MDLEqw,4057
|
|
405
|
+
mirascope/ops/_internal/exporters/utils.py,sha256=zDZihsj4BxLZH3o2RKCofCvSUf4Nbo8Yro2dqkm0rI4,727
|
|
406
|
+
mirascope/ops/_internal/instrumentation/__init__.py,sha256=Fz2WUX_vFvLqHbMxkuVQAGRXyWkk9Oqug8DcA-oa4p8,180
|
|
407
|
+
mirascope/ops/_internal/instrumentation/llm/__init__.py,sha256=_L6JL3sw6XbW9ICsWe4RZpkT-_BFSIBbh_n00O9h_SM,184
|
|
408
|
+
mirascope/ops/_internal/instrumentation/llm/common.py,sha256=bb4rHjnQyAs55Cf_qy0OupEuzxvskpOTvRBGEJyByfY,17637
|
|
409
|
+
mirascope/ops/_internal/instrumentation/llm/cost.py,sha256=TcXgJOsBoAePf3quMh1wgbRCNfoznHxhZ-TfYweSi5Y,6725
|
|
410
|
+
mirascope/ops/_internal/instrumentation/llm/encode.py,sha256=I8hB76_hjPPzmDbiG5S6jzJQJIu2pyWMyT3wJQabx90,8349
|
|
411
|
+
mirascope/ops/_internal/instrumentation/llm/llm.py,sha256=WUHXdzyhp8xbe_E6-GTFG5LUDHwTJguLjmEtv_RzKvw,5138
|
|
412
|
+
mirascope/ops/_internal/instrumentation/llm/model.py,sha256=DX5AgGXtQb0hR9JOcXJJPGXkK4FQrKs_RNg3wayBM3Y,55306
|
|
413
|
+
mirascope/ops/_internal/instrumentation/llm/response.py,sha256=j0sRAE0bk8PYfeU4LQBr5QySXbiVgrOHQc-UDw_kIFI,19362
|
|
414
|
+
mirascope/ops/_internal/instrumentation/llm/serialize.py,sha256=EW-VNwg8SX7DvgdChi78xqrjEGXHVOlSmgh0tU_Y4S8,10894
|
|
415
|
+
mirascope/ops/_internal/instrumentation/llm/gen_ai_types/__init__.py,sha256=37jQoprefVlma7K9SJih78TbRqvKyx_PDRNLS31Y_kc,813
|
|
416
|
+
mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_input_messages.py,sha256=T35Lrskt0OvMu2kF98V2dgVhnQoRy_3ZJ2yTYgyxm48,758
|
|
417
|
+
mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_output_messages.py,sha256=qxLxSmwd_2EdymR4a5cDXc9DTSFGQXMhqSHGgS219Y4,957
|
|
418
|
+
mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_system_instructions.py,sha256=ZkWNOh6-tG6LtFP_0Hjfdf_8BqAsIFyP3tNybeo1FnY,388
|
|
419
|
+
mirascope/ops/_internal/instrumentation/llm/gen_ai_types/shared.py,sha256=JpmcF1i25EHc8KMv6nkpBwyIU46B_T8v1L71C16n080,3004
|
|
420
|
+
mirascope-2.0.0.dist-info/METADATA,sha256=CLY2_JNtFgfCBs2TbHMonKufGB-Qfq2meUHiuQiAdvw,9019
|
|
421
|
+
mirascope-2.0.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
422
|
+
mirascope-2.0.0.dist-info/licenses/LICENSE,sha256=MxD-HQ4YHSi2YqZ3UH2MsjclZbesds6j5it4O2IWyJs,1072
|
|
423
|
+
mirascope-2.0.0.dist-info/RECORD,,
|
mirascope/beta/__init__.py
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from .realtime import (
|
|
2
|
-
Context,
|
|
3
|
-
OpenAIRealtimeTool,
|
|
4
|
-
Realtime,
|
|
5
|
-
async_input,
|
|
6
|
-
record,
|
|
7
|
-
record_as_stream,
|
|
8
|
-
)
|
|
9
|
-
|
|
10
|
-
__all__ = [
|
|
11
|
-
"Context",
|
|
12
|
-
"OpenAIRealtimeTool",
|
|
13
|
-
"Realtime",
|
|
14
|
-
"async_input",
|
|
15
|
-
"record",
|
|
16
|
-
"record_as_stream",
|
|
17
|
-
]
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
from ._utils import Context
|
|
2
|
-
from .realtime import Realtime
|
|
3
|
-
from .recording import async_input, record, record_as_stream
|
|
4
|
-
from .tool import OpenAIRealtimeTool
|
|
5
|
-
|
|
6
|
-
__all__ = [
|
|
7
|
-
"Context",
|
|
8
|
-
"OpenAIRealtimeTool",
|
|
9
|
-
"Realtime",
|
|
10
|
-
"async_input",
|
|
11
|
-
"record",
|
|
12
|
-
"record_as_stream",
|
|
13
|
-
]
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
import asyncio
|
|
2
|
-
import base64
|
|
3
|
-
import io
|
|
4
|
-
from io import BytesIO
|
|
5
|
-
from typing import Any
|
|
6
|
-
|
|
7
|
-
from pydub import AudioSegment
|
|
8
|
-
|
|
9
|
-
SAMPLE_WIDTH = 2
|
|
10
|
-
FRAME_RATE = 24000
|
|
11
|
-
CHANNELS = 1
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
def audio_chunk_to_audio_segment(audio_bytes: bytes) -> AudioSegment:
|
|
15
|
-
return AudioSegment.from_raw(
|
|
16
|
-
io.BytesIO(audio_bytes),
|
|
17
|
-
sample_width=SAMPLE_WIDTH,
|
|
18
|
-
frame_rate=FRAME_RATE,
|
|
19
|
-
channels=CHANNELS,
|
|
20
|
-
)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
def _encode_pcm_as_base64(audio_bytes: bytes | BytesIO) -> str:
|
|
24
|
-
# Load the audio file from the byte stream
|
|
25
|
-
audio = AudioSegment.from_file(
|
|
26
|
-
io.BytesIO(audio_bytes) if isinstance(audio_bytes, bytes) else audio_bytes
|
|
27
|
-
)
|
|
28
|
-
|
|
29
|
-
# Resample to 24kHz mono pcm16
|
|
30
|
-
pcm_audio = (
|
|
31
|
-
audio.set_frame_rate(FRAME_RATE)
|
|
32
|
-
.set_channels(CHANNELS)
|
|
33
|
-
.set_sample_width(SAMPLE_WIDTH)
|
|
34
|
-
.raw_data
|
|
35
|
-
)
|
|
36
|
-
|
|
37
|
-
# Encode to base64 string
|
|
38
|
-
return base64.b64encode(pcm_audio).decode()
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
def audio_to_input_audio_buffer_append_event(
|
|
42
|
-
audio_bytes: bytes | BytesIO,
|
|
43
|
-
) -> dict[str, Any]:
|
|
44
|
-
return {
|
|
45
|
-
"type": "input_audio_buffer.append",
|
|
46
|
-
"audio": _encode_pcm_as_base64(audio_bytes),
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
async def async_audio_input_audio_buffer_append_event(
|
|
51
|
-
audio_bytes: bytes | BytesIO,
|
|
52
|
-
) -> dict[str, Any]:
|
|
53
|
-
return await asyncio.to_thread(
|
|
54
|
-
audio_to_input_audio_buffer_append_event, audio_bytes
|
|
55
|
-
)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
def audio_to_item_create_event(audio_bytes: bytes | BytesIO) -> dict[str, Any]:
|
|
59
|
-
return {
|
|
60
|
-
"type": "conversation.item.create",
|
|
61
|
-
"item": {
|
|
62
|
-
"type": "message",
|
|
63
|
-
"role": "user",
|
|
64
|
-
"content": [
|
|
65
|
-
{"type": "input_audio", "audio": _encode_pcm_as_base64(audio_bytes)}
|
|
66
|
-
],
|
|
67
|
-
},
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
async def async_audio_to_item_create_event(
|
|
72
|
-
audio_bytes: bytes | BytesIO,
|
|
73
|
-
) -> dict[str, Any]:
|
|
74
|
-
return await asyncio.to_thread(audio_to_item_create_event, audio_bytes)
|