langwatch-scenario 0.4.0__py3-none-any.whl → 0.7.1__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.
- {langwatch_scenario-0.4.0.dist-info → langwatch_scenario-0.7.1.dist-info}/METADATA +210 -86
- langwatch_scenario-0.7.1.dist-info/RECORD +237 -0
- scenario/__init__.py +12 -118
- scenario/_events/__init__.py +64 -0
- scenario/_events/event_bus.py +185 -0
- scenario/_events/event_reporter.py +83 -0
- scenario/_events/events.py +162 -0
- scenario/_events/messages.py +58 -0
- scenario/_events/utils.py +97 -0
- scenario/_generated/langwatch_api_client/README.md +139 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/__init__.py +13 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/__init__.py +1 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/__init__.py +1 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/delete_api_annotations_id.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/delete_api_prompts_by_id.py +218 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/delete_api_scenario_events.py +183 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_annotations.py +136 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_annotations_id.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_annotations_trace_id.py +160 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_dataset_by_slug_or_id.py +229 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_prompts.py +188 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_prompts_by_id.py +218 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_prompts_by_id_versions.py +218 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_trace_id.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/patch_api_annotations_id.py +178 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_annotations_trace_id.py +178 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_dataset_by_slug_entries.py +108 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_prompts.py +187 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_prompts_by_id_versions.py +241 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_scenario_events.py +229 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_trace_id_share.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_trace_id_unshare.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/put_api_prompts_by_id.py +241 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/traces/__init__.py +1 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/traces/post_api_trace_search.py +168 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/client.py +268 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/errors.py +16 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/__init__.py +455 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/annotation.py +131 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/dataset_post_entries.py +74 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/dataset_post_entries_entries_item.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_annotations_id_response_200.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_200.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_200.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_400.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_401.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/error.py +67 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/evaluation.py +164 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/evaluation_timestamps.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_200.py +75 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item.py +109 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item_entry.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_400.py +78 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_401.py +78 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_404.py +78 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_422.py +67 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_500.py +78 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200.py +172 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_messages_item.py +69 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0_json_schema.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0_json_schema_schema.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0_type.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data.py +204 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations.py +101 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item_type.py +18 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations_rows_item.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_inputs_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_inputs_item_type.py +16 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_messages_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_outputs_item.py +98 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_outputs_item_json_schema.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_outputs_item_type.py +11 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_prompting_technique.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item.py +172 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_messages_item.py +69 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0_json_schema.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0_json_schema_schema.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0_type.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200.py +249 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_error_type_0.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_evaluations_item.py +152 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_evaluations_item_error.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_evaluations_item_timestamps.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_input.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_metadata.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_metrics.py +95 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_output.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item.py +271 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_error_type_0.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_input.py +90 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_input_value_item.py +69 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_metrics.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_output.py +89 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_output_value_item.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_params.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_timestamps.py +95 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_timestamps.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/input_.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/metadata.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/metrics.py +115 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/output.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/pagination.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/patch_api_annotations_id_body.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/patch_api_annotations_id_response_200.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_annotations_trace_id_body.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_body.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body.py +147 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data.py +207 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations.py +106 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations_columns_item.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations_columns_item_type.py +18 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations_rows_item.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_inputs_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_inputs_item_type.py +16 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_messages_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_outputs_item.py +98 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_outputs_item_json_schema.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_outputs_item_type.py +11 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_prompting_technique.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data.py +206 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations.py +101 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item_type.py +18 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations_rows_item.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_inputs_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_inputs_item_type.py +16 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_messages_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_outputs_item.py +98 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_outputs_item_json_schema.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_outputs_item_type.py +11 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_prompting_technique.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200.py +172 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_messages_item.py +69 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0_json_schema.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0_json_schema_schema.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0_type.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_0.py +127 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_0_metadata.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1.py +164 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1_results_type_0.py +98 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1_results_type_0_verdict.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1_status.py +13 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2.py +245 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_0.py +88 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_1.py +88 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_2.py +120 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_2_tool_calls_item.py +87 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_2_tool_calls_item_function.py +67 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_3.py +88 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_4.py +85 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_201.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_400.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_401.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_trace_id_share_response_200.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_trace_id_unshare_response_200.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_body.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_200.py +75 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/search_request.py +133 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/search_request_filters.py +51 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/search_response.py +93 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/timestamps.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/trace.py +225 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/py.typed +1 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/types.py +46 -0
- scenario/_generated/langwatch_api_client/pyproject.toml +27 -0
- scenario/_utils/__init__.py +32 -0
- scenario/_utils/ids.py +58 -0
- scenario/_utils/message_conversion.py +103 -0
- scenario/{utils.py → _utils/utils.py} +21 -110
- scenario/agent_adapter.py +8 -4
- scenario/cache.py +4 -3
- scenario/config.py +7 -5
- scenario/judge_agent.py +13 -29
- scenario/pytest_plugin.py +6 -51
- scenario/scenario_executor.py +372 -215
- scenario/scenario_state.py +6 -6
- scenario/script.py +9 -9
- scenario/types.py +15 -8
- scenario/user_simulator_agent.py +4 -11
- langwatch_scenario-0.4.0.dist-info/RECORD +0 -18
- {langwatch_scenario-0.4.0.dist-info → langwatch_scenario-0.7.1.dist-info}/WHEEL +0 -0
- {langwatch_scenario-0.4.0.dist-info → langwatch_scenario-0.7.1.dist-info}/entry_points.txt +0 -0
- {langwatch_scenario-0.4.0.dist-info → langwatch_scenario-0.7.1.dist-info}/top_level.txt +0 -0
- /scenario/{error_messages.py → _error_messages.py} +0 -0
@@ -0,0 +1,237 @@
|
|
1
|
+
scenario/__init__.py,sha256=na4kbWIovF68IVRcfcx4f2YopOUOq9sVbZKCNife_Fk,4228
|
2
|
+
scenario/_error_messages.py,sha256=6lEx3jBGMbPx0kG0eX5zoZE-ENVM3O_ZkIbVMlnidYs,3892
|
3
|
+
scenario/agent_adapter.py,sha256=PoY2KQqYuqzIIb3-nhIU-MPXwHJc1vmwdweMy7ut-hk,4255
|
4
|
+
scenario/cache.py,sha256=J6s6Sia_Ce6TrnsInlhfxm6SF8tygo3sH-_cQCRX1WA,6213
|
5
|
+
scenario/config.py,sha256=xhUuXH-sThwPTmJNSuajKxX-WC_tcFwJ1jZc119DswA,6093
|
6
|
+
scenario/judge_agent.py,sha256=d8vORsqpUPIA4yhlBTv5Yi4I2MdcfXselYBTFvfZx-4,16221
|
7
|
+
scenario/pytest_plugin.py,sha256=DGrpgB6e71eq8QXWWxwLjAKNhiyYyzfzZ0L5Ax8iEmo,11317
|
8
|
+
scenario/scenario_executor.py,sha256=EDRFgvyR7vUCX0fC6nMA5loJi3EUAvvyPWc-vCJSpII,32564
|
9
|
+
scenario/scenario_state.py,sha256=dQDjazem-dn1c5mw6TwngEu6Tv_cHwEzemepsPBy2f0,7039
|
10
|
+
scenario/script.py,sha256=A0N5pP0l4FFn1xdKc78U_wkwWhEWH3EFeU_LRDtNyEI,12241
|
11
|
+
scenario/types.py,sha256=qH5KFzJBDG1fEJB_qFRVtL3EZulxq3G1mztYczIzIAY,9613
|
12
|
+
scenario/user_simulator_agent.py,sha256=fhwi8W44s343BGrjJXSJw960wcK7MgwTg-epxR1bqHo,9088
|
13
|
+
scenario/_events/__init__.py,sha256=4cj6H9zuXzvWhT2P2JNdjWzeF1PUepTjqIDw85Vid9s,1500
|
14
|
+
scenario/_events/event_bus.py,sha256=PBnpfSj-81_DQHgCwI6oGYzlzbPCwmsNbmI0Kjp787Y,8052
|
15
|
+
scenario/_events/event_reporter.py,sha256=gVLX3ftbNxDrD6zxMqsuSTeImswhQZQrAZGJFCzLXYc,3093
|
16
|
+
scenario/_events/events.py,sha256=UtEGY-_1B0LrwpgsNKgrvJBZhRtxuj3K_i6ZBfF7E4Q,6387
|
17
|
+
scenario/_events/messages.py,sha256=quwP2OkeaGasNOoaV8GUeosZVKc5XDsde08T0xx_YQo,2297
|
18
|
+
scenario/_events/utils.py,sha256=SproqiwjhLWAW7p82EirCgawpxAo0ksW1pBB4mKkcEs,3436
|
19
|
+
scenario/_generated/langwatch_api_client/README.md,sha256=sWyTtXewM_pumKcaGFNV-F5D8e0uJ13a6q5VWmyFS3U,5445
|
20
|
+
scenario/_generated/langwatch_api_client/pyproject.toml,sha256=Z8wxuGp4H9BJYVVJB8diW7rRU9XYxtPfw9mU4_wq4cA,560
|
21
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/__init__.py,sha256=vVrn17y-3l3fOqeJk8aN3GlStRm2fo0f313l_0LtJNs,368
|
22
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/client.py,sha256=o_mdLqyBCQstu5tS1WZFwqIEbGwkvWQ7eQjuCJw_5VY,12419
|
23
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/errors.py,sha256=gO8GBmKqmSNgAg-E5oT-oOyxztvp7V_6XG7OUTT15q0,546
|
24
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
25
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/types.py,sha256=E1hhDh_zXfsSQ0NCt9-uw90_Mr5iIlsdfnfvxv5HarU,1005
|
26
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/__init__.py,sha256=zTSiG_ujSjAqWPyc435YXaX9XTlpMjiJWBbV-f-YtdA,45
|
27
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
28
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/delete_api_annotations_id.py,sha256=5ZpmXaj6IoF7ajSiNsfFLVALrnZJJb0YvWWwImwKRf8,4212
|
29
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/delete_api_prompts_by_id.py,sha256=QcS0AFDYeM8_cK65HyQS1T6l2l6oEt5eq1IV2bpTSbY,6404
|
30
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/delete_api_scenario_events.py,sha256=I3YQ9WV-pagVuKuIcGjsi1UREWQ2ipWiI8Jx8tnEqTk,5693
|
31
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_annotations.py,sha256=MWBVM51cLULibO_lDagm3gfjsNNxkSX8c_qlhnnnP10,3842
|
32
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_annotations_id.py,sha256=I-xGa3ysWmB4KD_zdDd6V8hFxvNfKPtfjeYzitCB_3M,3905
|
33
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_annotations_trace_id.py,sha256=qyD2pLMQd0aEMVQ24SOXYN8G_DGko7G_IaW7P6SbvCg,4130
|
34
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_dataset_by_slug_or_id.py,sha256=nzp6ehNfBz8HMX0LUJhqyZusrvqn3PXZBWHJPB4b69U,7476
|
35
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_prompts.py,sha256=ZrFzjX1lKnSLKbnsltxkcNeFtIc0nBnTxYfJ8ewyy-M,5526
|
36
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_prompts_by_id.py,sha256=r0u9XLuo5wRQydsM5_0xVUkhF2OAKuq-H7o7V-5rnvM,6230
|
37
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_prompts_by_id_versions.py,sha256=UM1H6PS7wen0DwWn3aHhuiG-8AXygjMK_tL4RpBvPGU,6796
|
38
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_trace_id.py,sha256=tVUjb1wY_6O1yb4mejX7bQxwrbMGfUEmf9DC8oGVybU,4090
|
39
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/patch_api_annotations_id.py,sha256=raU6hkJ4M2-4k52JL7XjLj4TIOg5nsU9Iv-tefN-2DE,4889
|
40
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_annotations_trace_id.py,sha256=P3k2pBht8CKZIzWC51lHgtqWuLh8XFd1TQf705eW-_0,4596
|
41
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_dataset_by_slug_entries.py,sha256=GtOcOhhriaGBIqm2SJzcfQb_iohDrleytk1UspCAAOE,2671
|
42
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_prompts.py,sha256=bcrurfCgYJCzpLvTktw5Wo-gz5zOX6ttoLifnxaVaVE,5769
|
43
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_prompts_by_id_versions.py,sha256=714g_tf_iaIFNcUCseH3tY7d_Sc3LkBbrjjfN85QmdA,7626
|
44
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_scenario_events.py,sha256=MiGAs0_BXnUaVA76GaiFPS90IHWQfLYjYnTb6wrSsxY,7569
|
45
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_trace_id_share.py,sha256=txBdOxauBx5PWTMhrHh-8NRSvTqljHe7GZL6-Yp_kvc,4096
|
46
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_trace_id_unshare.py,sha256=z8RHUhrdrRHdpWTMsN8EzT9UqlPlGtOFzhDY5PEfF1c,4124
|
47
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/put_api_prompts_by_id.py,sha256=MXAkijr7oHNDjg4YN8vcbCqs2ZyZNuB1Wsl2l8_xi9E,6854
|
48
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/traces/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
49
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/traces/post_api_trace_search.py,sha256=NWiPvKeRiRKU28nPYEeIMWz3Z_sKomRgbQZxLYMvC00,4050
|
50
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/__init__.py,sha256=vHA5tTfrVayUOuFdrghwo7k-XPovi7ctPYq_s5g3el8,27091
|
51
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/annotation.py,sha256=PI0ycptiz9YlWz3DPv7SIG1gif9U2gj12h_jenIGG58,3924
|
52
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/dataset_post_entries.py,sha256=yrWY00ONDQNwCTSpK8MtqMqqbigtA5iNYgdhTdlmTfY,2204
|
53
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/dataset_post_entries_entries_item.py,sha256=vNgto6j1Hywr7httGXNkHZNXKvLraF5mwKd0D1f-uC8,1299
|
54
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_annotations_id_response_200.py,sha256=eEWWvhxZZ8dD45QGL48B5DDCGmh8QWRBWz19O7yD9eo,1925
|
55
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_200.py,sha256=wmHD8rDIyomzharx48wF8XByx2ehGmjkUKbHz58FTTo,1584
|
56
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_400.py,sha256=7eMGoi0bNz_g5kSeiyKmJSftftyoa8nFZrOIK-17yJM,1775
|
57
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_400_error.py,sha256=RCdUhlFZeOwf-P0mLstVcUfTlj84lBR9RQiNBq7SPwY,173
|
58
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_401.py,sha256=4ieEs0aQaI6PM3h-NAHar3mFBw9_DvM1COHQs0fQyU0,1775
|
59
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_401_error.py,sha256=aZGy30dODIJAcefNA2nNWbG3rislOT0liQ48GDB0_nI,175
|
60
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_404.py,sha256=2cx5Yy50Dmusby9k5XdxOAw09U5am8BST4ny60qICQQ,1562
|
61
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_500.py,sha256=VSfzpABoWUJ6dfD87CU3yNsG8C9ICfwzPTs2uxm4E6A,1562
|
62
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_200.py,sha256=BhId_qVevMmiHCvAJ8xbNQ4vdrJShJJ9BK-MPtUFGFY,2245
|
63
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_400.py,sha256=A8EGysmh1b7OVeRnur3paOlqaJxgWaFl8USanaD0zXk,1574
|
64
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_401.py,sha256=N1x9TLQoku-mELDbmJHW6hQm6pz9ioDHFtaORh3iRpQ,1574
|
65
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_500.py,sha256=1C_JR6ZtDsyojyZiI8zuVKy05vzSsjWAyIek585fDHg,1574
|
66
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/error.py,sha256=CZx2vnqZe27dn4htMwUN-aG1VAR9wINRkfiXMm_7G80,1587
|
67
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/evaluation.py,sha256=_HbIpm8OtivlfyXavEdK44Sj83f6MTjPJDobKcG_ySA,4851
|
68
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/evaluation_timestamps.py,sha256=rWMCPSQLez2bid-coQXdr8K4u3NMijIoTfKB6rr1ENQ,1936
|
69
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_200.py,sha256=82-1BCWmCSYbAq02yx8rS_mlYtSt3AHh7f1XmFse3gQ,2277
|
70
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item.py,sha256=qdNsWTheg_2SImp1twa_F1PuigukRxSpKKc6KsJyJi0,3061
|
71
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item_entry.py,sha256=N40l9mjU2LBB_TzopecvN1fmHEB5m-9tj6RuRNJ399I,1410
|
72
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_400.py,sha256=FDDgqRGn5aWYoP-FVT4UqBMEMkBBB_r7OpFognaJcHg,2071
|
73
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_401.py,sha256=5_RuqbUj7BGKXhYQpIS57mAJzn_4_hQJ1i5kgKgh2uE,2071
|
74
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_404.py,sha256=N5_CfEXCFL8dmW87TY1wQZTcliIR2d-DpZQYIPTE9qY,2071
|
75
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_422.py,sha256=krAfdiuTKUa_ONU_f8TPUy3Kq25WqY9Anb6aNrJtbGQ,1795
|
76
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_500.py,sha256=HD8gJiVT7-DNiq-zpJSdGAgyMtNoIzQAtjurOeawsIU,2071
|
77
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200.py,sha256=kD1jQko5hCXXnILDu_r_x9TCgfphmces016UUvnYbaM,5406
|
78
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_messages_item.py,sha256=5kdKDox78BxdmzaEtcwb0SG1bFKlkVadYL5r3kopkLQ,2031
|
79
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_messages_item_role.py,sha256=MsKTOeQ9dTGklgVk2KnMXa_SvksJ5EHt5racfscIrDQ,217
|
80
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0.py,sha256=KMF_WsdmIrhr-tS6tvl-LpPwBvRJzR3FsKAt1DYmhw4,2743
|
81
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0_json_schema.py,sha256=gvRa0Fq_PT-v5f8D9tcpgQDQnFWksUSp4TyHmOPGewM,2484
|
82
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0_json_schema_schema.py,sha256=U98o6PAmm2EOZp9pZ8nRbqNabjTfy_4tmjfc07dYUfo,1496
|
83
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0_type.py,sha256=R-UPtJPQTwzbBwg79GKZFMXi8JIx6kqx9sEDjTDFN_g,188
|
84
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_400.py,sha256=vER1_UXIVEWYOhuyy-2ZdAd5cQRL8EAVLX_KG5nVyl4,1745
|
85
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_400_error.py,sha256=CFywc1hA7BzmD88X5poZ-v_d0Q5rYTTlOhbwivss45o,170
|
86
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_401.py,sha256=fbONvQ2ZXuo10OF-9421-P8mUWH4zI10jjEQDLlBRXc,1745
|
87
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_401_error.py,sha256=oAdFCcXeGcv3aeAB48mf5ibtyjxASInuqy4sfcU6ZKo,172
|
88
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_404.py,sha256=Glgo_SEwCCW3jVcXqgROQIQ22znD1Su5-L6zeItI4a0,1547
|
89
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_500.py,sha256=EFgMvjo9xFi3nEHC9HbgpdM5hERh-zgXy_Lq9CgmpRA,1547
|
90
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200.py,sha256=VKEjfyVo1zDkIRzZwTW-087j7N3YWDxEg_EHD0pxi5U,4723
|
91
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data.py,sha256=JkO8ClX9PzPpTRGwMe4DmNDpvGVs91xx85Pr3d4brkQ,7957
|
92
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations.py,sha256=2hv6CxbC5nkrumRahqTE-mdXYa1-kBTT1bWTcsttdbc,3747
|
93
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item.py,sha256=WDYE11ehmGI2nVs1Aq_xoveMeyd0hJHse5L5SGFZHJQ,2467
|
94
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item_type.py,sha256=HrK3J_e5KoRpz4FNNK8sszkoGBORNQGx7B-uwZRF8bs,456
|
95
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations_rows_item.py,sha256=zOCGk0Lho8A-b_CiWNI3olvFnvLktWrvd4W8sXpCP4s,1735
|
96
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_inputs_item.py,sha256=kFBxS6U_wl8pB6m4ZjZzk14v-cZwx1vsjLIZfqtqoPQ,2250
|
97
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_inputs_item_type.py,sha256=eDZhR-nejlxXMOf9xtcJ8VgEOy2Xw8vwfqYO4aEG7kc,367
|
98
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_messages_item.py,sha256=Uc4mLLYs--vxMdYjJc3GBL6IuQKYL-XI_zbOLPZiZdU,2232
|
99
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_messages_item_role.py,sha256=EOI6GVLmKv9Ow7bNEqjdXEwcokaYaMH1Mg98x3QO2UM,235
|
100
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_outputs_item.py,sha256=Lywi6HooGuIsinHugq_jFjceWL1SB-v4XRDb1_fFoOE,3597
|
101
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_outputs_item_json_schema.py,sha256=nuUHQw0z1Jx1MqmNBBpt-yieZTgKzF9m3nWvLweWQUY,1761
|
102
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_outputs_item_type.py,sha256=y8QHfJGRGPiIp7MhRm78n_E4G4vOOSILbl6yFwUdn4c,252
|
103
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_prompting_technique.py,sha256=OhzjwKJI5cv67pCyI0P076IF41EdMynS41OZa65-RFk,1808
|
104
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_400.py,sha256=NGUVY6XQunZ29IdGZQfiiBa7p-DyOIUZfFkcsTxvnEs,1829
|
105
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_400_error.py,sha256=ydoHaihuxLezmUx2sJuPQag-5sKJKXKjRe4bxhbImmQ,178
|
106
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_401.py,sha256=LgkE4ErmwGABDB3XJr_l62jHc2W06IZLBpLqBOcRg6s,1829
|
107
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_401_error.py,sha256=tP6brxNfbqgNjS-nqUV1wJjKtApX5s1dydyrF3P0pXY,180
|
108
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_404.py,sha256=qTg9Njvsm0xAOKdhLuauzp0o6Hnw90brBUws-CvEHu0,1590
|
109
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_500.py,sha256=DVyu47M6dY1II2dFS8NIFc5n0wFGjmYsYZ5oh-ktUMA,1590
|
110
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item.py,sha256=-e0oSewZ6vupnkSsnRWuX58rzeUZkSaLwB25q-PLCcg,5398
|
111
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_messages_item.py,sha256=Xt4stAmh74rSo5wpd82RcObVXuSLJoltnZeHIs4ygiM,2027
|
112
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_messages_item_role.py,sha256=eZ4_Co91fLDMGD2TZsoYIH57cQRS_aZJpV-m5_4OQkA,217
|
113
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0.py,sha256=nLUcdPOBax3TKIYT1MaeRmXrGGVcrbf07ngB63m3TKU,2737
|
114
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0_json_schema.py,sha256=RSEv0jE41Q3IFiBuYu4HIENADjiC6uJ113rm259y5Zo,2479
|
115
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0_json_schema_schema.py,sha256=rRawOPKBqnpco--nIn01TughgM_bRKFn-NGO9_2JxC8,1493
|
116
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0_type.py,sha256=tQ0fVZwsrH3FkuLFM5F9Kqz1v0xEmQqtAzwVCLo0PIs,188
|
117
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_400.py,sha256=UhhD5dxo3VztScfM37nEBelwxzqkPoBy7Ndcp6D2Cd4,1697
|
118
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_400_error.py,sha256=q4J2cSv9iWxnYeOnw2rDp-J_ZZJzW-9CQGYe8DK2xHM,166
|
119
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_401.py,sha256=BfXFIuQRdJYnLoQS3NxgIaWeztfLd9-njudA_QOaT7s,1697
|
120
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_401_error.py,sha256=I765NPEH2i94Wa22WDT8eR0cUx2BmzIaf1IbTG7yJQU,168
|
121
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_500.py,sha256=oloCdce1pFKIvllyl9RdfGTrjUnfSFBW7muRo58yriA,1521
|
122
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200.py,sha256=hHbYALjUqR5Ucsbk-03msYrO8n-VdtJbZp38NL1q7oE,10400
|
123
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_error_type_0.py,sha256=d_Q_wTd4TRJeeBL7AU6z7Ufuoo_qlfosZvFcJfrHtHY,2406
|
124
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_evaluations_item.py,sha256=4fy2_byxfXU3RDmOp6cW7wg3_kEs5VN3ShRLLh9Jhuc,5322
|
125
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_evaluations_item_error.py,sha256=Mix5r5_-AkAYaZXn1y96yZq4PBZHuKZwJ7XI5VAj4yg,2535
|
126
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_evaluations_item_timestamps.py,sha256=FM2K7E0OZvQBibCtKSOFGXC3x7N87EdhYNaXB7tfOFM,2152
|
127
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_input.py,sha256=74_G1d82wUO1MRqj48sdbawE3n0Cawe2A3rT4VO8o9E,1654
|
128
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_metadata.py,sha256=xmQ6SQaUlSWfMuR3hUAkxBL7H57XVRnQydyuiQAm7Fc,2069
|
129
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_metrics.py,sha256=deMZkpDGE1buAtrk9hZ-3iDOqxiFb-5sQbhADNG8JiY,3195
|
130
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_output.py,sha256=B5-EaUdneAAUhBpNMfXvQzw1m4_ESeGut7f4Kz21gB0,1676
|
131
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item.py,sha256=4SyGII-ZuFYwKTTEfEwPQiVVTaZk5oDBOhe5uTO0YPU,10543
|
132
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_error_type_0.py,sha256=ppiKFPpr4fFhm6k5bikd6H8NoUihb9IsYMfewEZQU5Q,2457
|
133
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_input.py,sha256=neS1QU0iUkPq6GYH1aKzmSY_68rP9l2Qfdly09fW0aA,3045
|
134
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_input_value_item.py,sha256=tcN8a9kTjj_7R-3yVV_9rTDQwjgufk2-9niuwkIFcvg,2126
|
135
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_metrics.py,sha256=f1-OzCKfRb-t8bbLeRn5DhzR9pufOd331FubW4wR8sY,2557
|
136
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_output.py,sha256=zAgZeo-tTkKV2X5znUJ8jonjBLbc7LE6tVoWA89Hk5U,2936
|
137
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_output_value_item.py,sha256=UKupdMIG7kM5sOXGWkgfNdgbJlTg_HNM0dyrPHPlNMA,2045
|
138
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_params.py,sha256=_EXSOy6CUOS0z3yLCEFZwf4wMTf1LUSqPHqor234-M8,2043
|
139
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_timestamps.py,sha256=07JhBEFNi6J9JvkcW8ptVbi7YE7-HGc8CFSw8LcXC24,3122
|
140
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_timestamps.py,sha256=ZH2OcCm94RtIW6x0Urhkf1NDSaAvFdmLcLFxAfvAJvc,2386
|
141
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/input_.py,sha256=4ONo-BBnr3hbWVEgBjxyTfnQ9bbobkht5Bqp2b5zRx4,1887
|
142
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/metadata.py,sha256=9ksyI2BIIV67yhxY5VPcQ9XOjjvdKvLWM4PJkAmwX5w,1895
|
143
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/metrics.py,sha256=_wKk9llbvmIxOyjAgURssxP5ht1atN3zdoTXF9MO7fI,3726
|
144
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/output.py,sha256=tghLtb5V-rxpKBQBeGOmbbhtorpIYgPmMC_LR7cZOoc,1507
|
145
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/pagination.py,sha256=BR0RCXRqsjO9rexMkYqxupOLvT1cfjjtRYKCNem5mYY,1888
|
146
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/patch_api_annotations_id_body.py,sha256=z4BZZkkBlyWA_pzeDzQoPkSmbydeulsBhSOOv1o39ck,2181
|
147
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/patch_api_annotations_id_response_200.py,sha256=sjYpqpUHs71-iAySyOVKy5OSox2kk3PNOoqcVOClD4s,1920
|
148
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_annotations_trace_id_body.py,sha256=S92aVn2p-E1dZPqCefmYZf0G3ToOXHHdeM0sc5i7TfU,2204
|
149
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_body.py,sha256=4hcnNrZ54EG02QJKxfEJU6h7tkuFvlSoYdOCcJ8BKt0,1478
|
150
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body.py,sha256=gW8LlFqewyk7hefJIIt45T-mczXodZRRS4P94kCEBWA,4490
|
151
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data.py,sha256=ZctGkbt3An27ALCvd-qr-PBrPI6658UqLAK72x5Sqy8,7915
|
152
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations.py,sha256=OT9jgE2OHE7xZW3cNGW0_idSU_qSIiE-KpKeA8eUtqM,3872
|
153
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations_columns_item.py,sha256=J3XW6GIqoamUntvRiBuVG5Hntm3iYxOmTlumhwjxylo,2403
|
154
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations_columns_item_type.py,sha256=iqtbqgHYZ3PjELlzBuKThXpfz0pAY8V2fz5A3C9Jx5k,450
|
155
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations_rows_item.py,sha256=rWbz6bNDOrW7BFXZC-jKw-u-nxvy_2hUa4Z28l0ZA-4,1702
|
156
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_inputs_item.py,sha256=ng9d8l9miW6bZz3C4a6nR9fSz-keZqxVov8hHW62PQc,2186
|
157
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_inputs_item_type.py,sha256=LL8j2RTYaCalj3CqG9RXRojBiUDlPzCnMEMQYc0kqFM,361
|
158
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_messages_item.py,sha256=WxUfEpFlqSRrWudWrOIJy8Tc_UonqWPCXXx2OMI5lNY,2168
|
159
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_messages_item_role.py,sha256=Wq8wuGyGkdU_5FVbjPb5fI288nrHvXaZy-RXeru-37k,229
|
160
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_outputs_item.py,sha256=-X9l6LyNwHUOjShp9jig85iHONmbIfCKLi-IS5CDyQ4,3483
|
161
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_outputs_item_json_schema.py,sha256=r_IFmNSxjaAzUvH4W59orKLiNN9muab61tFM1h2YTgc,1728
|
162
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_outputs_item_type.py,sha256=sTPRxzsZnf7uQVLT8RohEB9tiyA5YaBYg-O0Y5kbzW0,246
|
163
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_prompting_technique.py,sha256=qC0W8AybckNj9NAVag-QmMVIuFl9N2PfsQY1tmUrw4E,1775
|
164
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200.py,sha256=2DLSs-VocLh-3Gb8OStLPcn4CvHW-wiAa9sKFR36eLo,4735
|
165
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data.py,sha256=HIhsGita5heBUpMgXzBzcZnF2gLyX5_Xv2J4i8f2G7Y,8020
|
166
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations.py,sha256=_GzCTdldK4_Bw_c4YeAmWyg8iw1bicVb3mwVxFl4j0w,3766
|
167
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item.py,sha256=7HW0pt_CwzRlvQ8VPSIv7ixvu_lXBIpke2AZ-648-z0,2477
|
168
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item_type.py,sha256=7UYAwjePIxvl83JQI8ZjbgqemkkE0tYeF57PREeQATc,457
|
169
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations_rows_item.py,sha256=IXHOhAjFoIpWSKA9lSPnUIUuvmB4H4gCIqFKeScXCcg,1740
|
170
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_inputs_item.py,sha256=08IDUqV9Q4A0WE0DbSiy5OHRnGHcJpA4gjGRGD24HCo,2260
|
171
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_inputs_item_type.py,sha256=UGopJyZ8bqb4r7VVz6FRE0agvSsEmB378Xk7aCX-ixQ,368
|
172
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_messages_item.py,sha256=ZT-qiSTd6DdmGSgHvtWmaUHONYFaEuWD0-p-Ao7ZWjs,2242
|
173
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_messages_item_role.py,sha256=cmQP2XtE-wTLj-BLw6WhZ-T_tMZ8ERJb1yulGE-Qe7c,236
|
174
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_outputs_item.py,sha256=adnmNluFxH6oLQCu7XCxUbw1oi-a35vea6Jdh1O0aM8,3615
|
175
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_outputs_item_json_schema.py,sha256=6cZid-6hTJlz7bFP0xegWDXRta2l7OTXT0t1mqW_kkE,1766
|
176
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_outputs_item_type.py,sha256=5hiWy9hmfsHWsSlr13NzPxD5-tzERkD3_h94oCAGgyk,253
|
177
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_prompting_technique.py,sha256=zpnqyBiV9_BWxayA5CiRkDdcP_7siyffmAdBHgJ5IBs,1813
|
178
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_400.py,sha256=8PqKtUzw3SHJYumYfjeko40rfXfkSG9YVu9TcJXCpjs,1839
|
179
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_400_error.py,sha256=c2BWaTUiOGSQYKGgIKJpv7q4JYfeTPh9zDgAjEEJFI8,179
|
180
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_401.py,sha256=MEGuX7DIhiekODCWB5lHoLrEA7JjmdNaS4-vq3EBofQ,1839
|
181
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_401_error.py,sha256=qYSRZWlJRX2wwE6D30wtimUbKBI0XmrxWueeIH5qkXw,181
|
182
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_404.py,sha256=OTQ7dZGxP4dtowY_0-8vdclgUC-pQxOZIql__Yr-OOI,1595
|
183
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_500.py,sha256=wV-6pHFo29QELc58vS65s6xoDIuSymu4Q7OvYHl-yv0,1595
|
184
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200.py,sha256=lfd2XC2y7Lsdle3SD-jsb1el5t00WLducgGuMjpL3xk,5318
|
185
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_messages_item.py,sha256=mNkgoVVdqtFVPtPuD-zJ4LnygUJYUzDjhP0VtmLlivI,1993
|
186
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_messages_item_role.py,sha256=xTZE_E4evFWFoOGY14I2JKrvz0TiVGgMecNfHvzQKII,214
|
187
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0.py,sha256=7NMZuXlYrGZTKWFqGFrIlxUrfvTCGyifFHERSbLFlTE,2680
|
188
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0_json_schema.py,sha256=VDKYjJKeQvkPqoJFU8VmqCdOe0DXuNQo_SoLv1iAHwM,2438
|
189
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0_json_schema_schema.py,sha256=W1ludhQ7K7nB69Y1gWQkFLP1mbVX3_rmuTeSI3eZDWo,1475
|
190
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0_type.py,sha256=NcdumMIaDcG6Xak4pVnjqiFEIoLmoE4GgWnZIhAaQ_s,185
|
191
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_400.py,sha256=36siIaJugtvUDlEkBicJYdaiOmoeQeguVYEJnQ--lpc,1707
|
192
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_400_error.py,sha256=eeVhmMqVoAsydrogNa-dpm-qbkWssEpcRjCKgkJlyNo,167
|
193
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_401.py,sha256=QZZ13hCqrtPkE4f8nooLBHvDgA51nDqC4dYCyeZ3i5o,1707
|
194
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_401_error.py,sha256=RSes_qMrxG3OhTQrCLtCbu5OThB3rrt-HH-2_aTQt8s,169
|
195
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_500.py,sha256=LVqJjmbReKY_OwtNLC0hg060sOg4yrQCvBEHACvQgSM,1526
|
196
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_0.py,sha256=tcOIscTvC2H62hnVvxWACmXUZXC68daPKlQEzELe4nw,3937
|
197
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_0_metadata.py,sha256=yBwd5V2kqCiFhhetebwgxby2e3PlgdBuqEAXzsqtouc,1978
|
198
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1.py,sha256=OHMniXY8kZXmVKd1nmk0u4GUmjr3qQNppZsNj8VV1ek,5454
|
199
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1_results_type_0.py,sha256=K0jfkAlg1XK5h5O-AjnB91Yvb2-tZzdCz9CFzE-BCWY,3016
|
200
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1_results_type_0_verdict.py,sha256=qVxhzbYAysPJC6hmuctug-7LCMWdtUzwMWN005LPMWI,236
|
201
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1_status.py,sha256=-U7B6pqb5X79Iw0F19Vke7S11HBF87-diek-hJuzglc,291
|
202
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2.py,sha256=tV6Y6PtjqCdQZZxaQsHpnXR78tN3xX5fWRGGAdDNdn0,9449
|
203
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_0.py,sha256=G3at5PCVlpW1Wc497ksTLNcwSSJlEkrVvCo5LXcg0ZE,2395
|
204
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_1.py,sha256=YQ6OacpsnkL2MQisRNa14Z-gOrCgF-6XhwSm6NONcrU,2380
|
205
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_2.py,sha256=ErGYAwFI0g5l4lhFmErfohnsLSnzskXUU7KHFdgT6DA,3858
|
206
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_2_tool_calls_item.py,sha256=tFO785mBXcNlT3aOBplKx-6GVYhGA6S_avbYW5-QR8g,2877
|
207
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_2_tool_calls_item_function.py,sha256=expSSxFIKQ8nhBofhtlqmXwjkdQGDsc7BBIIbguhYqo,1954
|
208
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_3.py,sha256=K0as-0RmL9qIQnGNtZQmAs-GZu2-mombauEQtCQtXJI,2370
|
209
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_4.py,sha256=MlGOKgRzv3SoCcEYXDKPSTzUk-pVWfNb15hZaLErmfQ,2324
|
210
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_201.py,sha256=Y-4G9omlFVuezMBsUCjVUHz4gkTJhR9UdjoCYs4OXeM,2235
|
211
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_400.py,sha256=KQH2kjMuNauaKkmFMXduIwMmqOin-467tD6_rBTKjaE,1564
|
212
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_401.py,sha256=Uu0DMmmfaVij617muDnAh99BXWgCpTs5ygIujHcuGtE,1564
|
213
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_500.py,sha256=NGT2tloHOGOwAQo4MUc3kNwXu4dnSDJy1GdGXIVo6Ec,1564
|
214
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_trace_id_share_response_200.py,sha256=aFpc9P8ZrHGucrCmY58cM2DGr7hqD2v5NIYotHr3iUs,1634
|
215
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_trace_id_unshare_response_200.py,sha256=VrmftfI7uoSLCulSs8KgUEH81MpUEEOuUcaGXmSQ2zE,1677
|
216
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_body.py,sha256=7Flr4vFj4KHsTpLqMLwU-Vc6UD5Xwq0hrMYIggBzHm0,1499
|
217
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_200.py,sha256=YBh4gOLnod8WjSQDXBvaqFOVJTLRTFThQMo9w8D8QeI,1861
|
218
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_400.py,sha256=PUjkD-oCN-R7pdz7bEBWRRzHLemkZD2U-QOSNKwQU24,1745
|
219
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_400_error.py,sha256=OYHu5WXsRMN8QPPTRDbjci-_mq4REPzQ1oCeRnrQoTU,170
|
220
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_401.py,sha256=dww-6XC4R543HuHCaTIO5Y2d88b5TP1sjxQWDp6nifQ,1745
|
221
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_401_error.py,sha256=MONvJHwBJNwErwvYiAso2HZc4_Qei9w4qefbI-hUzGc,172
|
222
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_404.py,sha256=G-Kpt2uLL_nzkm3I5CuhGmo1R9PIdYuz1RHuA1_yke4,1547
|
223
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_500.py,sha256=BrPZqfHQl4pyTUEodvDIXqg48oK3MbEK4pKw_79zsuc,1547
|
224
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/search_request.py,sha256=qlNt0-CcfcfGxB6ERwdrlU3Q3qnKClnYXOYcArMFG8Y,4166
|
225
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/search_request_filters.py,sha256=84FWbx9zrZU6_whNYddkDi3ugQWyAD4EmMPeEtpMwqc,1558
|
226
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/search_response.py,sha256=zDYmJ8bFBSJyF9D3cEn_ffrey-ITIfwr-_7eu72zLyk,2832
|
227
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/timestamps.py,sha256=-nRKUPZTAJQNxiKz128xF7DKgZNbFo4G3mr5xNXrkaw,2173
|
228
|
+
scenario/_generated/langwatch_api_client/lang_watch_api_client/models/trace.py,sha256=K9Lc_EQOrJ2dqMXx9EpiUXReT1_uYF7WRfYyhlfbi3I,7537
|
229
|
+
scenario/_utils/__init__.py,sha256=5XkMVG8-g0D8PRtmcJ_PJakmPpUXdDX_gNf_jyILUXQ,999
|
230
|
+
scenario/_utils/ids.py,sha256=K1iPuJgPh3gX9HCrDZGqK5lDgdwZXfOBF1YXVOWNHRg,1843
|
231
|
+
scenario/_utils/message_conversion.py,sha256=AWHn31E7J0mz9sBXWruVVAgtsrJz1R_xEf-dGbX6jjs,3636
|
232
|
+
scenario/_utils/utils.py,sha256=msQgUWaLh3U9jIIHmxkEbOaklga63AF0KJzsaKa_mZc,14008
|
233
|
+
langwatch_scenario-0.7.1.dist-info/METADATA,sha256=SkDifBIWF9RhaJ2TbQuW1gPRIoL_1X-Lc9q6pHfQK_M,18514
|
234
|
+
langwatch_scenario-0.7.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
235
|
+
langwatch_scenario-0.7.1.dist-info/entry_points.txt,sha256=WlEnJ_gku0i18bIa3DSuGqXRX-QDQLe_s0YmRzK45TI,45
|
236
|
+
langwatch_scenario-0.7.1.dist-info/top_level.txt,sha256=45Mn28aedJsetnBMB5xSmrJ-yo701QLH89Zlz4r1clE,9
|
237
|
+
langwatch_scenario-0.7.1.dist-info/RECORD,,
|
scenario/__init__.py
CHANGED
@@ -7,15 +7,21 @@ happy paths and edge cases by simulating user interactions and evaluating agent
|
|
7
7
|
against configurable success criteria.
|
8
8
|
|
9
9
|
Key Features:
|
10
|
+
|
10
11
|
- End-to-end conversation testing with specified scenarios
|
12
|
+
|
11
13
|
- Flexible control from fully scripted to completely automated simulations
|
14
|
+
|
12
15
|
- Multi-turn evaluation designed for complex conversational agents
|
16
|
+
|
13
17
|
- Works with any testing framework (pytest, unittest, etc.)
|
18
|
+
|
14
19
|
- Framework-agnostic integration with any LLM or agent architecture
|
20
|
+
|
15
21
|
- Built-in caching for deterministic and faster test execution
|
16
22
|
|
17
23
|
Basic Usage:
|
18
|
-
|
24
|
+
|
19
25
|
import scenario
|
20
26
|
|
21
27
|
# Configure global settings
|
@@ -42,10 +48,9 @@ Basic Usage:
|
|
42
48
|
)
|
43
49
|
|
44
50
|
assert result.success
|
45
|
-
```
|
46
51
|
|
47
52
|
Advanced Usage:
|
48
|
-
|
53
|
+
|
49
54
|
# Script-controlled scenario with custom evaluations
|
50
55
|
def check_tool_usage(state: scenario.ScenarioState) -> None:
|
51
56
|
assert state.has_tool_call("get_customer_info")
|
@@ -66,10 +71,9 @@ Advanced Usage:
|
|
66
71
|
scenario.succeed("All requirements met")
|
67
72
|
]
|
68
73
|
)
|
69
|
-
```
|
70
74
|
|
71
75
|
Integration with Testing Frameworks:
|
72
|
-
|
76
|
+
|
73
77
|
import pytest
|
74
78
|
|
75
79
|
@pytest.mark.agent_test
|
@@ -85,7 +89,6 @@ Integration with Testing Frameworks:
|
|
85
89
|
]
|
86
90
|
)
|
87
91
|
assert result.success
|
88
|
-
```
|
89
92
|
|
90
93
|
For more examples and detailed documentation, visit: https://github.com/langwatch/scenario
|
91
94
|
"""
|
@@ -95,7 +98,7 @@ from .types import ScenarioResult, AgentInput, AgentRole, AgentReturnTypes
|
|
95
98
|
from .config import ScenarioConfig
|
96
99
|
|
97
100
|
# Then import modules with dependencies
|
98
|
-
from .scenario_executor import
|
101
|
+
from .scenario_executor import run
|
99
102
|
from .scenario_state import ScenarioState
|
100
103
|
from .agent_adapter import AgentAdapter
|
101
104
|
from .judge_agent import JudgeAgent
|
@@ -104,113 +107,13 @@ from .cache import scenario_cache
|
|
104
107
|
from .script import message, user, agent, judge, proceed, succeed, fail
|
105
108
|
|
106
109
|
# Import pytest plugin components
|
107
|
-
from .pytest_plugin import pytest_configure, scenario_reporter
|
108
|
-
|
109
|
-
run = ScenarioExecutor.run
|
110
|
-
"""
|
111
|
-
High-level interface for running scenario tests.
|
112
|
-
|
113
|
-
This is the main entry point for executing scenario-based agent tests. It creates
|
114
|
-
and runs a complete scenario simulation including user interactions, agent responses,
|
115
|
-
and success evaluation.
|
116
|
-
|
117
|
-
Args:
|
118
|
-
name: Human-readable name for the scenario
|
119
|
-
description: Detailed description that guides the simulation behavior
|
120
|
-
agents: List of agent adapters (agent under test, user simulator, judge)
|
121
|
-
max_turns: Maximum conversation turns before timeout (default: 10)
|
122
|
-
verbose: Show detailed output during execution
|
123
|
-
cache_key: Cache key for deterministic behavior across runs
|
124
|
-
debug: Enable debug mode for step-by-step execution
|
125
|
-
script: Optional script steps to control scenario flow
|
126
|
-
|
127
|
-
Returns:
|
128
|
-
ScenarioResult containing test outcome, conversation history, and detailed analysis
|
129
|
-
|
130
|
-
Example:
|
131
|
-
```python
|
132
|
-
result = await scenario.run(
|
133
|
-
name="help request",
|
134
|
-
description="User needs help with a technical problem",
|
135
|
-
agents=[
|
136
|
-
MyAgentAdapter(),
|
137
|
-
scenario.UserSimulatorAgent(),
|
138
|
-
scenario.JudgeAgent(criteria=["Provides helpful response"])
|
139
|
-
]
|
140
|
-
)
|
141
|
-
|
142
|
-
print(f"Test {'PASSED' if result.success else 'FAILED'}")
|
143
|
-
print(f"Reasoning: {result.reasoning}")
|
144
|
-
```
|
145
|
-
"""
|
110
|
+
# from .pytest_plugin import pytest_configure, scenario_reporter
|
146
111
|
|
147
112
|
configure = ScenarioConfig.configure
|
148
|
-
"""
|
149
|
-
Set global configuration settings for all scenario executions.
|
150
|
-
|
151
|
-
This function allows you to configure default behavior that will be applied
|
152
|
-
to all scenarios unless explicitly overridden in individual scenario runs.
|
153
|
-
|
154
|
-
Args:
|
155
|
-
default_model: Default LLM model identifier for user simulator and judge agents
|
156
|
-
max_turns: Maximum number of conversation turns before timeout (default: 10)
|
157
|
-
verbose: Enable verbose output during scenario execution
|
158
|
-
cache_key: Cache key for deterministic scenario behavior across runs
|
159
|
-
debug: Enable debug mode for step-by-step execution with user intervention
|
160
|
-
|
161
|
-
Example:
|
162
|
-
```python
|
163
|
-
# Set up global defaults
|
164
|
-
scenario.configure(
|
165
|
-
default_model="openai/gpt-4.1-mini",
|
166
|
-
max_turns=15,
|
167
|
-
verbose=True,
|
168
|
-
cache_key="my-test-suite-v1"
|
169
|
-
)
|
170
|
-
|
171
|
-
# All subsequent scenarios will use these defaults
|
172
|
-
result = await scenario.run(...)
|
173
|
-
```
|
174
|
-
"""
|
175
113
|
|
176
114
|
default_config = ScenarioConfig.default_config
|
177
|
-
"""
|
178
|
-
Access to the current global configuration settings.
|
179
|
-
|
180
|
-
This provides read-only access to the default configuration that has been
|
181
|
-
set via scenario.configure(). Useful for debugging or conditional logic
|
182
|
-
based on current settings.
|
183
|
-
|
184
|
-
Example:
|
185
|
-
```python
|
186
|
-
if scenario.default_config and scenario.default_config.debug:
|
187
|
-
print("Debug mode is enabled")
|
188
|
-
```
|
189
|
-
"""
|
190
115
|
|
191
116
|
cache = scenario_cache
|
192
|
-
"""
|
193
|
-
Decorator for caching function calls during scenario execution.
|
194
|
-
|
195
|
-
This decorator enables deterministic testing by caching LLM calls and other
|
196
|
-
non-deterministic operations based on scenario configuration and function arguments.
|
197
|
-
Results are cached when a cache_key is configured, making tests repeatable and faster.
|
198
|
-
|
199
|
-
Args:
|
200
|
-
ignore: List of argument names to exclude from cache key computation
|
201
|
-
|
202
|
-
Example:
|
203
|
-
```python
|
204
|
-
class MyAgent:
|
205
|
-
@scenario.cache(ignore=["self"])
|
206
|
-
def invoke(self, message: str) -> str:
|
207
|
-
# This LLM call will be cached when cache_key is set
|
208
|
-
return llm_client.complete(model="gpt-4", prompt=message)
|
209
|
-
|
210
|
-
# Enable caching for deterministic tests
|
211
|
-
scenario.configure(cache_key="test-suite-v1")
|
212
|
-
```
|
213
|
-
"""
|
214
117
|
|
215
118
|
__all__ = [
|
216
119
|
# Functions
|
@@ -218,7 +121,6 @@ __all__ = [
|
|
218
121
|
"configure",
|
219
122
|
"default_config",
|
220
123
|
"cache",
|
221
|
-
|
222
124
|
# Script
|
223
125
|
"message",
|
224
126
|
"proceed",
|
@@ -227,24 +129,16 @@ __all__ = [
|
|
227
129
|
"judge",
|
228
130
|
"agent",
|
229
131
|
"user",
|
230
|
-
|
231
132
|
# Types
|
232
133
|
"ScenarioResult",
|
233
134
|
"AgentInput",
|
234
135
|
"AgentRole",
|
235
136
|
"ScenarioConfig",
|
236
137
|
"AgentReturnTypes",
|
237
|
-
|
238
138
|
# Classes
|
239
|
-
"ScenarioExecutor",
|
240
139
|
"ScenarioState",
|
241
140
|
"AgentAdapter",
|
242
141
|
"UserSimulatorAgent",
|
243
142
|
"JudgeAgent",
|
244
|
-
|
245
|
-
# Plugins
|
246
|
-
"pytest_configure",
|
247
|
-
"scenario_reporter",
|
248
|
-
"scenario_cache",
|
249
143
|
]
|
250
|
-
__version__ = "0.1.0"
|
144
|
+
__version__ = "0.1.0"
|
@@ -0,0 +1,64 @@
|
|
1
|
+
"""
|
2
|
+
Scenario events module for handling event publishing, processing, and reporting.
|
3
|
+
|
4
|
+
This module provides event models, an event bus for processing, and utilities
|
5
|
+
for converting between different message formats.
|
6
|
+
"""
|
7
|
+
|
8
|
+
# Core event types and models
|
9
|
+
from .events import (
|
10
|
+
ScenarioEvent,
|
11
|
+
ScenarioRunStartedEvent,
|
12
|
+
ScenarioRunStartedEventMetadata,
|
13
|
+
ScenarioRunFinishedEvent,
|
14
|
+
ScenarioRunFinishedEventResults,
|
15
|
+
ScenarioRunFinishedEventVerdict,
|
16
|
+
ScenarioRunFinishedEventStatus,
|
17
|
+
ScenarioMessageSnapshotEvent,
|
18
|
+
MessageType,
|
19
|
+
)
|
20
|
+
|
21
|
+
# Event processing infrastructure
|
22
|
+
from .event_bus import ScenarioEventBus
|
23
|
+
from .event_reporter import EventReporter
|
24
|
+
|
25
|
+
# Message utilities and types
|
26
|
+
from .messages import (
|
27
|
+
UserMessage,
|
28
|
+
AssistantMessage,
|
29
|
+
SystemMessage,
|
30
|
+
ToolMessage,
|
31
|
+
ToolCall,
|
32
|
+
FunctionCall,
|
33
|
+
)
|
34
|
+
|
35
|
+
# Utility functions
|
36
|
+
from .utils import convert_messages_to_api_client_messages
|
37
|
+
|
38
|
+
__all__ = [
|
39
|
+
# Event types
|
40
|
+
"ScenarioEvent",
|
41
|
+
"ScenarioRunStartedEvent",
|
42
|
+
"ScenarioRunStartedEventMetadata",
|
43
|
+
"ScenarioRunFinishedEvent",
|
44
|
+
"ScenarioRunFinishedEventResults",
|
45
|
+
"ScenarioRunFinishedEventVerdict",
|
46
|
+
"ScenarioRunFinishedEventStatus",
|
47
|
+
"ScenarioMessageSnapshotEvent",
|
48
|
+
|
49
|
+
# Event processing
|
50
|
+
"ScenarioEventBus",
|
51
|
+
"EventReporter",
|
52
|
+
|
53
|
+
# Messages
|
54
|
+
"MessageType",
|
55
|
+
"UserMessage",
|
56
|
+
"AssistantMessage",
|
57
|
+
"SystemMessage",
|
58
|
+
"ToolMessage",
|
59
|
+
"ToolCall",
|
60
|
+
"FunctionCall",
|
61
|
+
|
62
|
+
# Utils
|
63
|
+
"convert_messages_to_api_client_messages",
|
64
|
+
]
|