langwatch-scenario 0.6.0__py3-none-any.whl → 0.7.2__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.6.0.dist-info → langwatch_scenario-0.7.2.dist-info}/METADATA +145 -41
- langwatch_scenario-0.7.2.dist-info/RECORD +237 -0
- scenario/__init__.py +1 -4
- scenario/{events → _events}/__init__.py +9 -11
- scenario/_events/event_bus.py +185 -0
- scenario/{events → _events}/event_reporter.py +1 -1
- scenario/{events → _events}/events.py +20 -27
- scenario/_events/messages.py +58 -0
- scenario/{events → _events}/utils.py +43 -32
- 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 +1 -1
- scenario/_utils/message_conversion.py +2 -2
- scenario/judge_agent.py +6 -1
- scenario/pytest_plugin.py +4 -4
- scenario/scenario_executor.py +196 -223
- scenario/types.py +5 -2
- langwatch_scenario-0.6.0.dist-info/RECORD +0 -27
- scenario/events/event_bus.py +0 -175
- scenario/events/messages.py +0 -84
- {langwatch_scenario-0.6.0.dist-info → langwatch_scenario-0.7.2.dist-info}/WHEEL +0 -0
- {langwatch_scenario-0.6.0.dist-info → langwatch_scenario-0.7.2.dist-info}/entry_points.txt +0 -0
- {langwatch_scenario-0.6.0.dist-info → langwatch_scenario-0.7.2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: langwatch-scenario
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.7.2
|
4
4
|
Summary: The end-to-end agent testing library
|
5
5
|
Author-email: LangWatch Team <support@langwatch.ai>
|
6
6
|
License: MIT
|
@@ -18,6 +18,7 @@ Requires-Python: >=3.9
|
|
18
18
|
Description-Content-Type: text/markdown
|
19
19
|
Requires-Dist: pytest>=8.1.1
|
20
20
|
Requires-Dist: litellm>=1.49.0
|
21
|
+
Requires-Dist: openai>=1.88.0
|
21
22
|
Requires-Dist: python-dotenv>=1.0.1
|
22
23
|
Requires-Dist: termcolor>=2.4.0
|
23
24
|
Requires-Dist: pydantic>=2.7.0
|
@@ -26,11 +27,9 @@ Requires-Dist: wrapt>=1.17.2
|
|
26
27
|
Requires-Dist: pytest-asyncio>=0.26.0
|
27
28
|
Requires-Dist: rich<15.0.0,>=13.3.3
|
28
29
|
Requires-Dist: pksuid>=1.1.2
|
29
|
-
Requires-Dist: pdoc3>=0.11.6
|
30
|
-
Requires-Dist: ag-ui-protocol>=0.1.0
|
31
30
|
Requires-Dist: httpx>=0.27.0
|
32
31
|
Requires-Dist: rx>=3.2.0
|
33
|
-
Requires-Dist:
|
32
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
34
33
|
Provides-Extra: dev
|
35
34
|
Requires-Dist: black; extra == "dev"
|
36
35
|
Requires-Dist: isort; extra == "dev"
|
@@ -40,12 +39,20 @@ Requires-Dist: commitizen; extra == "dev"
|
|
40
39
|
Requires-Dist: pyright; extra == "dev"
|
41
40
|
Requires-Dist: pydantic-ai; extra == "dev"
|
42
41
|
Requires-Dist: function-schema; extra == "dev"
|
42
|
+
Requires-Dist: pdoc3; extra == "dev"
|
43
|
+
Requires-Dist: respx; extra == "dev"
|
43
44
|
|
44
45
|

|
45
46
|
|
46
|
-
<
|
47
|
-
|
48
|
-
|
47
|
+
<p align="center">
|
48
|
+
<a href="https://discord.gg/kT4PhDS2gH" target="_blank"><img src="https://img.shields.io/discord/1227886780536324106?logo=discord&labelColor=%20%235462eb&logoColor=%20%23f5f5f5&color=%20%235462eb" alt="chat on Discord"></a>
|
49
|
+
<a href="https://pypi.python.org/pypi/langwatch-scenario" target="_blank"><img src="https://img.shields.io/pypi/dm/langwatch-scenario?logo=python&logoColor=white&label=pypi%20langwatch-scenario&color=blue" alt="Scenario Python package on PyPi"></a>
|
50
|
+
<a href="https://www.npmjs.com/package/@langwatch/scenario" target="_blank"><img src="https://img.shields.io/npm/dm/@langwatch/scenario?logo=npm&logoColor=white&label=npm%20@langwatch/scenario&color=blue" alt="Scenario JavaScript package on npm"></a>
|
51
|
+
<a href="https://github.com/langwatch/scenario/actions/workflows/python-ci.yml"><img src="https://github.com/langwatch/scenario/actions/workflows/python-ci.yml/badge.svg" alt="Python Tests" /></a>
|
52
|
+
<a href="https://github.com/langwatch/scenario/actions/workflows/javascript-ci.yml"><img src="https://github.com/langwatch/scenario/actions/workflows/javascript-ci.yml/badge.svg" alt="JavaScript Tests" /></a>
|
53
|
+
<a href="https://twitter.com/intent/follow?screen_name=langwatchai" target="_blank">
|
54
|
+
<img src="https://img.shields.io/twitter/follow/langwatchai?logo=X&color=%20%23f5f5f5" alt="follow on X(Twitter)"></a>
|
55
|
+
</p>
|
49
56
|
|
50
57
|
# Scenario
|
51
58
|
|
@@ -54,19 +61,15 @@ Scenario is an Agent Testing Framework based on simulations, it can:
|
|
54
61
|
- Test real agent behavior by simulating users in different scenarios and edge cases
|
55
62
|
- Evaluate and judge at any point of the conversation, powerful multi-turn control
|
56
63
|
- Combine it with any LLM eval framework or custom evals, agnostic by design
|
57
|
-
- Integrate your Agent by implementing just one `call()` method
|
64
|
+
- Integrate your Agent by implementing just one [`call()`](https://scenario.langwatch.ai/agent-integration) method
|
58
65
|
- Available in Python, TypeScript and Go
|
59
66
|
|
60
|
-
[
|
61
|
-
|
62
|
-
### In other languages
|
63
|
-
|
64
|
-
- [Scenario TypeScript](https://github.com/langwatch/scenario-ts/)
|
65
|
-
- [Scenario Go](https://github.com/langwatch/scenario-go/)
|
67
|
+
📖 [Documentation](https://scenario.langwatch.ai)\
|
68
|
+
📺 [Watch Video Tutorial](https://www.youtube.com/watch?v=f8NLpkY0Av4)
|
66
69
|
|
67
70
|
## Example
|
68
71
|
|
69
|
-
This is how a
|
72
|
+
This is how a simulation with tool check looks like with Scenario:
|
70
73
|
|
71
74
|
```python
|
72
75
|
# Define any custom assertions
|
@@ -100,18 +103,56 @@ result = await scenario.run(
|
|
100
103
|
assert result.success
|
101
104
|
```
|
102
105
|
|
106
|
+
<details>
|
107
|
+
<summary><strong>TypeScript Example</strong></summary>
|
108
|
+
|
109
|
+
```typescript
|
110
|
+
const result = await scenario.run({
|
111
|
+
name: "vegetarian recipe agent",
|
112
|
+
|
113
|
+
// Define the prompt to guide the simulation
|
114
|
+
description: `
|
115
|
+
The user is planning a boat trip from Barcelona to Rome,
|
116
|
+
and is wondering what the weather will be like.
|
117
|
+
`,
|
118
|
+
|
119
|
+
// Define the agents that will play this simulation
|
120
|
+
agents: [new MyAgent(), scenario.userSimulatorAgent()],
|
121
|
+
|
122
|
+
// (Optional) Control the simulation
|
123
|
+
script: [
|
124
|
+
scenario.user(), // let the user simulator generate a user message
|
125
|
+
scenario.agent(), // agent responds
|
126
|
+
// check for tool call after the first agent response
|
127
|
+
(state) => expect(state.has_tool_call("get_current_weather")).toBe(true),
|
128
|
+
scenario.succeed(), // simulation ends successfully
|
129
|
+
],
|
130
|
+
});
|
131
|
+
```
|
132
|
+
|
133
|
+
</details>
|
134
|
+
|
103
135
|
> [!NOTE]
|
104
|
-
> Check out full examples in the [examples folder](./examples/).
|
136
|
+
> Check out full examples in the [python/examples folder](./python/examples/). or the [typescript/examples folder](./typescript/examples/).
|
105
137
|
|
106
|
-
##
|
138
|
+
## Quick Start
|
107
139
|
|
108
|
-
Install
|
140
|
+
Install scenario and a test runner:
|
109
141
|
|
110
142
|
```bash
|
111
|
-
|
143
|
+
# on python
|
144
|
+
uv add langwatch-scenario pytest
|
145
|
+
|
146
|
+
# or on typescript
|
147
|
+
pnpm install @langwatch/scenario vitest
|
112
148
|
```
|
113
149
|
|
114
|
-
Now create your first scenario
|
150
|
+
Now create your first scenario, copy the full working example below.
|
151
|
+
|
152
|
+
<details>
|
153
|
+
<summary><strong>Quick Start - Python</strong></summary>
|
154
|
+
|
155
|
+
Save it as `tests/test_vegetarian_recipe_agent.py`:
|
115
156
|
|
116
157
|
```python
|
117
158
|
import pytest
|
@@ -178,23 +219,86 @@ def vegetarian_recipe_agent(messages) -> scenario.AgentReturnTypes:
|
|
178
219
|
return response.choices[0].message # type: ignore
|
179
220
|
```
|
180
221
|
|
181
|
-
|
222
|
+
</details>
|
223
|
+
|
224
|
+
<details>
|
225
|
+
<summary><strong>Quick Start - TypeScript</strong></summary>
|
226
|
+
|
227
|
+
Save it as `tests/vegetarian-recipe-agent.test.ts`:
|
228
|
+
|
229
|
+
```typescript
|
230
|
+
import { openai } from "@ai-sdk/openai";
|
231
|
+
import * as scenario from "@langwatch/scenario";
|
232
|
+
import { generateText } from "ai";
|
233
|
+
import { describe, it, expect } from "vitest";
|
234
|
+
|
235
|
+
describe("Vegetarian Recipe Agent", () => {
|
236
|
+
const agent: scenario.AgentAdapter = {
|
237
|
+
role: scenario.AgentRole.AGENT,
|
238
|
+
call: async (input) => {
|
239
|
+
const response = await generateText({
|
240
|
+
model: openai("gpt-4.1-mini"),
|
241
|
+
messages: [
|
242
|
+
{
|
243
|
+
role: "system",
|
244
|
+
content: `You are a vegetarian recipe agent.\nGiven the user request, ask AT MOST ONE follow-up question, then provide a complete recipe. Keep your responses concise and focused.`,
|
245
|
+
},
|
246
|
+
...input.messages,
|
247
|
+
],
|
248
|
+
});
|
249
|
+
return response.text;
|
250
|
+
},
|
251
|
+
};
|
252
|
+
|
253
|
+
it("should generate a vegetarian recipe for a hungry and tired user on a Saturday evening", async () => {
|
254
|
+
const result = await scenario.run({
|
255
|
+
name: "dinner idea",
|
256
|
+
description: `It's saturday evening, the user is very hungry and tired, but have no money to order out, so they are looking for a recipe.`,
|
257
|
+
agents: [
|
258
|
+
agent,
|
259
|
+
scenario.userSimulatorAgent(),
|
260
|
+
scenario.judgeAgent({
|
261
|
+
model: openai("gpt-4.1-mini"),
|
262
|
+
criteria: [
|
263
|
+
"Agent should not ask more than two follow-up questions",
|
264
|
+
"Agent should generate a recipe",
|
265
|
+
"Recipe should include a list of ingredients",
|
266
|
+
"Recipe should include step-by-step cooking instructions",
|
267
|
+
"Recipe should be vegetarian and not include any sort of meat",
|
268
|
+
],
|
269
|
+
}),
|
270
|
+
],
|
271
|
+
});
|
272
|
+
expect(result.success).toBe(true);
|
273
|
+
});
|
274
|
+
});
|
275
|
+
```
|
276
|
+
|
277
|
+
</details>
|
278
|
+
|
279
|
+
Export your OpenAI API key:
|
182
280
|
|
183
281
|
```bash
|
184
282
|
OPENAI_API_KEY=<your-api-key>
|
185
283
|
```
|
186
284
|
|
187
|
-
Now run it
|
285
|
+
Now run it the test:
|
188
286
|
|
189
287
|
```bash
|
288
|
+
# on python
|
190
289
|
pytest -s tests/test_vegetarian_recipe_agent.py
|
290
|
+
|
291
|
+
# on typescript
|
292
|
+
npx vitest run tests/vegetarian-recipe-agent.test.ts
|
191
293
|
```
|
192
294
|
|
193
295
|
This is how it will look like:
|
194
296
|
|
195
|
-
[](https://asciinema.org/a/nvO5GWGzqKTTCd8gtNSezQw11)
|
196
298
|
|
197
|
-
You can find the same code example in [examples/test_vegetarian_recipe_agent.py](examples/
|
299
|
+
You can find the same code example in [python/examples/](python/examples/test_vegetarian_recipe_agent.py) or [javascript/examples/](javascript/examples/vitest/tests/vegetarian-recipe-agent.test.ts).
|
300
|
+
|
301
|
+
Now check out the [full documentation](https://scenario.langwatch.ai) to learn more and next steps.
|
198
302
|
|
199
303
|
## Simulation on Autopilot
|
200
304
|
|
@@ -296,6 +400,16 @@ async def test_early_assumption_bias():
|
|
296
400
|
assert result.success
|
297
401
|
```
|
298
402
|
|
403
|
+
## LangWatch Visualization
|
404
|
+
|
405
|
+
Set your [LangWatch API key](https://app.langwatch.ai/) to visualize the scenarios in real-time, as they run, for a much better debugging experience and team collaboration:
|
406
|
+
|
407
|
+
```bash
|
408
|
+
LANGWATCH_API_KEY="your-api-key"
|
409
|
+
```
|
410
|
+
|
411
|
+

|
412
|
+
|
299
413
|
## Debug mode
|
300
414
|
|
301
415
|
You can enable debug mode by setting the `debug` field to `True` in the `Scenario.configure` method or in the specific scenario you are running, or by passing the `--debug` flag to pytest.
|
@@ -360,26 +474,16 @@ async def test_user_is_very_hungry():
|
|
360
474
|
|
361
475
|
Those two scenarios should now run in parallel.
|
362
476
|
|
363
|
-
##
|
364
|
-
|
365
|
-
Scenario automatically publishes events during execution for monitoring and observability. You can enable event reporting by setting environment variables:
|
366
|
-
|
367
|
-
```bash
|
368
|
-
# Enable automatic event reporting
|
369
|
-
export LANGWATCH_ENDPOINT="https://api.langwatch.ai"
|
370
|
-
export LANGWATCH_API_KEY="your-api-key"
|
371
|
-
```
|
372
|
-
|
373
|
-
With these variables set, Scenario will automatically:
|
477
|
+
## Contributing
|
374
478
|
|
375
|
-
|
376
|
-
- Handle retries and error handling automatically
|
377
|
-
- Process events asynchronously without blocking your tests
|
479
|
+
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
|
378
480
|
|
379
|
-
|
481
|
+
## Support
|
380
482
|
|
381
|
-
|
483
|
+
- 📖 [Documentation](https://scenario.langwatch.ai)
|
484
|
+
- 💬 [Discord Community](https://discord.gg/langwatch)
|
485
|
+
- 🐛 [Issue Tracker](https://github.com/langwatch/scenario/issues)
|
382
486
|
|
383
487
|
## License
|
384
488
|
|
385
|
-
MIT License
|
489
|
+
MIT License - see [LICENSE](LICENSE) for details.
|
@@ -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.2.dist-info/METADATA,sha256=hHOIOIP9w51i6daij7jmQER_gMfGK_mHc8HrnO9GO90,18588
|
234
|
+
langwatch_scenario-0.7.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
235
|
+
langwatch_scenario-0.7.2.dist-info/entry_points.txt,sha256=WlEnJ_gku0i18bIa3DSuGqXRX-QDQLe_s0YmRzK45TI,45
|
236
|
+
langwatch_scenario-0.7.2.dist-info/top_level.txt,sha256=45Mn28aedJsetnBMB5xSmrJ-yo701QLH89Zlz4r1clE,9
|
237
|
+
langwatch_scenario-0.7.2.dist-info/RECORD,,
|
scenario/__init__.py
CHANGED
@@ -98,7 +98,7 @@ from .types import ScenarioResult, AgentInput, AgentRole, AgentReturnTypes
|
|
98
98
|
from .config import ScenarioConfig
|
99
99
|
|
100
100
|
# Then import modules with dependencies
|
101
|
-
from .scenario_executor import
|
101
|
+
from .scenario_executor import run
|
102
102
|
from .scenario_state import ScenarioState
|
103
103
|
from .agent_adapter import AgentAdapter
|
104
104
|
from .judge_agent import JudgeAgent
|
@@ -109,8 +109,6 @@ from .script import message, user, agent, judge, proceed, succeed, fail
|
|
109
109
|
# Import pytest plugin components
|
110
110
|
# from .pytest_plugin import pytest_configure, scenario_reporter
|
111
111
|
|
112
|
-
run = ScenarioExecutor.run
|
113
|
-
|
114
112
|
configure = ScenarioConfig.configure
|
115
113
|
|
116
114
|
default_config = ScenarioConfig.default_config
|
@@ -138,7 +136,6 @@ __all__ = [
|
|
138
136
|
"ScenarioConfig",
|
139
137
|
"AgentReturnTypes",
|
140
138
|
# Classes
|
141
|
-
"ScenarioExecutor",
|
142
139
|
"ScenarioState",
|
143
140
|
"AgentAdapter",
|
144
141
|
"UserSimulatorAgent",
|
@@ -24,7 +24,6 @@ from .event_reporter import EventReporter
|
|
24
24
|
|
25
25
|
# Message utilities and types
|
26
26
|
from .messages import (
|
27
|
-
Message,
|
28
27
|
UserMessage,
|
29
28
|
AssistantMessage,
|
30
29
|
SystemMessage,
|
@@ -34,33 +33,32 @@ from .messages import (
|
|
34
33
|
)
|
35
34
|
|
36
35
|
# Utility functions
|
37
|
-
from .utils import
|
36
|
+
from .utils import convert_messages_to_api_client_messages
|
38
37
|
|
39
38
|
__all__ = [
|
40
39
|
# Event types
|
41
40
|
"ScenarioEvent",
|
42
41
|
"ScenarioRunStartedEvent",
|
43
42
|
"ScenarioRunStartedEventMetadata",
|
44
|
-
"ScenarioRunFinishedEvent",
|
43
|
+
"ScenarioRunFinishedEvent",
|
45
44
|
"ScenarioRunFinishedEventResults",
|
46
45
|
"ScenarioRunFinishedEventVerdict",
|
47
46
|
"ScenarioRunFinishedEventStatus",
|
48
47
|
"ScenarioMessageSnapshotEvent",
|
49
|
-
|
50
|
-
|
48
|
+
|
51
49
|
# Event processing
|
52
50
|
"ScenarioEventBus",
|
53
51
|
"EventReporter",
|
54
|
-
|
52
|
+
|
55
53
|
# Messages
|
56
|
-
"
|
54
|
+
"MessageType",
|
57
55
|
"UserMessage",
|
58
|
-
"AssistantMessage",
|
56
|
+
"AssistantMessage",
|
59
57
|
"SystemMessage",
|
60
58
|
"ToolMessage",
|
61
59
|
"ToolCall",
|
62
60
|
"FunctionCall",
|
63
|
-
|
61
|
+
|
64
62
|
# Utils
|
65
|
-
"
|
66
|
-
]
|
63
|
+
"convert_messages_to_api_client_messages",
|
64
|
+
]
|