coval-sdk 0.2.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.
- coval_sdk/__init__.py +621 -0
- coval_sdk/api/__init__.py +26 -0
- coval_sdk/api/agents_api.py +1497 -0
- coval_sdk/api/api_keys_api.py +1212 -0
- coval_sdk/api/audio_api.py +594 -0
- coval_sdk/api/conversations_api.py +2145 -0
- coval_sdk/api/dashboards_api.py +1474 -0
- coval_sdk/api/metric_outputs_api.py +666 -0
- coval_sdk/api/metrics_api.py +4826 -0
- coval_sdk/api/monitor_events_api.py +363 -0
- coval_sdk/api/monitors_api.py +1796 -0
- coval_sdk/api/mutations_api.py +1541 -0
- coval_sdk/api/personas_api.py +1994 -0
- coval_sdk/api/review_annotations_api.py +1545 -0
- coval_sdk/api/review_projects_api.py +1474 -0
- coval_sdk/api/run_templates_api.py +1469 -0
- coval_sdk/api/runs_api.py +1502 -0
- coval_sdk/api/scheduled_runs_api.py +1500 -0
- coval_sdk/api/simulations_api.py +1785 -0
- coval_sdk/api/templates_api.py +1771 -0
- coval_sdk/api/test_cases_api.py +1489 -0
- coval_sdk/api/test_sets_api.py +1492 -0
- coval_sdk/api/traces_api.py +370 -0
- coval_sdk/api/widgets_api.py +1535 -0
- coval_sdk/api_client.py +805 -0
- coval_sdk/api_response.py +21 -0
- coval_sdk/configuration.py +791 -0
- coval_sdk/exceptions.py +219 -0
- coval_sdk/models/__init__.py +282 -0
- coval_sdk/models/coval_agent_mutations_api_create_mutation_request.py +114 -0
- coval_sdk/models/coval_agent_mutations_api_create_mutation_response.py +106 -0
- coval_sdk/models/coval_agent_mutations_api_error_response.py +106 -0
- coval_sdk/models/coval_agent_mutations_api_error_response_error.py +121 -0
- coval_sdk/models/coval_agent_mutations_api_error_response_error_details_inner.py +109 -0
- coval_sdk/models/coval_agent_mutations_api_get_mutation_response.py +106 -0
- coval_sdk/models/coval_agent_mutations_api_list_mutations_response.py +119 -0
- coval_sdk/models/coval_agent_mutations_api_mutation_resource.py +143 -0
- coval_sdk/models/coval_agent_mutations_api_update_mutation_request.py +109 -0
- coval_sdk/models/coval_agent_mutations_api_update_mutation_response.py +106 -0
- coval_sdk/models/coval_agents_api_agent_resource.py +164 -0
- coval_sdk/models/coval_agents_api_create_agent_request.py +135 -0
- coval_sdk/models/coval_agents_api_create_agent_response.py +106 -0
- coval_sdk/models/coval_agents_api_error_response.py +106 -0
- coval_sdk/models/coval_agents_api_error_response_error.py +121 -0
- coval_sdk/models/coval_agents_api_error_response_error_details_inner.py +109 -0
- coval_sdk/models/coval_agents_api_get_agent_response.py +106 -0
- coval_sdk/models/coval_agents_api_list_agents_response.py +117 -0
- coval_sdk/models/coval_agents_api_simulator_type.py +45 -0
- coval_sdk/models/coval_agents_api_update_agent_request.py +155 -0
- coval_sdk/models/coval_agents_api_update_agent_response.py +106 -0
- coval_sdk/models/coval_api_keys_api_api_key_resource.py +160 -0
- coval_sdk/models/coval_api_keys_api_api_key_resource_unmasked.py +160 -0
- coval_sdk/models/coval_api_keys_api_api_key_status.py +40 -0
- coval_sdk/models/coval_api_keys_api_create_api_key_request.py +121 -0
- coval_sdk/models/coval_api_keys_api_create_api_key_response.py +106 -0
- coval_sdk/models/coval_api_keys_api_error_response.py +106 -0
- coval_sdk/models/coval_api_keys_api_error_response_error.py +121 -0
- coval_sdk/models/coval_api_keys_api_error_response_error_details_inner.py +109 -0
- coval_sdk/models/coval_api_keys_api_key_type.py +38 -0
- coval_sdk/models/coval_api_keys_api_list_api_keys_response.py +119 -0
- coval_sdk/models/coval_api_keys_api_permission_scope.py +79 -0
- coval_sdk/models/coval_api_keys_api_update_api_key_request.py +111 -0
- coval_sdk/models/coval_api_keys_api_update_api_key_response.py +106 -0
- coval_sdk/models/coval_conversations_api_conversation_progress.py +108 -0
- coval_sdk/models/coval_conversations_api_conversation_resource.py +161 -0
- coval_sdk/models/coval_conversations_api_conversation_status.py +43 -0
- coval_sdk/models/coval_conversations_api_create_audio_upload_request.py +115 -0
- coval_sdk/models/coval_conversations_api_create_audio_upload_response.py +129 -0
- coval_sdk/models/coval_conversations_api_delete_conversation_response.py +106 -0
- coval_sdk/models/coval_conversations_api_error_detail.py +104 -0
- coval_sdk/models/coval_conversations_api_error_response.py +106 -0
- coval_sdk/models/coval_conversations_api_error_response_error.py +121 -0
- coval_sdk/models/coval_conversations_api_get_conversation_audio_response.py +113 -0
- coval_sdk/models/coval_conversations_api_get_conversation_metric_response.py +106 -0
- coval_sdk/models/coval_conversations_api_get_conversation_response.py +106 -0
- coval_sdk/models/coval_conversations_api_list_conversation_metrics_response.py +117 -0
- coval_sdk/models/coval_conversations_api_list_conversations_response.py +117 -0
- coval_sdk/models/coval_conversations_api_metric_output_collection.py +110 -0
- coval_sdk/models/coval_conversations_api_patch_conversation_request.py +104 -0
- coval_sdk/models/coval_conversations_api_simple_metric_output.py +120 -0
- coval_sdk/models/coval_conversations_api_simple_metric_output_value.py +156 -0
- coval_sdk/models/coval_conversations_api_submit_conversation_request.py +157 -0
- coval_sdk/models/coval_conversations_api_submit_conversation_response.py +106 -0
- coval_sdk/models/coval_conversations_api_tool_call.py +117 -0
- coval_sdk/models/coval_conversations_api_tool_call_function.py +104 -0
- coval_sdk/models/coval_conversations_api_transcript_message.py +141 -0
- coval_sdk/models/coval_dashboards_api_aggregation_type.py +42 -0
- coval_sdk/models/coval_dashboards_api_chart_widget_config.py +176 -0
- coval_sdk/models/coval_dashboards_api_create_dashboard_request.py +103 -0
- coval_sdk/models/coval_dashboards_api_create_dashboard_response.py +106 -0
- coval_sdk/models/coval_dashboards_api_create_widget_request.py +140 -0
- coval_sdk/models/coval_dashboards_api_create_widget_response.py +106 -0
- coval_sdk/models/coval_dashboards_api_dashboard_resource.py +115 -0
- coval_sdk/models/coval_dashboards_api_data_source_type.py +38 -0
- coval_sdk/models/coval_dashboards_api_error_response.py +106 -0
- coval_sdk/models/coval_dashboards_api_error_response_error.py +121 -0
- coval_sdk/models/coval_dashboards_api_error_response_error_details_inner.py +109 -0
- coval_sdk/models/coval_dashboards_api_filter_config.py +114 -0
- coval_sdk/models/coval_dashboards_api_get_dashboard_response.py +106 -0
- coval_sdk/models/coval_dashboards_api_get_widget_response.py +106 -0
- coval_sdk/models/coval_dashboards_api_group_by_type.py +41 -0
- coval_sdk/models/coval_dashboards_api_list_dashboards_response.py +117 -0
- coval_sdk/models/coval_dashboards_api_list_widgets_response.py +117 -0
- coval_sdk/models/coval_dashboards_api_metric_filter.py +114 -0
- coval_sdk/models/coval_dashboards_api_metric_filter_operator.py +42 -0
- coval_sdk/models/coval_dashboards_api_metric_filter_value.py +144 -0
- coval_sdk/models/coval_dashboards_api_metric_output_type.py +38 -0
- coval_sdk/models/coval_dashboards_api_table_widget_config.py +128 -0
- coval_sdk/models/coval_dashboards_api_text_widget_config.py +103 -0
- coval_sdk/models/coval_dashboards_api_update_dashboard_request.py +103 -0
- coval_sdk/models/coval_dashboards_api_update_dashboard_response.py +106 -0
- coval_sdk/models/coval_dashboards_api_update_widget_request.py +140 -0
- coval_sdk/models/coval_dashboards_api_update_widget_response.py +106 -0
- coval_sdk/models/coval_dashboards_api_visualization_type.py +43 -0
- coval_sdk/models/coval_dashboards_api_widget_config.py +150 -0
- coval_sdk/models/coval_dashboards_api_widget_resource.py +152 -0
- coval_sdk/models/coval_dashboards_api_widget_type.py +39 -0
- coval_sdk/models/coval_metrics_api_baseline.py +183 -0
- coval_sdk/models/coval_metrics_api_baseline_config.py +102 -0
- coval_sdk/models/coval_metrics_api_baseline_detection_method.py +37 -0
- coval_sdk/models/coval_metrics_api_baseline_direction.py +39 -0
- coval_sdk/models/coval_metrics_api_baseline_status.py +39 -0
- coval_sdk/models/coval_metrics_api_comparison_operator.py +46 -0
- coval_sdk/models/coval_metrics_api_create_metric_baseline_request.py +151 -0
- coval_sdk/models/coval_metrics_api_create_metric_request.py +156 -0
- coval_sdk/models/coval_metrics_api_create_threshold_request.py +128 -0
- coval_sdk/models/coval_metrics_api_create_threshold_response.py +106 -0
- coval_sdk/models/coval_metrics_api_error_response.py +106 -0
- coval_sdk/models/coval_metrics_api_error_response_error.py +121 -0
- coval_sdk/models/coval_metrics_api_error_response_error_details_inner.py +109 -0
- coval_sdk/models/coval_metrics_api_get_metric_response.py +106 -0
- coval_sdk/models/coval_metrics_api_get_threshold_response.py +106 -0
- coval_sdk/models/coval_metrics_api_list_metric_baselines_response.py +119 -0
- coval_sdk/models/coval_metrics_api_list_metric_models_response.py +110 -0
- coval_sdk/models/coval_metrics_api_list_metrics_response.py +117 -0
- coval_sdk/models/coval_metrics_api_list_thresholds_response.py +117 -0
- coval_sdk/models/coval_metrics_api_metadata_field_type.py +39 -0
- coval_sdk/models/coval_metrics_api_metric_model_resource.py +124 -0
- coval_sdk/models/coval_metrics_api_metric_resource.py +227 -0
- coval_sdk/models/coval_metrics_api_metric_runtime_config.py +109 -0
- coval_sdk/models/coval_metrics_api_metric_threshold_resource.py +154 -0
- coval_sdk/models/coval_metrics_api_metric_type.py +46 -0
- coval_sdk/models/coval_metrics_api_patch_threshold_request.py +142 -0
- coval_sdk/models/coval_metrics_api_patch_threshold_response.py +106 -0
- coval_sdk/models/coval_metrics_api_target_condition.py +111 -0
- coval_sdk/models/coval_metrics_api_threshold_source.py +38 -0
- coval_sdk/models/coval_metrics_api_update_metric_baseline_request.py +121 -0
- coval_sdk/models/coval_metrics_api_update_metric_request.py +166 -0
- coval_sdk/models/coval_monitors_api_channel_input.py +105 -0
- coval_sdk/models/coval_monitors_api_channel_type.py +40 -0
- coval_sdk/models/coval_monitors_api_condition_aggregation.py +43 -0
- coval_sdk/models/coval_monitors_api_condition_input.py +161 -0
- coval_sdk/models/coval_monitors_api_condition_operator.py +42 -0
- coval_sdk/models/coval_monitors_api_create_monitor_request.py +157 -0
- coval_sdk/models/coval_monitors_api_error_response.py +106 -0
- coval_sdk/models/coval_monitors_api_error_response_error.py +121 -0
- coval_sdk/models/coval_monitors_api_list_monitor_events_response.py +119 -0
- coval_sdk/models/coval_monitors_api_list_monitors_response.py +119 -0
- coval_sdk/models/coval_monitors_api_monitor_channel.py +118 -0
- coval_sdk/models/coval_monitors_api_monitor_condition.py +173 -0
- coval_sdk/models/coval_monitors_api_monitor_evaluation_type.py +38 -0
- coval_sdk/models/coval_monitors_api_monitor_event_outcome.py +40 -0
- coval_sdk/models/coval_monitors_api_monitor_event_resource.py +150 -0
- coval_sdk/models/coval_monitors_api_monitor_event_resource_condition_results_inner.py +131 -0
- coval_sdk/models/coval_monitors_api_monitor_event_resource_condition_results_inner_computed_value.py +150 -0
- coval_sdk/models/coval_monitors_api_monitor_event_resource_dispatched_channels_inner.py +113 -0
- coval_sdk/models/coval_monitors_api_monitor_match_mode.py +38 -0
- coval_sdk/models/coval_monitors_api_monitor_resource.py +192 -0
- coval_sdk/models/coval_monitors_api_monitor_scope.py +39 -0
- coval_sdk/models/coval_monitors_api_test_evaluate_request.py +102 -0
- coval_sdk/models/coval_monitors_api_test_evaluate_response.py +114 -0
- coval_sdk/models/coval_monitors_api_update_monitor_request.py +157 -0
- coval_sdk/models/coval_personas_api_create_persona_request.py +190 -0
- coval_sdk/models/coval_personas_api_create_persona_response.py +106 -0
- coval_sdk/models/coval_personas_api_error.py +106 -0
- coval_sdk/models/coval_personas_api_error_error.py +104 -0
- coval_sdk/models/coval_personas_api_get_persona_response.py +106 -0
- coval_sdk/models/coval_personas_api_list_personas_response.py +117 -0
- coval_sdk/models/coval_personas_api_list_phone_numbers_response.py +106 -0
- coval_sdk/models/coval_personas_api_list_voices_response.py +110 -0
- coval_sdk/models/coval_personas_api_persona_resource.py +214 -0
- coval_sdk/models/coval_personas_api_phone_number_mapping.py +105 -0
- coval_sdk/models/coval_personas_api_phone_numbers_data.py +119 -0
- coval_sdk/models/coval_personas_api_update_persona_request.py +205 -0
- coval_sdk/models/coval_personas_api_update_persona_response.py +106 -0
- coval_sdk/models/coval_personas_api_voice_resource.py +104 -0
- coval_sdk/models/coval_reviews_api_annotation_priority.py +38 -0
- coval_sdk/models/coval_reviews_api_annotation_status.py +38 -0
- coval_sdk/models/coval_reviews_api_completion_status.py +38 -0
- coval_sdk/models/coval_reviews_api_create_review_annotation_request.py +138 -0
- coval_sdk/models/coval_reviews_api_create_review_annotation_response.py +106 -0
- coval_sdk/models/coval_reviews_api_create_review_project_request.py +129 -0
- coval_sdk/models/coval_reviews_api_create_review_project_response.py +106 -0
- coval_sdk/models/coval_reviews_api_error_response.py +106 -0
- coval_sdk/models/coval_reviews_api_error_response_error.py +114 -0
- coval_sdk/models/coval_reviews_api_get_review_annotation_response.py +106 -0
- coval_sdk/models/coval_reviews_api_get_review_project_response.py +106 -0
- coval_sdk/models/coval_reviews_api_list_review_annotations_response.py +117 -0
- coval_sdk/models/coval_reviews_api_list_review_projects_response.py +117 -0
- coval_sdk/models/coval_reviews_api_project_rule.py +37 -0
- coval_sdk/models/coval_reviews_api_project_type.py +38 -0
- coval_sdk/models/coval_reviews_api_review_annotation_resource.py +152 -0
- coval_sdk/models/coval_reviews_api_review_project_resource.py +137 -0
- coval_sdk/models/coval_reviews_api_update_review_annotation_request.py +138 -0
- coval_sdk/models/coval_reviews_api_update_review_annotation_response.py +106 -0
- coval_sdk/models/coval_reviews_api_update_review_project_request.py +158 -0
- coval_sdk/models/coval_reviews_api_update_review_project_response.py +106 -0
- coval_sdk/models/coval_run_templates_api_create_run_template_request.py +160 -0
- coval_sdk/models/coval_run_templates_api_create_run_template_response.py +106 -0
- coval_sdk/models/coval_run_templates_api_error_response.py +106 -0
- coval_sdk/models/coval_run_templates_api_error_response_error.py +121 -0
- coval_sdk/models/coval_run_templates_api_error_response_error_details_inner.py +109 -0
- coval_sdk/models/coval_run_templates_api_get_run_template_response.py +106 -0
- coval_sdk/models/coval_run_templates_api_list_run_templates_response.py +119 -0
- coval_sdk/models/coval_run_templates_api_run_template_resource.py +184 -0
- coval_sdk/models/coval_run_templates_api_update_run_template_request.py +169 -0
- coval_sdk/models/coval_run_templates_api_update_run_template_response.py +106 -0
- coval_sdk/models/coval_runs_api_error.py +121 -0
- coval_sdk/models/coval_runs_api_error_detail.py +104 -0
- coval_sdk/models/coval_runs_api_launch_metadata.py +114 -0
- coval_sdk/models/coval_runs_api_launch_options.py +121 -0
- coval_sdk/models/coval_runs_api_launch_run_request.py +132 -0
- coval_sdk/models/coval_runs_api_launch_run_response.py +106 -0
- coval_sdk/models/coval_runs_api_metric_summary.py +106 -0
- coval_sdk/models/coval_runs_api_progress.py +108 -0
- coval_sdk/models/coval_runs_api_results.py +117 -0
- coval_sdk/models/coval_runs_api_run.py +168 -0
- coval_sdk/models/coval_runs_api_update_run_request.py +103 -0
- coval_sdk/models/coval_scheduled_runs_api_create_scheduled_run_request.py +121 -0
- coval_sdk/models/coval_scheduled_runs_api_create_scheduled_run_response.py +106 -0
- coval_sdk/models/coval_scheduled_runs_api_error_response.py +106 -0
- coval_sdk/models/coval_scheduled_runs_api_error_response_error.py +121 -0
- coval_sdk/models/coval_scheduled_runs_api_error_response_error_details_inner.py +109 -0
- coval_sdk/models/coval_scheduled_runs_api_get_scheduled_run_response.py +106 -0
- coval_sdk/models/coval_scheduled_runs_api_list_scheduled_runs_response.py +119 -0
- coval_sdk/models/coval_scheduled_runs_api_scheduled_run_resource.py +159 -0
- coval_sdk/models/coval_scheduled_runs_api_update_scheduled_run_request.py +124 -0
- coval_sdk/models/coval_scheduled_runs_api_update_scheduled_run_response.py +106 -0
- coval_sdk/models/coval_simulations_api_error_detail.py +104 -0
- coval_sdk/models/coval_simulations_api_error_info.py +121 -0
- coval_sdk/models/coval_simulations_api_error_response.py +106 -0
- coval_sdk/models/coval_simulations_api_get_audio_url_response.py +113 -0
- coval_sdk/models/coval_simulations_api_get_metric_output_response.py +106 -0
- coval_sdk/models/coval_simulations_api_get_simulation_response.py +106 -0
- coval_sdk/models/coval_simulations_api_list_metrics_response.py +112 -0
- coval_sdk/models/coval_simulations_api_list_simulations_response.py +112 -0
- coval_sdk/models/coval_simulations_api_metric_output_collection.py +110 -0
- coval_sdk/models/coval_simulations_api_resimulate_simulation_response.py +108 -0
- coval_sdk/models/coval_simulations_api_simple_metric_output.py +135 -0
- coval_sdk/models/coval_simulations_api_simple_metric_output_value.py +161 -0
- coval_sdk/models/coval_simulations_api_simulation_resource.py +169 -0
- coval_sdk/models/coval_simulations_api_simulation_resource_full.py +184 -0
- coval_sdk/models/coval_simulations_api_subvalue_by_timestamp.py +131 -0
- coval_sdk/models/coval_simulations_api_transcript_message.py +116 -0
- coval_sdk/models/coval_simulations_api_transcript_message_content.py +144 -0
- coval_sdk/models/coval_simulations_api_update_simulation_request.py +115 -0
- coval_sdk/models/coval_simulations_api_update_simulation_response.py +106 -0
- coval_sdk/models/coval_templates_api_create_template_request.py +163 -0
- coval_sdk/models/coval_templates_api_create_template_response.py +106 -0
- coval_sdk/models/coval_templates_api_duplicate_template_response.py +106 -0
- coval_sdk/models/coval_templates_api_error_response.py +106 -0
- coval_sdk/models/coval_templates_api_error_response_error.py +121 -0
- coval_sdk/models/coval_templates_api_error_response_error_details_inner.py +109 -0
- coval_sdk/models/coval_templates_api_get_template_response.py +106 -0
- coval_sdk/models/coval_templates_api_list_templates_response.py +117 -0
- coval_sdk/models/coval_templates_api_simulation_type.py +48 -0
- coval_sdk/models/coval_templates_api_template_resource.py +206 -0
- coval_sdk/models/coval_templates_api_update_template_request.py +181 -0
- coval_sdk/models/coval_templates_api_update_template_response.py +106 -0
- coval_sdk/models/create_test_case201_response.py +106 -0
- coval_sdk/models/create_test_set201_response.py +106 -0
- coval_sdk/models/get_conversation_metric200_response.py +138 -0
- coval_sdk/models/get_run200_response.py +106 -0
- coval_sdk/models/ingest_traces200_response.py +104 -0
- coval_sdk/models/list_runs200_response.py +112 -0
- coval_sdk/models/list_runs400_response.py +106 -0
- coval_sdk/models/list_test_cases200_response.py +112 -0
- coval_sdk/models/list_test_sets200_response.py +112 -0
- coval_sdk/models/simulations_get_metric200_response.py +138 -0
- coval_sdk/models/test_cases_api_create_test_case_request.py +156 -0
- coval_sdk/models/test_cases_api_error_response.py +106 -0
- coval_sdk/models/test_cases_api_error_response_error.py +114 -0
- coval_sdk/models/test_cases_api_error_response_error_details_inner.py +104 -0
- coval_sdk/models/test_cases_api_test_case_resource.py +168 -0
- coval_sdk/models/test_cases_api_update_test_case_request.py +156 -0
- coval_sdk/models/test_sets_api_create_test_set_request.py +118 -0
- coval_sdk/models/test_sets_api_error_response.py +106 -0
- coval_sdk/models/test_sets_api_error_response_error.py +114 -0
- coval_sdk/models/test_sets_api_error_response_error_details_inner.py +104 -0
- coval_sdk/models/test_sets_api_test_set_resource.py +139 -0
- coval_sdk/models/test_sets_api_update_test_set_request.py +118 -0
- coval_sdk/models/traces_api_error_response.py +106 -0
- coval_sdk/models/traces_api_error_response_error.py +114 -0
- coval_sdk/models/traces_api_error_response_error_details_inner.py +104 -0
- coval_sdk/py.typed +0 -0
- coval_sdk/rest.py +264 -0
- coval_sdk-0.2.0.dist-info/METADATA +105 -0
- coval_sdk-0.2.0.dist-info/RECORD +300 -0
- coval_sdk-0.2.0.dist-info/WHEEL +5 -0
- coval_sdk-0.2.0.dist-info/top_level.txt +1 -0
coval_sdk/__init__.py
ADDED
|
@@ -0,0 +1,621 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Coval Agents API
|
|
7
|
+
|
|
8
|
+
Manage configurations for simulations and evaluations.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.0.0
|
|
11
|
+
Contact: support@coval.dev
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "0.1.0"
|
|
19
|
+
|
|
20
|
+
# Define package exports
|
|
21
|
+
__all__ = [
|
|
22
|
+
"APIKeysApi",
|
|
23
|
+
"AgentsApi",
|
|
24
|
+
"AudioApi",
|
|
25
|
+
"ConversationsApi",
|
|
26
|
+
"DashboardsApi",
|
|
27
|
+
"MetricOutputsApi",
|
|
28
|
+
"MetricsApi",
|
|
29
|
+
"MonitorEventsApi",
|
|
30
|
+
"MonitorsApi",
|
|
31
|
+
"MutationsApi",
|
|
32
|
+
"PersonasApi",
|
|
33
|
+
"ReviewAnnotationsApi",
|
|
34
|
+
"ReviewProjectsApi",
|
|
35
|
+
"RunTemplatesApi",
|
|
36
|
+
"RunsApi",
|
|
37
|
+
"ScheduledRunsApi",
|
|
38
|
+
"SimulationsApi",
|
|
39
|
+
"TemplatesApi",
|
|
40
|
+
"TestCasesApi",
|
|
41
|
+
"TestSetsApi",
|
|
42
|
+
"TracesApi",
|
|
43
|
+
"WidgetsApi",
|
|
44
|
+
"ApiResponse",
|
|
45
|
+
"ApiClient",
|
|
46
|
+
"Configuration",
|
|
47
|
+
"OpenApiException",
|
|
48
|
+
"ApiTypeError",
|
|
49
|
+
"ApiValueError",
|
|
50
|
+
"ApiKeyError",
|
|
51
|
+
"ApiAttributeError",
|
|
52
|
+
"ApiException",
|
|
53
|
+
"CovalAPIKeysAPIApiKeyResource",
|
|
54
|
+
"CovalAPIKeysAPIApiKeyResourceUnmasked",
|
|
55
|
+
"CovalAPIKeysAPIApiKeyStatus",
|
|
56
|
+
"CovalAPIKeysAPICreateApiKeyRequest",
|
|
57
|
+
"CovalAPIKeysAPICreateApiKeyResponse",
|
|
58
|
+
"CovalAPIKeysAPIErrorResponse",
|
|
59
|
+
"CovalAPIKeysAPIErrorResponseError",
|
|
60
|
+
"CovalAPIKeysAPIErrorResponseErrorDetailsInner",
|
|
61
|
+
"CovalAPIKeysAPIKeyType",
|
|
62
|
+
"CovalAPIKeysAPIListApiKeysResponse",
|
|
63
|
+
"CovalAPIKeysAPIPermissionScope",
|
|
64
|
+
"CovalAPIKeysAPIUpdateApiKeyRequest",
|
|
65
|
+
"CovalAPIKeysAPIUpdateApiKeyResponse",
|
|
66
|
+
"CovalAgentMutationsAPICreateMutationRequest",
|
|
67
|
+
"CovalAgentMutationsAPICreateMutationResponse",
|
|
68
|
+
"CovalAgentMutationsAPIErrorResponse",
|
|
69
|
+
"CovalAgentMutationsAPIErrorResponseError",
|
|
70
|
+
"CovalAgentMutationsAPIErrorResponseErrorDetailsInner",
|
|
71
|
+
"CovalAgentMutationsAPIGetMutationResponse",
|
|
72
|
+
"CovalAgentMutationsAPIListMutationsResponse",
|
|
73
|
+
"CovalAgentMutationsAPIMutationResource",
|
|
74
|
+
"CovalAgentMutationsAPIUpdateMutationRequest",
|
|
75
|
+
"CovalAgentMutationsAPIUpdateMutationResponse",
|
|
76
|
+
"CovalAgentsAPIAgentResource",
|
|
77
|
+
"CovalAgentsAPICreateAgentRequest",
|
|
78
|
+
"CovalAgentsAPICreateAgentResponse",
|
|
79
|
+
"CovalAgentsAPIErrorResponse",
|
|
80
|
+
"CovalAgentsAPIErrorResponseError",
|
|
81
|
+
"CovalAgentsAPIErrorResponseErrorDetailsInner",
|
|
82
|
+
"CovalAgentsAPIGetAgentResponse",
|
|
83
|
+
"CovalAgentsAPIListAgentsResponse",
|
|
84
|
+
"CovalAgentsAPISimulatorType",
|
|
85
|
+
"CovalAgentsAPIUpdateAgentRequest",
|
|
86
|
+
"CovalAgentsAPIUpdateAgentResponse",
|
|
87
|
+
"CovalConversationsAPIConversationProgress",
|
|
88
|
+
"CovalConversationsAPIConversationResource",
|
|
89
|
+
"CovalConversationsAPIConversationStatus",
|
|
90
|
+
"CovalConversationsAPICreateAudioUploadRequest",
|
|
91
|
+
"CovalConversationsAPICreateAudioUploadResponse",
|
|
92
|
+
"CovalConversationsAPIDeleteConversationResponse",
|
|
93
|
+
"CovalConversationsAPIErrorDetail",
|
|
94
|
+
"CovalConversationsAPIErrorResponse",
|
|
95
|
+
"CovalConversationsAPIErrorResponseError",
|
|
96
|
+
"CovalConversationsAPIGetConversationAudioResponse",
|
|
97
|
+
"CovalConversationsAPIGetConversationMetricResponse",
|
|
98
|
+
"CovalConversationsAPIGetConversationResponse",
|
|
99
|
+
"CovalConversationsAPIListConversationMetricsResponse",
|
|
100
|
+
"CovalConversationsAPIListConversationsResponse",
|
|
101
|
+
"CovalConversationsAPIMetricOutputCollection",
|
|
102
|
+
"CovalConversationsAPIPatchConversationRequest",
|
|
103
|
+
"CovalConversationsAPISimpleMetricOutput",
|
|
104
|
+
"CovalConversationsAPISimpleMetricOutputValue",
|
|
105
|
+
"CovalConversationsAPISubmitConversationRequest",
|
|
106
|
+
"CovalConversationsAPISubmitConversationResponse",
|
|
107
|
+
"CovalConversationsAPIToolCall",
|
|
108
|
+
"CovalConversationsAPIToolCallFunction",
|
|
109
|
+
"CovalConversationsAPITranscriptMessage",
|
|
110
|
+
"CovalDashboardsAPIAggregationType",
|
|
111
|
+
"CovalDashboardsAPIChartWidgetConfig",
|
|
112
|
+
"CovalDashboardsAPICreateDashboardRequest",
|
|
113
|
+
"CovalDashboardsAPICreateDashboardResponse",
|
|
114
|
+
"CovalDashboardsAPICreateWidgetRequest",
|
|
115
|
+
"CovalDashboardsAPICreateWidgetResponse",
|
|
116
|
+
"CovalDashboardsAPIDashboardResource",
|
|
117
|
+
"CovalDashboardsAPIDataSourceType",
|
|
118
|
+
"CovalDashboardsAPIErrorResponse",
|
|
119
|
+
"CovalDashboardsAPIErrorResponseError",
|
|
120
|
+
"CovalDashboardsAPIErrorResponseErrorDetailsInner",
|
|
121
|
+
"CovalDashboardsAPIFilterConfig",
|
|
122
|
+
"CovalDashboardsAPIGetDashboardResponse",
|
|
123
|
+
"CovalDashboardsAPIGetWidgetResponse",
|
|
124
|
+
"CovalDashboardsAPIGroupByType",
|
|
125
|
+
"CovalDashboardsAPIListDashboardsResponse",
|
|
126
|
+
"CovalDashboardsAPIListWidgetsResponse",
|
|
127
|
+
"CovalDashboardsAPIMetricFilter",
|
|
128
|
+
"CovalDashboardsAPIMetricFilterOperator",
|
|
129
|
+
"CovalDashboardsAPIMetricFilterValue",
|
|
130
|
+
"CovalDashboardsAPIMetricOutputType",
|
|
131
|
+
"CovalDashboardsAPITableWidgetConfig",
|
|
132
|
+
"CovalDashboardsAPITextWidgetConfig",
|
|
133
|
+
"CovalDashboardsAPIUpdateDashboardRequest",
|
|
134
|
+
"CovalDashboardsAPIUpdateDashboardResponse",
|
|
135
|
+
"CovalDashboardsAPIUpdateWidgetRequest",
|
|
136
|
+
"CovalDashboardsAPIUpdateWidgetResponse",
|
|
137
|
+
"CovalDashboardsAPIVisualizationType",
|
|
138
|
+
"CovalDashboardsAPIWidgetConfig",
|
|
139
|
+
"CovalDashboardsAPIWidgetResource",
|
|
140
|
+
"CovalDashboardsAPIWidgetType",
|
|
141
|
+
"CovalMetricsAPIBaseline",
|
|
142
|
+
"CovalMetricsAPIBaselineConfig",
|
|
143
|
+
"CovalMetricsAPIBaselineDetectionMethod",
|
|
144
|
+
"CovalMetricsAPIBaselineDirection",
|
|
145
|
+
"CovalMetricsAPIBaselineStatus",
|
|
146
|
+
"CovalMetricsAPIComparisonOperator",
|
|
147
|
+
"CovalMetricsAPICreateMetricBaselineRequest",
|
|
148
|
+
"CovalMetricsAPICreateMetricRequest",
|
|
149
|
+
"CovalMetricsAPICreateThresholdRequest",
|
|
150
|
+
"CovalMetricsAPICreateThresholdResponse",
|
|
151
|
+
"CovalMetricsAPIErrorResponse",
|
|
152
|
+
"CovalMetricsAPIErrorResponseError",
|
|
153
|
+
"CovalMetricsAPIErrorResponseErrorDetailsInner",
|
|
154
|
+
"CovalMetricsAPIGetMetricResponse",
|
|
155
|
+
"CovalMetricsAPIGetThresholdResponse",
|
|
156
|
+
"CovalMetricsAPIListMetricBaselinesResponse",
|
|
157
|
+
"CovalMetricsAPIListMetricModelsResponse",
|
|
158
|
+
"CovalMetricsAPIListMetricsResponse",
|
|
159
|
+
"CovalMetricsAPIListThresholdsResponse",
|
|
160
|
+
"CovalMetricsAPIMetadataFieldType",
|
|
161
|
+
"CovalMetricsAPIMetricModelResource",
|
|
162
|
+
"CovalMetricsAPIMetricResource",
|
|
163
|
+
"CovalMetricsAPIMetricRuntimeConfig",
|
|
164
|
+
"CovalMetricsAPIMetricThresholdResource",
|
|
165
|
+
"CovalMetricsAPIMetricType",
|
|
166
|
+
"CovalMetricsAPIPatchThresholdRequest",
|
|
167
|
+
"CovalMetricsAPIPatchThresholdResponse",
|
|
168
|
+
"CovalMetricsAPITargetCondition",
|
|
169
|
+
"CovalMetricsAPIThresholdSource",
|
|
170
|
+
"CovalMetricsAPIUpdateMetricBaselineRequest",
|
|
171
|
+
"CovalMetricsAPIUpdateMetricRequest",
|
|
172
|
+
"CovalMonitorsAPIChannelInput",
|
|
173
|
+
"CovalMonitorsAPIChannelType",
|
|
174
|
+
"CovalMonitorsAPIConditionAggregation",
|
|
175
|
+
"CovalMonitorsAPIConditionInput",
|
|
176
|
+
"CovalMonitorsAPIConditionOperator",
|
|
177
|
+
"CovalMonitorsAPICreateMonitorRequest",
|
|
178
|
+
"CovalMonitorsAPIErrorResponse",
|
|
179
|
+
"CovalMonitorsAPIErrorResponseError",
|
|
180
|
+
"CovalMonitorsAPIListMonitorEventsResponse",
|
|
181
|
+
"CovalMonitorsAPIListMonitorsResponse",
|
|
182
|
+
"CovalMonitorsAPIMonitorChannel",
|
|
183
|
+
"CovalMonitorsAPIMonitorCondition",
|
|
184
|
+
"CovalMonitorsAPIMonitorEvaluationType",
|
|
185
|
+
"CovalMonitorsAPIMonitorEventOutcome",
|
|
186
|
+
"CovalMonitorsAPIMonitorEventResource",
|
|
187
|
+
"CovalMonitorsAPIMonitorEventResourceConditionResultsInner",
|
|
188
|
+
"CovalMonitorsAPIMonitorEventResourceConditionResultsInnerComputedValue",
|
|
189
|
+
"CovalMonitorsAPIMonitorEventResourceDispatchedChannelsInner",
|
|
190
|
+
"CovalMonitorsAPIMonitorMatchMode",
|
|
191
|
+
"CovalMonitorsAPIMonitorResource",
|
|
192
|
+
"CovalMonitorsAPIMonitorScope",
|
|
193
|
+
"CovalMonitorsAPITestEvaluateRequest",
|
|
194
|
+
"CovalMonitorsAPITestEvaluateResponse",
|
|
195
|
+
"CovalMonitorsAPIUpdateMonitorRequest",
|
|
196
|
+
"CovalPersonasAPICreatePersonaRequest",
|
|
197
|
+
"CovalPersonasAPICreatePersonaResponse",
|
|
198
|
+
"CovalPersonasAPIError",
|
|
199
|
+
"CovalPersonasAPIErrorError",
|
|
200
|
+
"CovalPersonasAPIGetPersonaResponse",
|
|
201
|
+
"CovalPersonasAPIListPersonasResponse",
|
|
202
|
+
"CovalPersonasAPIListPhoneNumbersResponse",
|
|
203
|
+
"CovalPersonasAPIListVoicesResponse",
|
|
204
|
+
"CovalPersonasAPIPersonaResource",
|
|
205
|
+
"CovalPersonasAPIPhoneNumberMapping",
|
|
206
|
+
"CovalPersonasAPIPhoneNumbersData",
|
|
207
|
+
"CovalPersonasAPIUpdatePersonaRequest",
|
|
208
|
+
"CovalPersonasAPIUpdatePersonaResponse",
|
|
209
|
+
"CovalPersonasAPIVoiceResource",
|
|
210
|
+
"CovalReviewsAPIAnnotationPriority",
|
|
211
|
+
"CovalReviewsAPIAnnotationStatus",
|
|
212
|
+
"CovalReviewsAPICompletionStatus",
|
|
213
|
+
"CovalReviewsAPICreateReviewAnnotationRequest",
|
|
214
|
+
"CovalReviewsAPICreateReviewAnnotationResponse",
|
|
215
|
+
"CovalReviewsAPICreateReviewProjectRequest",
|
|
216
|
+
"CovalReviewsAPICreateReviewProjectResponse",
|
|
217
|
+
"CovalReviewsAPIErrorResponse",
|
|
218
|
+
"CovalReviewsAPIErrorResponseError",
|
|
219
|
+
"CovalReviewsAPIGetReviewAnnotationResponse",
|
|
220
|
+
"CovalReviewsAPIGetReviewProjectResponse",
|
|
221
|
+
"CovalReviewsAPIListReviewAnnotationsResponse",
|
|
222
|
+
"CovalReviewsAPIListReviewProjectsResponse",
|
|
223
|
+
"CovalReviewsAPIProjectRule",
|
|
224
|
+
"CovalReviewsAPIProjectType",
|
|
225
|
+
"CovalReviewsAPIReviewAnnotationResource",
|
|
226
|
+
"CovalReviewsAPIReviewProjectResource",
|
|
227
|
+
"CovalReviewsAPIUpdateReviewAnnotationRequest",
|
|
228
|
+
"CovalReviewsAPIUpdateReviewAnnotationResponse",
|
|
229
|
+
"CovalReviewsAPIUpdateReviewProjectRequest",
|
|
230
|
+
"CovalReviewsAPIUpdateReviewProjectResponse",
|
|
231
|
+
"CovalRunTemplatesAPICreateRunTemplateRequest",
|
|
232
|
+
"CovalRunTemplatesAPICreateRunTemplateResponse",
|
|
233
|
+
"CovalRunTemplatesAPIErrorResponse",
|
|
234
|
+
"CovalRunTemplatesAPIErrorResponseError",
|
|
235
|
+
"CovalRunTemplatesAPIErrorResponseErrorDetailsInner",
|
|
236
|
+
"CovalRunTemplatesAPIGetRunTemplateResponse",
|
|
237
|
+
"CovalRunTemplatesAPIListRunTemplatesResponse",
|
|
238
|
+
"CovalRunTemplatesAPIRunTemplateResource",
|
|
239
|
+
"CovalRunTemplatesAPIUpdateRunTemplateRequest",
|
|
240
|
+
"CovalRunTemplatesAPIUpdateRunTemplateResponse",
|
|
241
|
+
"CovalRunsAPIError",
|
|
242
|
+
"CovalRunsAPIErrorDetail",
|
|
243
|
+
"CovalRunsAPILaunchMetadata",
|
|
244
|
+
"CovalRunsAPILaunchOptions",
|
|
245
|
+
"CovalRunsAPILaunchRunRequest",
|
|
246
|
+
"CovalRunsAPILaunchRunResponse",
|
|
247
|
+
"CovalRunsAPIMetricSummary",
|
|
248
|
+
"CovalRunsAPIProgress",
|
|
249
|
+
"CovalRunsAPIResults",
|
|
250
|
+
"CovalRunsAPIRun",
|
|
251
|
+
"CovalRunsAPIUpdateRunRequest",
|
|
252
|
+
"CovalScheduledRunsAPICreateScheduledRunRequest",
|
|
253
|
+
"CovalScheduledRunsAPICreateScheduledRunResponse",
|
|
254
|
+
"CovalScheduledRunsAPIErrorResponse",
|
|
255
|
+
"CovalScheduledRunsAPIErrorResponseError",
|
|
256
|
+
"CovalScheduledRunsAPIErrorResponseErrorDetailsInner",
|
|
257
|
+
"CovalScheduledRunsAPIGetScheduledRunResponse",
|
|
258
|
+
"CovalScheduledRunsAPIListScheduledRunsResponse",
|
|
259
|
+
"CovalScheduledRunsAPIScheduledRunResource",
|
|
260
|
+
"CovalScheduledRunsAPIUpdateScheduledRunRequest",
|
|
261
|
+
"CovalScheduledRunsAPIUpdateScheduledRunResponse",
|
|
262
|
+
"CovalSimulationsAPIErrorDetail",
|
|
263
|
+
"CovalSimulationsAPIErrorInfo",
|
|
264
|
+
"CovalSimulationsAPIErrorResponse",
|
|
265
|
+
"CovalSimulationsAPIGetAudioURLResponse",
|
|
266
|
+
"CovalSimulationsAPIGetMetricOutputResponse",
|
|
267
|
+
"CovalSimulationsAPIGetSimulationResponse",
|
|
268
|
+
"CovalSimulationsAPIListMetricsResponse",
|
|
269
|
+
"CovalSimulationsAPIListSimulationsResponse",
|
|
270
|
+
"CovalSimulationsAPIMetricOutputCollection",
|
|
271
|
+
"CovalSimulationsAPIResimulateSimulationResponse",
|
|
272
|
+
"CovalSimulationsAPISimpleMetricOutput",
|
|
273
|
+
"CovalSimulationsAPISimpleMetricOutputValue",
|
|
274
|
+
"CovalSimulationsAPISimulationResource",
|
|
275
|
+
"CovalSimulationsAPISimulationResourceFull",
|
|
276
|
+
"CovalSimulationsAPISubvalueByTimestamp",
|
|
277
|
+
"CovalSimulationsAPITranscriptMessage",
|
|
278
|
+
"CovalSimulationsAPITranscriptMessageContent",
|
|
279
|
+
"CovalSimulationsAPIUpdateSimulationRequest",
|
|
280
|
+
"CovalSimulationsAPIUpdateSimulationResponse",
|
|
281
|
+
"CovalTemplatesAPICreateTemplateRequest",
|
|
282
|
+
"CovalTemplatesAPICreateTemplateResponse",
|
|
283
|
+
"CovalTemplatesAPIDuplicateTemplateResponse",
|
|
284
|
+
"CovalTemplatesAPIErrorResponse",
|
|
285
|
+
"CovalTemplatesAPIErrorResponseError",
|
|
286
|
+
"CovalTemplatesAPIErrorResponseErrorDetailsInner",
|
|
287
|
+
"CovalTemplatesAPIGetTemplateResponse",
|
|
288
|
+
"CovalTemplatesAPIListTemplatesResponse",
|
|
289
|
+
"CovalTemplatesAPISimulationType",
|
|
290
|
+
"CovalTemplatesAPITemplateResource",
|
|
291
|
+
"CovalTemplatesAPIUpdateTemplateRequest",
|
|
292
|
+
"CovalTemplatesAPIUpdateTemplateResponse",
|
|
293
|
+
"CreateTestCase201Response",
|
|
294
|
+
"CreateTestSet201Response",
|
|
295
|
+
"GetConversationMetric200Response",
|
|
296
|
+
"GetRun200Response",
|
|
297
|
+
"IngestTraces200Response",
|
|
298
|
+
"ListRuns200Response",
|
|
299
|
+
"ListRuns400Response",
|
|
300
|
+
"ListTestCases200Response",
|
|
301
|
+
"ListTestSets200Response",
|
|
302
|
+
"SimulationsGetMetric200Response",
|
|
303
|
+
"TestCasesAPICreateTestCaseRequest",
|
|
304
|
+
"TestCasesAPIErrorResponse",
|
|
305
|
+
"TestCasesAPIErrorResponseError",
|
|
306
|
+
"TestCasesAPIErrorResponseErrorDetailsInner",
|
|
307
|
+
"TestCasesAPITestCaseResource",
|
|
308
|
+
"TestCasesAPIUpdateTestCaseRequest",
|
|
309
|
+
"TestSetsAPICreateTestSetRequest",
|
|
310
|
+
"TestSetsAPIErrorResponse",
|
|
311
|
+
"TestSetsAPIErrorResponseError",
|
|
312
|
+
"TestSetsAPIErrorResponseErrorDetailsInner",
|
|
313
|
+
"TestSetsAPITestSetResource",
|
|
314
|
+
"TestSetsAPIUpdateTestSetRequest",
|
|
315
|
+
"TracesAPIErrorResponse",
|
|
316
|
+
"TracesAPIErrorResponseError",
|
|
317
|
+
"TracesAPIErrorResponseErrorDetailsInner",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
# import apis into sdk package
|
|
321
|
+
from coval_sdk.api.api_keys_api import APIKeysApi as APIKeysApi
|
|
322
|
+
from coval_sdk.api.agents_api import AgentsApi as AgentsApi
|
|
323
|
+
from coval_sdk.api.audio_api import AudioApi as AudioApi
|
|
324
|
+
from coval_sdk.api.conversations_api import ConversationsApi as ConversationsApi
|
|
325
|
+
from coval_sdk.api.dashboards_api import DashboardsApi as DashboardsApi
|
|
326
|
+
from coval_sdk.api.metric_outputs_api import MetricOutputsApi as MetricOutputsApi
|
|
327
|
+
from coval_sdk.api.metrics_api import MetricsApi as MetricsApi
|
|
328
|
+
from coval_sdk.api.monitor_events_api import MonitorEventsApi as MonitorEventsApi
|
|
329
|
+
from coval_sdk.api.monitors_api import MonitorsApi as MonitorsApi
|
|
330
|
+
from coval_sdk.api.mutations_api import MutationsApi as MutationsApi
|
|
331
|
+
from coval_sdk.api.personas_api import PersonasApi as PersonasApi
|
|
332
|
+
from coval_sdk.api.review_annotations_api import ReviewAnnotationsApi as ReviewAnnotationsApi
|
|
333
|
+
from coval_sdk.api.review_projects_api import ReviewProjectsApi as ReviewProjectsApi
|
|
334
|
+
from coval_sdk.api.run_templates_api import RunTemplatesApi as RunTemplatesApi
|
|
335
|
+
from coval_sdk.api.runs_api import RunsApi as RunsApi
|
|
336
|
+
from coval_sdk.api.scheduled_runs_api import ScheduledRunsApi as ScheduledRunsApi
|
|
337
|
+
from coval_sdk.api.simulations_api import SimulationsApi as SimulationsApi
|
|
338
|
+
from coval_sdk.api.templates_api import TemplatesApi as TemplatesApi
|
|
339
|
+
from coval_sdk.api.test_cases_api import TestCasesApi as TestCasesApi
|
|
340
|
+
from coval_sdk.api.test_sets_api import TestSetsApi as TestSetsApi
|
|
341
|
+
from coval_sdk.api.traces_api import TracesApi as TracesApi
|
|
342
|
+
from coval_sdk.api.widgets_api import WidgetsApi as WidgetsApi
|
|
343
|
+
|
|
344
|
+
# import ApiClient
|
|
345
|
+
from coval_sdk.api_response import ApiResponse as ApiResponse
|
|
346
|
+
from coval_sdk.api_client import ApiClient as ApiClient
|
|
347
|
+
from coval_sdk.configuration import Configuration as Configuration
|
|
348
|
+
from coval_sdk.exceptions import OpenApiException as OpenApiException
|
|
349
|
+
from coval_sdk.exceptions import ApiTypeError as ApiTypeError
|
|
350
|
+
from coval_sdk.exceptions import ApiValueError as ApiValueError
|
|
351
|
+
from coval_sdk.exceptions import ApiKeyError as ApiKeyError
|
|
352
|
+
from coval_sdk.exceptions import ApiAttributeError as ApiAttributeError
|
|
353
|
+
from coval_sdk.exceptions import ApiException as ApiException
|
|
354
|
+
|
|
355
|
+
# import models into sdk package
|
|
356
|
+
from coval_sdk.models.coval_api_keys_api_api_key_resource import CovalAPIKeysAPIApiKeyResource as CovalAPIKeysAPIApiKeyResource
|
|
357
|
+
from coval_sdk.models.coval_api_keys_api_api_key_resource_unmasked import CovalAPIKeysAPIApiKeyResourceUnmasked as CovalAPIKeysAPIApiKeyResourceUnmasked
|
|
358
|
+
from coval_sdk.models.coval_api_keys_api_api_key_status import CovalAPIKeysAPIApiKeyStatus as CovalAPIKeysAPIApiKeyStatus
|
|
359
|
+
from coval_sdk.models.coval_api_keys_api_create_api_key_request import CovalAPIKeysAPICreateApiKeyRequest as CovalAPIKeysAPICreateApiKeyRequest
|
|
360
|
+
from coval_sdk.models.coval_api_keys_api_create_api_key_response import CovalAPIKeysAPICreateApiKeyResponse as CovalAPIKeysAPICreateApiKeyResponse
|
|
361
|
+
from coval_sdk.models.coval_api_keys_api_error_response import CovalAPIKeysAPIErrorResponse as CovalAPIKeysAPIErrorResponse
|
|
362
|
+
from coval_sdk.models.coval_api_keys_api_error_response_error import CovalAPIKeysAPIErrorResponseError as CovalAPIKeysAPIErrorResponseError
|
|
363
|
+
from coval_sdk.models.coval_api_keys_api_error_response_error_details_inner import CovalAPIKeysAPIErrorResponseErrorDetailsInner as CovalAPIKeysAPIErrorResponseErrorDetailsInner
|
|
364
|
+
from coval_sdk.models.coval_api_keys_api_key_type import CovalAPIKeysAPIKeyType as CovalAPIKeysAPIKeyType
|
|
365
|
+
from coval_sdk.models.coval_api_keys_api_list_api_keys_response import CovalAPIKeysAPIListApiKeysResponse as CovalAPIKeysAPIListApiKeysResponse
|
|
366
|
+
from coval_sdk.models.coval_api_keys_api_permission_scope import CovalAPIKeysAPIPermissionScope as CovalAPIKeysAPIPermissionScope
|
|
367
|
+
from coval_sdk.models.coval_api_keys_api_update_api_key_request import CovalAPIKeysAPIUpdateApiKeyRequest as CovalAPIKeysAPIUpdateApiKeyRequest
|
|
368
|
+
from coval_sdk.models.coval_api_keys_api_update_api_key_response import CovalAPIKeysAPIUpdateApiKeyResponse as CovalAPIKeysAPIUpdateApiKeyResponse
|
|
369
|
+
from coval_sdk.models.coval_agent_mutations_api_create_mutation_request import CovalAgentMutationsAPICreateMutationRequest as CovalAgentMutationsAPICreateMutationRequest
|
|
370
|
+
from coval_sdk.models.coval_agent_mutations_api_create_mutation_response import CovalAgentMutationsAPICreateMutationResponse as CovalAgentMutationsAPICreateMutationResponse
|
|
371
|
+
from coval_sdk.models.coval_agent_mutations_api_error_response import CovalAgentMutationsAPIErrorResponse as CovalAgentMutationsAPIErrorResponse
|
|
372
|
+
from coval_sdk.models.coval_agent_mutations_api_error_response_error import CovalAgentMutationsAPIErrorResponseError as CovalAgentMutationsAPIErrorResponseError
|
|
373
|
+
from coval_sdk.models.coval_agent_mutations_api_error_response_error_details_inner import CovalAgentMutationsAPIErrorResponseErrorDetailsInner as CovalAgentMutationsAPIErrorResponseErrorDetailsInner
|
|
374
|
+
from coval_sdk.models.coval_agent_mutations_api_get_mutation_response import CovalAgentMutationsAPIGetMutationResponse as CovalAgentMutationsAPIGetMutationResponse
|
|
375
|
+
from coval_sdk.models.coval_agent_mutations_api_list_mutations_response import CovalAgentMutationsAPIListMutationsResponse as CovalAgentMutationsAPIListMutationsResponse
|
|
376
|
+
from coval_sdk.models.coval_agent_mutations_api_mutation_resource import CovalAgentMutationsAPIMutationResource as CovalAgentMutationsAPIMutationResource
|
|
377
|
+
from coval_sdk.models.coval_agent_mutations_api_update_mutation_request import CovalAgentMutationsAPIUpdateMutationRequest as CovalAgentMutationsAPIUpdateMutationRequest
|
|
378
|
+
from coval_sdk.models.coval_agent_mutations_api_update_mutation_response import CovalAgentMutationsAPIUpdateMutationResponse as CovalAgentMutationsAPIUpdateMutationResponse
|
|
379
|
+
from coval_sdk.models.coval_agents_api_agent_resource import CovalAgentsAPIAgentResource as CovalAgentsAPIAgentResource
|
|
380
|
+
from coval_sdk.models.coval_agents_api_create_agent_request import CovalAgentsAPICreateAgentRequest as CovalAgentsAPICreateAgentRequest
|
|
381
|
+
from coval_sdk.models.coval_agents_api_create_agent_response import CovalAgentsAPICreateAgentResponse as CovalAgentsAPICreateAgentResponse
|
|
382
|
+
from coval_sdk.models.coval_agents_api_error_response import CovalAgentsAPIErrorResponse as CovalAgentsAPIErrorResponse
|
|
383
|
+
from coval_sdk.models.coval_agents_api_error_response_error import CovalAgentsAPIErrorResponseError as CovalAgentsAPIErrorResponseError
|
|
384
|
+
from coval_sdk.models.coval_agents_api_error_response_error_details_inner import CovalAgentsAPIErrorResponseErrorDetailsInner as CovalAgentsAPIErrorResponseErrorDetailsInner
|
|
385
|
+
from coval_sdk.models.coval_agents_api_get_agent_response import CovalAgentsAPIGetAgentResponse as CovalAgentsAPIGetAgentResponse
|
|
386
|
+
from coval_sdk.models.coval_agents_api_list_agents_response import CovalAgentsAPIListAgentsResponse as CovalAgentsAPIListAgentsResponse
|
|
387
|
+
from coval_sdk.models.coval_agents_api_simulator_type import CovalAgentsAPISimulatorType as CovalAgentsAPISimulatorType
|
|
388
|
+
from coval_sdk.models.coval_agents_api_update_agent_request import CovalAgentsAPIUpdateAgentRequest as CovalAgentsAPIUpdateAgentRequest
|
|
389
|
+
from coval_sdk.models.coval_agents_api_update_agent_response import CovalAgentsAPIUpdateAgentResponse as CovalAgentsAPIUpdateAgentResponse
|
|
390
|
+
from coval_sdk.models.coval_conversations_api_conversation_progress import CovalConversationsAPIConversationProgress as CovalConversationsAPIConversationProgress
|
|
391
|
+
from coval_sdk.models.coval_conversations_api_conversation_resource import CovalConversationsAPIConversationResource as CovalConversationsAPIConversationResource
|
|
392
|
+
from coval_sdk.models.coval_conversations_api_conversation_status import CovalConversationsAPIConversationStatus as CovalConversationsAPIConversationStatus
|
|
393
|
+
from coval_sdk.models.coval_conversations_api_create_audio_upload_request import CovalConversationsAPICreateAudioUploadRequest as CovalConversationsAPICreateAudioUploadRequest
|
|
394
|
+
from coval_sdk.models.coval_conversations_api_create_audio_upload_response import CovalConversationsAPICreateAudioUploadResponse as CovalConversationsAPICreateAudioUploadResponse
|
|
395
|
+
from coval_sdk.models.coval_conversations_api_delete_conversation_response import CovalConversationsAPIDeleteConversationResponse as CovalConversationsAPIDeleteConversationResponse
|
|
396
|
+
from coval_sdk.models.coval_conversations_api_error_detail import CovalConversationsAPIErrorDetail as CovalConversationsAPIErrorDetail
|
|
397
|
+
from coval_sdk.models.coval_conversations_api_error_response import CovalConversationsAPIErrorResponse as CovalConversationsAPIErrorResponse
|
|
398
|
+
from coval_sdk.models.coval_conversations_api_error_response_error import CovalConversationsAPIErrorResponseError as CovalConversationsAPIErrorResponseError
|
|
399
|
+
from coval_sdk.models.coval_conversations_api_get_conversation_audio_response import CovalConversationsAPIGetConversationAudioResponse as CovalConversationsAPIGetConversationAudioResponse
|
|
400
|
+
from coval_sdk.models.coval_conversations_api_get_conversation_metric_response import CovalConversationsAPIGetConversationMetricResponse as CovalConversationsAPIGetConversationMetricResponse
|
|
401
|
+
from coval_sdk.models.coval_conversations_api_get_conversation_response import CovalConversationsAPIGetConversationResponse as CovalConversationsAPIGetConversationResponse
|
|
402
|
+
from coval_sdk.models.coval_conversations_api_list_conversation_metrics_response import CovalConversationsAPIListConversationMetricsResponse as CovalConversationsAPIListConversationMetricsResponse
|
|
403
|
+
from coval_sdk.models.coval_conversations_api_list_conversations_response import CovalConversationsAPIListConversationsResponse as CovalConversationsAPIListConversationsResponse
|
|
404
|
+
from coval_sdk.models.coval_conversations_api_metric_output_collection import CovalConversationsAPIMetricOutputCollection as CovalConversationsAPIMetricOutputCollection
|
|
405
|
+
from coval_sdk.models.coval_conversations_api_patch_conversation_request import CovalConversationsAPIPatchConversationRequest as CovalConversationsAPIPatchConversationRequest
|
|
406
|
+
from coval_sdk.models.coval_conversations_api_simple_metric_output import CovalConversationsAPISimpleMetricOutput as CovalConversationsAPISimpleMetricOutput
|
|
407
|
+
from coval_sdk.models.coval_conversations_api_simple_metric_output_value import CovalConversationsAPISimpleMetricOutputValue as CovalConversationsAPISimpleMetricOutputValue
|
|
408
|
+
from coval_sdk.models.coval_conversations_api_submit_conversation_request import CovalConversationsAPISubmitConversationRequest as CovalConversationsAPISubmitConversationRequest
|
|
409
|
+
from coval_sdk.models.coval_conversations_api_submit_conversation_response import CovalConversationsAPISubmitConversationResponse as CovalConversationsAPISubmitConversationResponse
|
|
410
|
+
from coval_sdk.models.coval_conversations_api_tool_call import CovalConversationsAPIToolCall as CovalConversationsAPIToolCall
|
|
411
|
+
from coval_sdk.models.coval_conversations_api_tool_call_function import CovalConversationsAPIToolCallFunction as CovalConversationsAPIToolCallFunction
|
|
412
|
+
from coval_sdk.models.coval_conversations_api_transcript_message import CovalConversationsAPITranscriptMessage as CovalConversationsAPITranscriptMessage
|
|
413
|
+
from coval_sdk.models.coval_dashboards_api_aggregation_type import CovalDashboardsAPIAggregationType as CovalDashboardsAPIAggregationType
|
|
414
|
+
from coval_sdk.models.coval_dashboards_api_chart_widget_config import CovalDashboardsAPIChartWidgetConfig as CovalDashboardsAPIChartWidgetConfig
|
|
415
|
+
from coval_sdk.models.coval_dashboards_api_create_dashboard_request import CovalDashboardsAPICreateDashboardRequest as CovalDashboardsAPICreateDashboardRequest
|
|
416
|
+
from coval_sdk.models.coval_dashboards_api_create_dashboard_response import CovalDashboardsAPICreateDashboardResponse as CovalDashboardsAPICreateDashboardResponse
|
|
417
|
+
from coval_sdk.models.coval_dashboards_api_create_widget_request import CovalDashboardsAPICreateWidgetRequest as CovalDashboardsAPICreateWidgetRequest
|
|
418
|
+
from coval_sdk.models.coval_dashboards_api_create_widget_response import CovalDashboardsAPICreateWidgetResponse as CovalDashboardsAPICreateWidgetResponse
|
|
419
|
+
from coval_sdk.models.coval_dashboards_api_dashboard_resource import CovalDashboardsAPIDashboardResource as CovalDashboardsAPIDashboardResource
|
|
420
|
+
from coval_sdk.models.coval_dashboards_api_data_source_type import CovalDashboardsAPIDataSourceType as CovalDashboardsAPIDataSourceType
|
|
421
|
+
from coval_sdk.models.coval_dashboards_api_error_response import CovalDashboardsAPIErrorResponse as CovalDashboardsAPIErrorResponse
|
|
422
|
+
from coval_sdk.models.coval_dashboards_api_error_response_error import CovalDashboardsAPIErrorResponseError as CovalDashboardsAPIErrorResponseError
|
|
423
|
+
from coval_sdk.models.coval_dashboards_api_error_response_error_details_inner import CovalDashboardsAPIErrorResponseErrorDetailsInner as CovalDashboardsAPIErrorResponseErrorDetailsInner
|
|
424
|
+
from coval_sdk.models.coval_dashboards_api_filter_config import CovalDashboardsAPIFilterConfig as CovalDashboardsAPIFilterConfig
|
|
425
|
+
from coval_sdk.models.coval_dashboards_api_get_dashboard_response import CovalDashboardsAPIGetDashboardResponse as CovalDashboardsAPIGetDashboardResponse
|
|
426
|
+
from coval_sdk.models.coval_dashboards_api_get_widget_response import CovalDashboardsAPIGetWidgetResponse as CovalDashboardsAPIGetWidgetResponse
|
|
427
|
+
from coval_sdk.models.coval_dashboards_api_group_by_type import CovalDashboardsAPIGroupByType as CovalDashboardsAPIGroupByType
|
|
428
|
+
from coval_sdk.models.coval_dashboards_api_list_dashboards_response import CovalDashboardsAPIListDashboardsResponse as CovalDashboardsAPIListDashboardsResponse
|
|
429
|
+
from coval_sdk.models.coval_dashboards_api_list_widgets_response import CovalDashboardsAPIListWidgetsResponse as CovalDashboardsAPIListWidgetsResponse
|
|
430
|
+
from coval_sdk.models.coval_dashboards_api_metric_filter import CovalDashboardsAPIMetricFilter as CovalDashboardsAPIMetricFilter
|
|
431
|
+
from coval_sdk.models.coval_dashboards_api_metric_filter_operator import CovalDashboardsAPIMetricFilterOperator as CovalDashboardsAPIMetricFilterOperator
|
|
432
|
+
from coval_sdk.models.coval_dashboards_api_metric_filter_value import CovalDashboardsAPIMetricFilterValue as CovalDashboardsAPIMetricFilterValue
|
|
433
|
+
from coval_sdk.models.coval_dashboards_api_metric_output_type import CovalDashboardsAPIMetricOutputType as CovalDashboardsAPIMetricOutputType
|
|
434
|
+
from coval_sdk.models.coval_dashboards_api_table_widget_config import CovalDashboardsAPITableWidgetConfig as CovalDashboardsAPITableWidgetConfig
|
|
435
|
+
from coval_sdk.models.coval_dashboards_api_text_widget_config import CovalDashboardsAPITextWidgetConfig as CovalDashboardsAPITextWidgetConfig
|
|
436
|
+
from coval_sdk.models.coval_dashboards_api_update_dashboard_request import CovalDashboardsAPIUpdateDashboardRequest as CovalDashboardsAPIUpdateDashboardRequest
|
|
437
|
+
from coval_sdk.models.coval_dashboards_api_update_dashboard_response import CovalDashboardsAPIUpdateDashboardResponse as CovalDashboardsAPIUpdateDashboardResponse
|
|
438
|
+
from coval_sdk.models.coval_dashboards_api_update_widget_request import CovalDashboardsAPIUpdateWidgetRequest as CovalDashboardsAPIUpdateWidgetRequest
|
|
439
|
+
from coval_sdk.models.coval_dashboards_api_update_widget_response import CovalDashboardsAPIUpdateWidgetResponse as CovalDashboardsAPIUpdateWidgetResponse
|
|
440
|
+
from coval_sdk.models.coval_dashboards_api_visualization_type import CovalDashboardsAPIVisualizationType as CovalDashboardsAPIVisualizationType
|
|
441
|
+
from coval_sdk.models.coval_dashboards_api_widget_config import CovalDashboardsAPIWidgetConfig as CovalDashboardsAPIWidgetConfig
|
|
442
|
+
from coval_sdk.models.coval_dashboards_api_widget_resource import CovalDashboardsAPIWidgetResource as CovalDashboardsAPIWidgetResource
|
|
443
|
+
from coval_sdk.models.coval_dashboards_api_widget_type import CovalDashboardsAPIWidgetType as CovalDashboardsAPIWidgetType
|
|
444
|
+
from coval_sdk.models.coval_metrics_api_baseline import CovalMetricsAPIBaseline as CovalMetricsAPIBaseline
|
|
445
|
+
from coval_sdk.models.coval_metrics_api_baseline_config import CovalMetricsAPIBaselineConfig as CovalMetricsAPIBaselineConfig
|
|
446
|
+
from coval_sdk.models.coval_metrics_api_baseline_detection_method import CovalMetricsAPIBaselineDetectionMethod as CovalMetricsAPIBaselineDetectionMethod
|
|
447
|
+
from coval_sdk.models.coval_metrics_api_baseline_direction import CovalMetricsAPIBaselineDirection as CovalMetricsAPIBaselineDirection
|
|
448
|
+
from coval_sdk.models.coval_metrics_api_baseline_status import CovalMetricsAPIBaselineStatus as CovalMetricsAPIBaselineStatus
|
|
449
|
+
from coval_sdk.models.coval_metrics_api_comparison_operator import CovalMetricsAPIComparisonOperator as CovalMetricsAPIComparisonOperator
|
|
450
|
+
from coval_sdk.models.coval_metrics_api_create_metric_baseline_request import CovalMetricsAPICreateMetricBaselineRequest as CovalMetricsAPICreateMetricBaselineRequest
|
|
451
|
+
from coval_sdk.models.coval_metrics_api_create_metric_request import CovalMetricsAPICreateMetricRequest as CovalMetricsAPICreateMetricRequest
|
|
452
|
+
from coval_sdk.models.coval_metrics_api_create_threshold_request import CovalMetricsAPICreateThresholdRequest as CovalMetricsAPICreateThresholdRequest
|
|
453
|
+
from coval_sdk.models.coval_metrics_api_create_threshold_response import CovalMetricsAPICreateThresholdResponse as CovalMetricsAPICreateThresholdResponse
|
|
454
|
+
from coval_sdk.models.coval_metrics_api_error_response import CovalMetricsAPIErrorResponse as CovalMetricsAPIErrorResponse
|
|
455
|
+
from coval_sdk.models.coval_metrics_api_error_response_error import CovalMetricsAPIErrorResponseError as CovalMetricsAPIErrorResponseError
|
|
456
|
+
from coval_sdk.models.coval_metrics_api_error_response_error_details_inner import CovalMetricsAPIErrorResponseErrorDetailsInner as CovalMetricsAPIErrorResponseErrorDetailsInner
|
|
457
|
+
from coval_sdk.models.coval_metrics_api_get_metric_response import CovalMetricsAPIGetMetricResponse as CovalMetricsAPIGetMetricResponse
|
|
458
|
+
from coval_sdk.models.coval_metrics_api_get_threshold_response import CovalMetricsAPIGetThresholdResponse as CovalMetricsAPIGetThresholdResponse
|
|
459
|
+
from coval_sdk.models.coval_metrics_api_list_metric_baselines_response import CovalMetricsAPIListMetricBaselinesResponse as CovalMetricsAPIListMetricBaselinesResponse
|
|
460
|
+
from coval_sdk.models.coval_metrics_api_list_metric_models_response import CovalMetricsAPIListMetricModelsResponse as CovalMetricsAPIListMetricModelsResponse
|
|
461
|
+
from coval_sdk.models.coval_metrics_api_list_metrics_response import CovalMetricsAPIListMetricsResponse as CovalMetricsAPIListMetricsResponse
|
|
462
|
+
from coval_sdk.models.coval_metrics_api_list_thresholds_response import CovalMetricsAPIListThresholdsResponse as CovalMetricsAPIListThresholdsResponse
|
|
463
|
+
from coval_sdk.models.coval_metrics_api_metadata_field_type import CovalMetricsAPIMetadataFieldType as CovalMetricsAPIMetadataFieldType
|
|
464
|
+
from coval_sdk.models.coval_metrics_api_metric_model_resource import CovalMetricsAPIMetricModelResource as CovalMetricsAPIMetricModelResource
|
|
465
|
+
from coval_sdk.models.coval_metrics_api_metric_resource import CovalMetricsAPIMetricResource as CovalMetricsAPIMetricResource
|
|
466
|
+
from coval_sdk.models.coval_metrics_api_metric_runtime_config import CovalMetricsAPIMetricRuntimeConfig as CovalMetricsAPIMetricRuntimeConfig
|
|
467
|
+
from coval_sdk.models.coval_metrics_api_metric_threshold_resource import CovalMetricsAPIMetricThresholdResource as CovalMetricsAPIMetricThresholdResource
|
|
468
|
+
from coval_sdk.models.coval_metrics_api_metric_type import CovalMetricsAPIMetricType as CovalMetricsAPIMetricType
|
|
469
|
+
from coval_sdk.models.coval_metrics_api_patch_threshold_request import CovalMetricsAPIPatchThresholdRequest as CovalMetricsAPIPatchThresholdRequest
|
|
470
|
+
from coval_sdk.models.coval_metrics_api_patch_threshold_response import CovalMetricsAPIPatchThresholdResponse as CovalMetricsAPIPatchThresholdResponse
|
|
471
|
+
from coval_sdk.models.coval_metrics_api_target_condition import CovalMetricsAPITargetCondition as CovalMetricsAPITargetCondition
|
|
472
|
+
from coval_sdk.models.coval_metrics_api_threshold_source import CovalMetricsAPIThresholdSource as CovalMetricsAPIThresholdSource
|
|
473
|
+
from coval_sdk.models.coval_metrics_api_update_metric_baseline_request import CovalMetricsAPIUpdateMetricBaselineRequest as CovalMetricsAPIUpdateMetricBaselineRequest
|
|
474
|
+
from coval_sdk.models.coval_metrics_api_update_metric_request import CovalMetricsAPIUpdateMetricRequest as CovalMetricsAPIUpdateMetricRequest
|
|
475
|
+
from coval_sdk.models.coval_monitors_api_channel_input import CovalMonitorsAPIChannelInput as CovalMonitorsAPIChannelInput
|
|
476
|
+
from coval_sdk.models.coval_monitors_api_channel_type import CovalMonitorsAPIChannelType as CovalMonitorsAPIChannelType
|
|
477
|
+
from coval_sdk.models.coval_monitors_api_condition_aggregation import CovalMonitorsAPIConditionAggregation as CovalMonitorsAPIConditionAggregation
|
|
478
|
+
from coval_sdk.models.coval_monitors_api_condition_input import CovalMonitorsAPIConditionInput as CovalMonitorsAPIConditionInput
|
|
479
|
+
from coval_sdk.models.coval_monitors_api_condition_operator import CovalMonitorsAPIConditionOperator as CovalMonitorsAPIConditionOperator
|
|
480
|
+
from coval_sdk.models.coval_monitors_api_create_monitor_request import CovalMonitorsAPICreateMonitorRequest as CovalMonitorsAPICreateMonitorRequest
|
|
481
|
+
from coval_sdk.models.coval_monitors_api_error_response import CovalMonitorsAPIErrorResponse as CovalMonitorsAPIErrorResponse
|
|
482
|
+
from coval_sdk.models.coval_monitors_api_error_response_error import CovalMonitorsAPIErrorResponseError as CovalMonitorsAPIErrorResponseError
|
|
483
|
+
from coval_sdk.models.coval_monitors_api_list_monitor_events_response import CovalMonitorsAPIListMonitorEventsResponse as CovalMonitorsAPIListMonitorEventsResponse
|
|
484
|
+
from coval_sdk.models.coval_monitors_api_list_monitors_response import CovalMonitorsAPIListMonitorsResponse as CovalMonitorsAPIListMonitorsResponse
|
|
485
|
+
from coval_sdk.models.coval_monitors_api_monitor_channel import CovalMonitorsAPIMonitorChannel as CovalMonitorsAPIMonitorChannel
|
|
486
|
+
from coval_sdk.models.coval_monitors_api_monitor_condition import CovalMonitorsAPIMonitorCondition as CovalMonitorsAPIMonitorCondition
|
|
487
|
+
from coval_sdk.models.coval_monitors_api_monitor_evaluation_type import CovalMonitorsAPIMonitorEvaluationType as CovalMonitorsAPIMonitorEvaluationType
|
|
488
|
+
from coval_sdk.models.coval_monitors_api_monitor_event_outcome import CovalMonitorsAPIMonitorEventOutcome as CovalMonitorsAPIMonitorEventOutcome
|
|
489
|
+
from coval_sdk.models.coval_monitors_api_monitor_event_resource import CovalMonitorsAPIMonitorEventResource as CovalMonitorsAPIMonitorEventResource
|
|
490
|
+
from coval_sdk.models.coval_monitors_api_monitor_event_resource_condition_results_inner import CovalMonitorsAPIMonitorEventResourceConditionResultsInner as CovalMonitorsAPIMonitorEventResourceConditionResultsInner
|
|
491
|
+
from coval_sdk.models.coval_monitors_api_monitor_event_resource_condition_results_inner_computed_value import CovalMonitorsAPIMonitorEventResourceConditionResultsInnerComputedValue as CovalMonitorsAPIMonitorEventResourceConditionResultsInnerComputedValue
|
|
492
|
+
from coval_sdk.models.coval_monitors_api_monitor_event_resource_dispatched_channels_inner import CovalMonitorsAPIMonitorEventResourceDispatchedChannelsInner as CovalMonitorsAPIMonitorEventResourceDispatchedChannelsInner
|
|
493
|
+
from coval_sdk.models.coval_monitors_api_monitor_match_mode import CovalMonitorsAPIMonitorMatchMode as CovalMonitorsAPIMonitorMatchMode
|
|
494
|
+
from coval_sdk.models.coval_monitors_api_monitor_resource import CovalMonitorsAPIMonitorResource as CovalMonitorsAPIMonitorResource
|
|
495
|
+
from coval_sdk.models.coval_monitors_api_monitor_scope import CovalMonitorsAPIMonitorScope as CovalMonitorsAPIMonitorScope
|
|
496
|
+
from coval_sdk.models.coval_monitors_api_test_evaluate_request import CovalMonitorsAPITestEvaluateRequest as CovalMonitorsAPITestEvaluateRequest
|
|
497
|
+
from coval_sdk.models.coval_monitors_api_test_evaluate_response import CovalMonitorsAPITestEvaluateResponse as CovalMonitorsAPITestEvaluateResponse
|
|
498
|
+
from coval_sdk.models.coval_monitors_api_update_monitor_request import CovalMonitorsAPIUpdateMonitorRequest as CovalMonitorsAPIUpdateMonitorRequest
|
|
499
|
+
from coval_sdk.models.coval_personas_api_create_persona_request import CovalPersonasAPICreatePersonaRequest as CovalPersonasAPICreatePersonaRequest
|
|
500
|
+
from coval_sdk.models.coval_personas_api_create_persona_response import CovalPersonasAPICreatePersonaResponse as CovalPersonasAPICreatePersonaResponse
|
|
501
|
+
from coval_sdk.models.coval_personas_api_error import CovalPersonasAPIError as CovalPersonasAPIError
|
|
502
|
+
from coval_sdk.models.coval_personas_api_error_error import CovalPersonasAPIErrorError as CovalPersonasAPIErrorError
|
|
503
|
+
from coval_sdk.models.coval_personas_api_get_persona_response import CovalPersonasAPIGetPersonaResponse as CovalPersonasAPIGetPersonaResponse
|
|
504
|
+
from coval_sdk.models.coval_personas_api_list_personas_response import CovalPersonasAPIListPersonasResponse as CovalPersonasAPIListPersonasResponse
|
|
505
|
+
from coval_sdk.models.coval_personas_api_list_phone_numbers_response import CovalPersonasAPIListPhoneNumbersResponse as CovalPersonasAPIListPhoneNumbersResponse
|
|
506
|
+
from coval_sdk.models.coval_personas_api_list_voices_response import CovalPersonasAPIListVoicesResponse as CovalPersonasAPIListVoicesResponse
|
|
507
|
+
from coval_sdk.models.coval_personas_api_persona_resource import CovalPersonasAPIPersonaResource as CovalPersonasAPIPersonaResource
|
|
508
|
+
from coval_sdk.models.coval_personas_api_phone_number_mapping import CovalPersonasAPIPhoneNumberMapping as CovalPersonasAPIPhoneNumberMapping
|
|
509
|
+
from coval_sdk.models.coval_personas_api_phone_numbers_data import CovalPersonasAPIPhoneNumbersData as CovalPersonasAPIPhoneNumbersData
|
|
510
|
+
from coval_sdk.models.coval_personas_api_update_persona_request import CovalPersonasAPIUpdatePersonaRequest as CovalPersonasAPIUpdatePersonaRequest
|
|
511
|
+
from coval_sdk.models.coval_personas_api_update_persona_response import CovalPersonasAPIUpdatePersonaResponse as CovalPersonasAPIUpdatePersonaResponse
|
|
512
|
+
from coval_sdk.models.coval_personas_api_voice_resource import CovalPersonasAPIVoiceResource as CovalPersonasAPIVoiceResource
|
|
513
|
+
from coval_sdk.models.coval_reviews_api_annotation_priority import CovalReviewsAPIAnnotationPriority as CovalReviewsAPIAnnotationPriority
|
|
514
|
+
from coval_sdk.models.coval_reviews_api_annotation_status import CovalReviewsAPIAnnotationStatus as CovalReviewsAPIAnnotationStatus
|
|
515
|
+
from coval_sdk.models.coval_reviews_api_completion_status import CovalReviewsAPICompletionStatus as CovalReviewsAPICompletionStatus
|
|
516
|
+
from coval_sdk.models.coval_reviews_api_create_review_annotation_request import CovalReviewsAPICreateReviewAnnotationRequest as CovalReviewsAPICreateReviewAnnotationRequest
|
|
517
|
+
from coval_sdk.models.coval_reviews_api_create_review_annotation_response import CovalReviewsAPICreateReviewAnnotationResponse as CovalReviewsAPICreateReviewAnnotationResponse
|
|
518
|
+
from coval_sdk.models.coval_reviews_api_create_review_project_request import CovalReviewsAPICreateReviewProjectRequest as CovalReviewsAPICreateReviewProjectRequest
|
|
519
|
+
from coval_sdk.models.coval_reviews_api_create_review_project_response import CovalReviewsAPICreateReviewProjectResponse as CovalReviewsAPICreateReviewProjectResponse
|
|
520
|
+
from coval_sdk.models.coval_reviews_api_error_response import CovalReviewsAPIErrorResponse as CovalReviewsAPIErrorResponse
|
|
521
|
+
from coval_sdk.models.coval_reviews_api_error_response_error import CovalReviewsAPIErrorResponseError as CovalReviewsAPIErrorResponseError
|
|
522
|
+
from coval_sdk.models.coval_reviews_api_get_review_annotation_response import CovalReviewsAPIGetReviewAnnotationResponse as CovalReviewsAPIGetReviewAnnotationResponse
|
|
523
|
+
from coval_sdk.models.coval_reviews_api_get_review_project_response import CovalReviewsAPIGetReviewProjectResponse as CovalReviewsAPIGetReviewProjectResponse
|
|
524
|
+
from coval_sdk.models.coval_reviews_api_list_review_annotations_response import CovalReviewsAPIListReviewAnnotationsResponse as CovalReviewsAPIListReviewAnnotationsResponse
|
|
525
|
+
from coval_sdk.models.coval_reviews_api_list_review_projects_response import CovalReviewsAPIListReviewProjectsResponse as CovalReviewsAPIListReviewProjectsResponse
|
|
526
|
+
from coval_sdk.models.coval_reviews_api_project_rule import CovalReviewsAPIProjectRule as CovalReviewsAPIProjectRule
|
|
527
|
+
from coval_sdk.models.coval_reviews_api_project_type import CovalReviewsAPIProjectType as CovalReviewsAPIProjectType
|
|
528
|
+
from coval_sdk.models.coval_reviews_api_review_annotation_resource import CovalReviewsAPIReviewAnnotationResource as CovalReviewsAPIReviewAnnotationResource
|
|
529
|
+
from coval_sdk.models.coval_reviews_api_review_project_resource import CovalReviewsAPIReviewProjectResource as CovalReviewsAPIReviewProjectResource
|
|
530
|
+
from coval_sdk.models.coval_reviews_api_update_review_annotation_request import CovalReviewsAPIUpdateReviewAnnotationRequest as CovalReviewsAPIUpdateReviewAnnotationRequest
|
|
531
|
+
from coval_sdk.models.coval_reviews_api_update_review_annotation_response import CovalReviewsAPIUpdateReviewAnnotationResponse as CovalReviewsAPIUpdateReviewAnnotationResponse
|
|
532
|
+
from coval_sdk.models.coval_reviews_api_update_review_project_request import CovalReviewsAPIUpdateReviewProjectRequest as CovalReviewsAPIUpdateReviewProjectRequest
|
|
533
|
+
from coval_sdk.models.coval_reviews_api_update_review_project_response import CovalReviewsAPIUpdateReviewProjectResponse as CovalReviewsAPIUpdateReviewProjectResponse
|
|
534
|
+
from coval_sdk.models.coval_run_templates_api_create_run_template_request import CovalRunTemplatesAPICreateRunTemplateRequest as CovalRunTemplatesAPICreateRunTemplateRequest
|
|
535
|
+
from coval_sdk.models.coval_run_templates_api_create_run_template_response import CovalRunTemplatesAPICreateRunTemplateResponse as CovalRunTemplatesAPICreateRunTemplateResponse
|
|
536
|
+
from coval_sdk.models.coval_run_templates_api_error_response import CovalRunTemplatesAPIErrorResponse as CovalRunTemplatesAPIErrorResponse
|
|
537
|
+
from coval_sdk.models.coval_run_templates_api_error_response_error import CovalRunTemplatesAPIErrorResponseError as CovalRunTemplatesAPIErrorResponseError
|
|
538
|
+
from coval_sdk.models.coval_run_templates_api_error_response_error_details_inner import CovalRunTemplatesAPIErrorResponseErrorDetailsInner as CovalRunTemplatesAPIErrorResponseErrorDetailsInner
|
|
539
|
+
from coval_sdk.models.coval_run_templates_api_get_run_template_response import CovalRunTemplatesAPIGetRunTemplateResponse as CovalRunTemplatesAPIGetRunTemplateResponse
|
|
540
|
+
from coval_sdk.models.coval_run_templates_api_list_run_templates_response import CovalRunTemplatesAPIListRunTemplatesResponse as CovalRunTemplatesAPIListRunTemplatesResponse
|
|
541
|
+
from coval_sdk.models.coval_run_templates_api_run_template_resource import CovalRunTemplatesAPIRunTemplateResource as CovalRunTemplatesAPIRunTemplateResource
|
|
542
|
+
from coval_sdk.models.coval_run_templates_api_update_run_template_request import CovalRunTemplatesAPIUpdateRunTemplateRequest as CovalRunTemplatesAPIUpdateRunTemplateRequest
|
|
543
|
+
from coval_sdk.models.coval_run_templates_api_update_run_template_response import CovalRunTemplatesAPIUpdateRunTemplateResponse as CovalRunTemplatesAPIUpdateRunTemplateResponse
|
|
544
|
+
from coval_sdk.models.coval_runs_api_error import CovalRunsAPIError as CovalRunsAPIError
|
|
545
|
+
from coval_sdk.models.coval_runs_api_error_detail import CovalRunsAPIErrorDetail as CovalRunsAPIErrorDetail
|
|
546
|
+
from coval_sdk.models.coval_runs_api_launch_metadata import CovalRunsAPILaunchMetadata as CovalRunsAPILaunchMetadata
|
|
547
|
+
from coval_sdk.models.coval_runs_api_launch_options import CovalRunsAPILaunchOptions as CovalRunsAPILaunchOptions
|
|
548
|
+
from coval_sdk.models.coval_runs_api_launch_run_request import CovalRunsAPILaunchRunRequest as CovalRunsAPILaunchRunRequest
|
|
549
|
+
from coval_sdk.models.coval_runs_api_launch_run_response import CovalRunsAPILaunchRunResponse as CovalRunsAPILaunchRunResponse
|
|
550
|
+
from coval_sdk.models.coval_runs_api_metric_summary import CovalRunsAPIMetricSummary as CovalRunsAPIMetricSummary
|
|
551
|
+
from coval_sdk.models.coval_runs_api_progress import CovalRunsAPIProgress as CovalRunsAPIProgress
|
|
552
|
+
from coval_sdk.models.coval_runs_api_results import CovalRunsAPIResults as CovalRunsAPIResults
|
|
553
|
+
from coval_sdk.models.coval_runs_api_run import CovalRunsAPIRun as CovalRunsAPIRun
|
|
554
|
+
from coval_sdk.models.coval_runs_api_update_run_request import CovalRunsAPIUpdateRunRequest as CovalRunsAPIUpdateRunRequest
|
|
555
|
+
from coval_sdk.models.coval_scheduled_runs_api_create_scheduled_run_request import CovalScheduledRunsAPICreateScheduledRunRequest as CovalScheduledRunsAPICreateScheduledRunRequest
|
|
556
|
+
from coval_sdk.models.coval_scheduled_runs_api_create_scheduled_run_response import CovalScheduledRunsAPICreateScheduledRunResponse as CovalScheduledRunsAPICreateScheduledRunResponse
|
|
557
|
+
from coval_sdk.models.coval_scheduled_runs_api_error_response import CovalScheduledRunsAPIErrorResponse as CovalScheduledRunsAPIErrorResponse
|
|
558
|
+
from coval_sdk.models.coval_scheduled_runs_api_error_response_error import CovalScheduledRunsAPIErrorResponseError as CovalScheduledRunsAPIErrorResponseError
|
|
559
|
+
from coval_sdk.models.coval_scheduled_runs_api_error_response_error_details_inner import CovalScheduledRunsAPIErrorResponseErrorDetailsInner as CovalScheduledRunsAPIErrorResponseErrorDetailsInner
|
|
560
|
+
from coval_sdk.models.coval_scheduled_runs_api_get_scheduled_run_response import CovalScheduledRunsAPIGetScheduledRunResponse as CovalScheduledRunsAPIGetScheduledRunResponse
|
|
561
|
+
from coval_sdk.models.coval_scheduled_runs_api_list_scheduled_runs_response import CovalScheduledRunsAPIListScheduledRunsResponse as CovalScheduledRunsAPIListScheduledRunsResponse
|
|
562
|
+
from coval_sdk.models.coval_scheduled_runs_api_scheduled_run_resource import CovalScheduledRunsAPIScheduledRunResource as CovalScheduledRunsAPIScheduledRunResource
|
|
563
|
+
from coval_sdk.models.coval_scheduled_runs_api_update_scheduled_run_request import CovalScheduledRunsAPIUpdateScheduledRunRequest as CovalScheduledRunsAPIUpdateScheduledRunRequest
|
|
564
|
+
from coval_sdk.models.coval_scheduled_runs_api_update_scheduled_run_response import CovalScheduledRunsAPIUpdateScheduledRunResponse as CovalScheduledRunsAPIUpdateScheduledRunResponse
|
|
565
|
+
from coval_sdk.models.coval_simulations_api_error_detail import CovalSimulationsAPIErrorDetail as CovalSimulationsAPIErrorDetail
|
|
566
|
+
from coval_sdk.models.coval_simulations_api_error_info import CovalSimulationsAPIErrorInfo as CovalSimulationsAPIErrorInfo
|
|
567
|
+
from coval_sdk.models.coval_simulations_api_error_response import CovalSimulationsAPIErrorResponse as CovalSimulationsAPIErrorResponse
|
|
568
|
+
from coval_sdk.models.coval_simulations_api_get_audio_url_response import CovalSimulationsAPIGetAudioURLResponse as CovalSimulationsAPIGetAudioURLResponse
|
|
569
|
+
from coval_sdk.models.coval_simulations_api_get_metric_output_response import CovalSimulationsAPIGetMetricOutputResponse as CovalSimulationsAPIGetMetricOutputResponse
|
|
570
|
+
from coval_sdk.models.coval_simulations_api_get_simulation_response import CovalSimulationsAPIGetSimulationResponse as CovalSimulationsAPIGetSimulationResponse
|
|
571
|
+
from coval_sdk.models.coval_simulations_api_list_metrics_response import CovalSimulationsAPIListMetricsResponse as CovalSimulationsAPIListMetricsResponse
|
|
572
|
+
from coval_sdk.models.coval_simulations_api_list_simulations_response import CovalSimulationsAPIListSimulationsResponse as CovalSimulationsAPIListSimulationsResponse
|
|
573
|
+
from coval_sdk.models.coval_simulations_api_metric_output_collection import CovalSimulationsAPIMetricOutputCollection as CovalSimulationsAPIMetricOutputCollection
|
|
574
|
+
from coval_sdk.models.coval_simulations_api_resimulate_simulation_response import CovalSimulationsAPIResimulateSimulationResponse as CovalSimulationsAPIResimulateSimulationResponse
|
|
575
|
+
from coval_sdk.models.coval_simulations_api_simple_metric_output import CovalSimulationsAPISimpleMetricOutput as CovalSimulationsAPISimpleMetricOutput
|
|
576
|
+
from coval_sdk.models.coval_simulations_api_simple_metric_output_value import CovalSimulationsAPISimpleMetricOutputValue as CovalSimulationsAPISimpleMetricOutputValue
|
|
577
|
+
from coval_sdk.models.coval_simulations_api_simulation_resource import CovalSimulationsAPISimulationResource as CovalSimulationsAPISimulationResource
|
|
578
|
+
from coval_sdk.models.coval_simulations_api_simulation_resource_full import CovalSimulationsAPISimulationResourceFull as CovalSimulationsAPISimulationResourceFull
|
|
579
|
+
from coval_sdk.models.coval_simulations_api_subvalue_by_timestamp import CovalSimulationsAPISubvalueByTimestamp as CovalSimulationsAPISubvalueByTimestamp
|
|
580
|
+
from coval_sdk.models.coval_simulations_api_transcript_message import CovalSimulationsAPITranscriptMessage as CovalSimulationsAPITranscriptMessage
|
|
581
|
+
from coval_sdk.models.coval_simulations_api_transcript_message_content import CovalSimulationsAPITranscriptMessageContent as CovalSimulationsAPITranscriptMessageContent
|
|
582
|
+
from coval_sdk.models.coval_simulations_api_update_simulation_request import CovalSimulationsAPIUpdateSimulationRequest as CovalSimulationsAPIUpdateSimulationRequest
|
|
583
|
+
from coval_sdk.models.coval_simulations_api_update_simulation_response import CovalSimulationsAPIUpdateSimulationResponse as CovalSimulationsAPIUpdateSimulationResponse
|
|
584
|
+
from coval_sdk.models.coval_templates_api_create_template_request import CovalTemplatesAPICreateTemplateRequest as CovalTemplatesAPICreateTemplateRequest
|
|
585
|
+
from coval_sdk.models.coval_templates_api_create_template_response import CovalTemplatesAPICreateTemplateResponse as CovalTemplatesAPICreateTemplateResponse
|
|
586
|
+
from coval_sdk.models.coval_templates_api_duplicate_template_response import CovalTemplatesAPIDuplicateTemplateResponse as CovalTemplatesAPIDuplicateTemplateResponse
|
|
587
|
+
from coval_sdk.models.coval_templates_api_error_response import CovalTemplatesAPIErrorResponse as CovalTemplatesAPIErrorResponse
|
|
588
|
+
from coval_sdk.models.coval_templates_api_error_response_error import CovalTemplatesAPIErrorResponseError as CovalTemplatesAPIErrorResponseError
|
|
589
|
+
from coval_sdk.models.coval_templates_api_error_response_error_details_inner import CovalTemplatesAPIErrorResponseErrorDetailsInner as CovalTemplatesAPIErrorResponseErrorDetailsInner
|
|
590
|
+
from coval_sdk.models.coval_templates_api_get_template_response import CovalTemplatesAPIGetTemplateResponse as CovalTemplatesAPIGetTemplateResponse
|
|
591
|
+
from coval_sdk.models.coval_templates_api_list_templates_response import CovalTemplatesAPIListTemplatesResponse as CovalTemplatesAPIListTemplatesResponse
|
|
592
|
+
from coval_sdk.models.coval_templates_api_simulation_type import CovalTemplatesAPISimulationType as CovalTemplatesAPISimulationType
|
|
593
|
+
from coval_sdk.models.coval_templates_api_template_resource import CovalTemplatesAPITemplateResource as CovalTemplatesAPITemplateResource
|
|
594
|
+
from coval_sdk.models.coval_templates_api_update_template_request import CovalTemplatesAPIUpdateTemplateRequest as CovalTemplatesAPIUpdateTemplateRequest
|
|
595
|
+
from coval_sdk.models.coval_templates_api_update_template_response import CovalTemplatesAPIUpdateTemplateResponse as CovalTemplatesAPIUpdateTemplateResponse
|
|
596
|
+
from coval_sdk.models.create_test_case201_response import CreateTestCase201Response as CreateTestCase201Response
|
|
597
|
+
from coval_sdk.models.create_test_set201_response import CreateTestSet201Response as CreateTestSet201Response
|
|
598
|
+
from coval_sdk.models.get_conversation_metric200_response import GetConversationMetric200Response as GetConversationMetric200Response
|
|
599
|
+
from coval_sdk.models.get_run200_response import GetRun200Response as GetRun200Response
|
|
600
|
+
from coval_sdk.models.ingest_traces200_response import IngestTraces200Response as IngestTraces200Response
|
|
601
|
+
from coval_sdk.models.list_runs200_response import ListRuns200Response as ListRuns200Response
|
|
602
|
+
from coval_sdk.models.list_runs400_response import ListRuns400Response as ListRuns400Response
|
|
603
|
+
from coval_sdk.models.list_test_cases200_response import ListTestCases200Response as ListTestCases200Response
|
|
604
|
+
from coval_sdk.models.list_test_sets200_response import ListTestSets200Response as ListTestSets200Response
|
|
605
|
+
from coval_sdk.models.simulations_get_metric200_response import SimulationsGetMetric200Response as SimulationsGetMetric200Response
|
|
606
|
+
from coval_sdk.models.test_cases_api_create_test_case_request import TestCasesAPICreateTestCaseRequest as TestCasesAPICreateTestCaseRequest
|
|
607
|
+
from coval_sdk.models.test_cases_api_error_response import TestCasesAPIErrorResponse as TestCasesAPIErrorResponse
|
|
608
|
+
from coval_sdk.models.test_cases_api_error_response_error import TestCasesAPIErrorResponseError as TestCasesAPIErrorResponseError
|
|
609
|
+
from coval_sdk.models.test_cases_api_error_response_error_details_inner import TestCasesAPIErrorResponseErrorDetailsInner as TestCasesAPIErrorResponseErrorDetailsInner
|
|
610
|
+
from coval_sdk.models.test_cases_api_test_case_resource import TestCasesAPITestCaseResource as TestCasesAPITestCaseResource
|
|
611
|
+
from coval_sdk.models.test_cases_api_update_test_case_request import TestCasesAPIUpdateTestCaseRequest as TestCasesAPIUpdateTestCaseRequest
|
|
612
|
+
from coval_sdk.models.test_sets_api_create_test_set_request import TestSetsAPICreateTestSetRequest as TestSetsAPICreateTestSetRequest
|
|
613
|
+
from coval_sdk.models.test_sets_api_error_response import TestSetsAPIErrorResponse as TestSetsAPIErrorResponse
|
|
614
|
+
from coval_sdk.models.test_sets_api_error_response_error import TestSetsAPIErrorResponseError as TestSetsAPIErrorResponseError
|
|
615
|
+
from coval_sdk.models.test_sets_api_error_response_error_details_inner import TestSetsAPIErrorResponseErrorDetailsInner as TestSetsAPIErrorResponseErrorDetailsInner
|
|
616
|
+
from coval_sdk.models.test_sets_api_test_set_resource import TestSetsAPITestSetResource as TestSetsAPITestSetResource
|
|
617
|
+
from coval_sdk.models.test_sets_api_update_test_set_request import TestSetsAPIUpdateTestSetRequest as TestSetsAPIUpdateTestSetRequest
|
|
618
|
+
from coval_sdk.models.traces_api_error_response import TracesAPIErrorResponse as TracesAPIErrorResponse
|
|
619
|
+
from coval_sdk.models.traces_api_error_response_error import TracesAPIErrorResponseError as TracesAPIErrorResponseError
|
|
620
|
+
from coval_sdk.models.traces_api_error_response_error_details_inner import TracesAPIErrorResponseErrorDetailsInner as TracesAPIErrorResponseErrorDetailsInner
|
|
621
|
+
|