langwatch-scenario 0.6.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.6.0.dist-info → langwatch_scenario-0.7.1.dist-info}/METADATA +143 -41
- langwatch_scenario-0.7.1.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.1.dist-info}/WHEEL +0 -0
- {langwatch_scenario-0.6.0.dist-info → langwatch_scenario-0.7.1.dist-info}/entry_points.txt +0 -0
- {langwatch_scenario-0.6.0.dist-info → langwatch_scenario-0.7.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,225 @@
|
|
1
|
+
from collections.abc import Mapping
|
2
|
+
from typing import TYPE_CHECKING, Any, TypeVar, Union, cast
|
3
|
+
|
4
|
+
from attrs import define as _attrs_define
|
5
|
+
from attrs import field as _attrs_field
|
6
|
+
|
7
|
+
from ..types import UNSET, Unset
|
8
|
+
|
9
|
+
if TYPE_CHECKING:
|
10
|
+
from ..models.evaluation import Evaluation
|
11
|
+
from ..models.input_ import Input
|
12
|
+
from ..models.metadata import Metadata
|
13
|
+
from ..models.metrics import Metrics
|
14
|
+
from ..models.output import Output
|
15
|
+
from ..models.timestamps import Timestamps
|
16
|
+
|
17
|
+
|
18
|
+
T = TypeVar("T", bound="Trace")
|
19
|
+
|
20
|
+
|
21
|
+
@_attrs_define
|
22
|
+
class Trace:
|
23
|
+
"""
|
24
|
+
Attributes:
|
25
|
+
trace_id (Union[Unset, str]):
|
26
|
+
project_id (Union[Unset, str]):
|
27
|
+
timestamps (Union[Unset, Timestamps]):
|
28
|
+
input_ (Union[Unset, Input]):
|
29
|
+
output (Union[Unset, Output]):
|
30
|
+
metadata (Union[Unset, Metadata]):
|
31
|
+
metrics (Union[Unset, Metrics]):
|
32
|
+
indexing_md5s (Union[Unset, list[str]]):
|
33
|
+
error (Union[None, Unset, str]):
|
34
|
+
evaluations (Union[Unset, list['Evaluation']]):
|
35
|
+
contexts (Union[Unset, list[Any]]):
|
36
|
+
"""
|
37
|
+
|
38
|
+
trace_id: Union[Unset, str] = UNSET
|
39
|
+
project_id: Union[Unset, str] = UNSET
|
40
|
+
timestamps: Union[Unset, "Timestamps"] = UNSET
|
41
|
+
input_: Union[Unset, "Input"] = UNSET
|
42
|
+
output: Union[Unset, "Output"] = UNSET
|
43
|
+
metadata: Union[Unset, "Metadata"] = UNSET
|
44
|
+
metrics: Union[Unset, "Metrics"] = UNSET
|
45
|
+
indexing_md5s: Union[Unset, list[str]] = UNSET
|
46
|
+
error: Union[None, Unset, str] = UNSET
|
47
|
+
evaluations: Union[Unset, list["Evaluation"]] = UNSET
|
48
|
+
contexts: Union[Unset, list[Any]] = UNSET
|
49
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
50
|
+
|
51
|
+
def to_dict(self) -> dict[str, Any]:
|
52
|
+
trace_id = self.trace_id
|
53
|
+
|
54
|
+
project_id = self.project_id
|
55
|
+
|
56
|
+
timestamps: Union[Unset, dict[str, Any]] = UNSET
|
57
|
+
if not isinstance(self.timestamps, Unset):
|
58
|
+
timestamps = self.timestamps.to_dict()
|
59
|
+
|
60
|
+
input_: Union[Unset, dict[str, Any]] = UNSET
|
61
|
+
if not isinstance(self.input_, Unset):
|
62
|
+
input_ = self.input_.to_dict()
|
63
|
+
|
64
|
+
output: Union[Unset, dict[str, Any]] = UNSET
|
65
|
+
if not isinstance(self.output, Unset):
|
66
|
+
output = self.output.to_dict()
|
67
|
+
|
68
|
+
metadata: Union[Unset, dict[str, Any]] = UNSET
|
69
|
+
if not isinstance(self.metadata, Unset):
|
70
|
+
metadata = self.metadata.to_dict()
|
71
|
+
|
72
|
+
metrics: Union[Unset, dict[str, Any]] = UNSET
|
73
|
+
if not isinstance(self.metrics, Unset):
|
74
|
+
metrics = self.metrics.to_dict()
|
75
|
+
|
76
|
+
indexing_md5s: Union[Unset, list[str]] = UNSET
|
77
|
+
if not isinstance(self.indexing_md5s, Unset):
|
78
|
+
indexing_md5s = self.indexing_md5s
|
79
|
+
|
80
|
+
error: Union[None, Unset, str]
|
81
|
+
if isinstance(self.error, Unset):
|
82
|
+
error = UNSET
|
83
|
+
else:
|
84
|
+
error = self.error
|
85
|
+
|
86
|
+
evaluations: Union[Unset, list[dict[str, Any]]] = UNSET
|
87
|
+
if not isinstance(self.evaluations, Unset):
|
88
|
+
evaluations = []
|
89
|
+
for evaluations_item_data in self.evaluations:
|
90
|
+
evaluations_item = evaluations_item_data.to_dict()
|
91
|
+
evaluations.append(evaluations_item)
|
92
|
+
|
93
|
+
contexts: Union[Unset, list[Any]] = UNSET
|
94
|
+
if not isinstance(self.contexts, Unset):
|
95
|
+
contexts = self.contexts
|
96
|
+
|
97
|
+
field_dict: dict[str, Any] = {}
|
98
|
+
field_dict.update(self.additional_properties)
|
99
|
+
field_dict.update({})
|
100
|
+
if trace_id is not UNSET:
|
101
|
+
field_dict["trace_id"] = trace_id
|
102
|
+
if project_id is not UNSET:
|
103
|
+
field_dict["project_id"] = project_id
|
104
|
+
if timestamps is not UNSET:
|
105
|
+
field_dict["timestamps"] = timestamps
|
106
|
+
if input_ is not UNSET:
|
107
|
+
field_dict["input"] = input_
|
108
|
+
if output is not UNSET:
|
109
|
+
field_dict["output"] = output
|
110
|
+
if metadata is not UNSET:
|
111
|
+
field_dict["metadata"] = metadata
|
112
|
+
if metrics is not UNSET:
|
113
|
+
field_dict["metrics"] = metrics
|
114
|
+
if indexing_md5s is not UNSET:
|
115
|
+
field_dict["indexing_md5s"] = indexing_md5s
|
116
|
+
if error is not UNSET:
|
117
|
+
field_dict["error"] = error
|
118
|
+
if evaluations is not UNSET:
|
119
|
+
field_dict["evaluations"] = evaluations
|
120
|
+
if contexts is not UNSET:
|
121
|
+
field_dict["contexts"] = contexts
|
122
|
+
|
123
|
+
return field_dict
|
124
|
+
|
125
|
+
@classmethod
|
126
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
127
|
+
from ..models.evaluation import Evaluation
|
128
|
+
from ..models.input_ import Input
|
129
|
+
from ..models.metadata import Metadata
|
130
|
+
from ..models.metrics import Metrics
|
131
|
+
from ..models.output import Output
|
132
|
+
from ..models.timestamps import Timestamps
|
133
|
+
|
134
|
+
d = dict(src_dict)
|
135
|
+
trace_id = d.pop("trace_id", UNSET)
|
136
|
+
|
137
|
+
project_id = d.pop("project_id", UNSET)
|
138
|
+
|
139
|
+
_timestamps = d.pop("timestamps", UNSET)
|
140
|
+
timestamps: Union[Unset, Timestamps]
|
141
|
+
if isinstance(_timestamps, Unset):
|
142
|
+
timestamps = UNSET
|
143
|
+
else:
|
144
|
+
timestamps = Timestamps.from_dict(_timestamps)
|
145
|
+
|
146
|
+
_input_ = d.pop("input", UNSET)
|
147
|
+
input_: Union[Unset, Input]
|
148
|
+
if isinstance(_input_, Unset):
|
149
|
+
input_ = UNSET
|
150
|
+
else:
|
151
|
+
input_ = Input.from_dict(_input_)
|
152
|
+
|
153
|
+
_output = d.pop("output", UNSET)
|
154
|
+
output: Union[Unset, Output]
|
155
|
+
if isinstance(_output, Unset):
|
156
|
+
output = UNSET
|
157
|
+
else:
|
158
|
+
output = Output.from_dict(_output)
|
159
|
+
|
160
|
+
_metadata = d.pop("metadata", UNSET)
|
161
|
+
metadata: Union[Unset, Metadata]
|
162
|
+
if isinstance(_metadata, Unset):
|
163
|
+
metadata = UNSET
|
164
|
+
else:
|
165
|
+
metadata = Metadata.from_dict(_metadata)
|
166
|
+
|
167
|
+
_metrics = d.pop("metrics", UNSET)
|
168
|
+
metrics: Union[Unset, Metrics]
|
169
|
+
if isinstance(_metrics, Unset):
|
170
|
+
metrics = UNSET
|
171
|
+
else:
|
172
|
+
metrics = Metrics.from_dict(_metrics)
|
173
|
+
|
174
|
+
indexing_md5s = cast(list[str], d.pop("indexing_md5s", UNSET))
|
175
|
+
|
176
|
+
def _parse_error(data: object) -> Union[None, Unset, str]:
|
177
|
+
if data is None:
|
178
|
+
return data
|
179
|
+
if isinstance(data, Unset):
|
180
|
+
return data
|
181
|
+
return cast(Union[None, Unset, str], data)
|
182
|
+
|
183
|
+
error = _parse_error(d.pop("error", UNSET))
|
184
|
+
|
185
|
+
evaluations = []
|
186
|
+
_evaluations = d.pop("evaluations", UNSET)
|
187
|
+
for evaluations_item_data in _evaluations or []:
|
188
|
+
evaluations_item = Evaluation.from_dict(evaluations_item_data)
|
189
|
+
|
190
|
+
evaluations.append(evaluations_item)
|
191
|
+
|
192
|
+
contexts = cast(list[Any], d.pop("contexts", UNSET))
|
193
|
+
|
194
|
+
trace = cls(
|
195
|
+
trace_id=trace_id,
|
196
|
+
project_id=project_id,
|
197
|
+
timestamps=timestamps,
|
198
|
+
input_=input_,
|
199
|
+
output=output,
|
200
|
+
metadata=metadata,
|
201
|
+
metrics=metrics,
|
202
|
+
indexing_md5s=indexing_md5s,
|
203
|
+
error=error,
|
204
|
+
evaluations=evaluations,
|
205
|
+
contexts=contexts,
|
206
|
+
)
|
207
|
+
|
208
|
+
trace.additional_properties = d
|
209
|
+
return trace
|
210
|
+
|
211
|
+
@property
|
212
|
+
def additional_keys(self) -> list[str]:
|
213
|
+
return list(self.additional_properties.keys())
|
214
|
+
|
215
|
+
def __getitem__(self, key: str) -> Any:
|
216
|
+
return self.additional_properties[key]
|
217
|
+
|
218
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
219
|
+
self.additional_properties[key] = value
|
220
|
+
|
221
|
+
def __delitem__(self, key: str) -> None:
|
222
|
+
del self.additional_properties[key]
|
223
|
+
|
224
|
+
def __contains__(self, key: str) -> bool:
|
225
|
+
return key in self.additional_properties
|
@@ -0,0 +1 @@
|
|
1
|
+
# Marker file for PEP 561
|
@@ -0,0 +1,46 @@
|
|
1
|
+
"""Contains some shared types for properties"""
|
2
|
+
|
3
|
+
from collections.abc import MutableMapping
|
4
|
+
from http import HTTPStatus
|
5
|
+
from typing import BinaryIO, Generic, Literal, Optional, TypeVar
|
6
|
+
|
7
|
+
from attrs import define
|
8
|
+
|
9
|
+
|
10
|
+
class Unset:
|
11
|
+
def __bool__(self) -> Literal[False]:
|
12
|
+
return False
|
13
|
+
|
14
|
+
|
15
|
+
UNSET: Unset = Unset()
|
16
|
+
|
17
|
+
FileJsonType = tuple[Optional[str], BinaryIO, Optional[str]]
|
18
|
+
|
19
|
+
|
20
|
+
@define
|
21
|
+
class File:
|
22
|
+
"""Contains information for file uploads"""
|
23
|
+
|
24
|
+
payload: BinaryIO
|
25
|
+
file_name: Optional[str] = None
|
26
|
+
mime_type: Optional[str] = None
|
27
|
+
|
28
|
+
def to_tuple(self) -> FileJsonType:
|
29
|
+
"""Return a tuple representation that httpx will accept for multipart/form-data"""
|
30
|
+
return self.file_name, self.payload, self.mime_type
|
31
|
+
|
32
|
+
|
33
|
+
T = TypeVar("T")
|
34
|
+
|
35
|
+
|
36
|
+
@define
|
37
|
+
class Response(Generic[T]):
|
38
|
+
"""A response from an endpoint"""
|
39
|
+
|
40
|
+
status_code: HTTPStatus
|
41
|
+
content: bytes
|
42
|
+
headers: MutableMapping[str, str]
|
43
|
+
parsed: Optional[T]
|
44
|
+
|
45
|
+
|
46
|
+
__all__ = ["UNSET", "File", "FileJsonType", "Response", "Unset"]
|
@@ -0,0 +1,27 @@
|
|
1
|
+
[tool.poetry]
|
2
|
+
name = "lang-watch-api-client"
|
3
|
+
version = "1.0.0"
|
4
|
+
description = "A client library for accessing LangWatch API"
|
5
|
+
authors = []
|
6
|
+
readme = "README.md"
|
7
|
+
packages = [
|
8
|
+
{include = "lang_watch_api_client"},
|
9
|
+
]
|
10
|
+
include = ["CHANGELOG.md", "lang_watch_api_client/py.typed"]
|
11
|
+
|
12
|
+
|
13
|
+
[tool.poetry.dependencies]
|
14
|
+
python = "^3.9"
|
15
|
+
httpx = ">=0.20.0,<0.29.0"
|
16
|
+
attrs = ">=22.2.0"
|
17
|
+
python-dateutil = "^2.8.0"
|
18
|
+
|
19
|
+
[build-system]
|
20
|
+
requires = ["poetry-core>=1.0.0"]
|
21
|
+
build-backend = "poetry.core.masonry.api"
|
22
|
+
|
23
|
+
[tool.ruff]
|
24
|
+
line-length = 120
|
25
|
+
|
26
|
+
[tool.ruff.lint]
|
27
|
+
select = ["F", "I", "UP"]
|
scenario/_utils/__init__.py
CHANGED
@@ -12,7 +12,7 @@ from pydantic import BaseModel
|
|
12
12
|
from openai.types.chat import ChatCompletionMessageParam
|
13
13
|
|
14
14
|
from scenario.types import AgentReturnTypes, ScenarioResult
|
15
|
-
from .utils import SerializableAndPydanticEncoder
|
15
|
+
from scenario._utils.utils import SerializableAndPydanticEncoder
|
16
16
|
|
17
17
|
T = TypeVar("T")
|
18
18
|
|
@@ -100,4 +100,4 @@ def convert_agent_return_types_to_openai_messages(
|
|
100
100
|
for message in agent_response
|
101
101
|
]
|
102
102
|
else:
|
103
|
-
return [ensure_dict(convert_maybe_object_to_openai_message(agent_response))]
|
103
|
+
return [ensure_dict(convert_maybe_object_to_openai_message(agent_response))]
|
scenario/judge_agent.py
CHANGED
@@ -93,6 +93,7 @@ class JudgeAgent(AgentAdapter):
|
|
93
93
|
- Provide detailed reasoning for their decisions
|
94
94
|
- Support both positive criteria (things that should happen) and negative criteria (things that shouldn't)
|
95
95
|
"""
|
96
|
+
|
96
97
|
role = AgentRole.JUDGE
|
97
98
|
|
98
99
|
model: str
|
@@ -217,6 +218,10 @@ class JudgeAgent(AgentAdapter):
|
|
217
218
|
|
218
219
|
scenario = input.scenario_state
|
219
220
|
|
221
|
+
criteria_str = "\n".join(
|
222
|
+
[f"{idx + 1}. {criterion}" for idx, criterion in enumerate(self.criteria)]
|
223
|
+
)
|
224
|
+
|
220
225
|
messages = [
|
221
226
|
{
|
222
227
|
"role": "system",
|
@@ -236,7 +241,7 @@ If you do have enough information, use the finish_test tool to determine if all
|
|
236
241
|
</scenario>
|
237
242
|
|
238
243
|
<criteria>
|
239
|
-
{
|
244
|
+
{criteria_str}
|
240
245
|
</criteria>
|
241
246
|
|
242
247
|
<rules>
|
scenario/pytest_plugin.py
CHANGED
@@ -197,7 +197,7 @@ class ScenarioReporter:
|
|
197
197
|
|
198
198
|
|
199
199
|
# Store the original run method
|
200
|
-
original_run = ScenarioExecutor.
|
200
|
+
original_run = ScenarioExecutor.run
|
201
201
|
|
202
202
|
|
203
203
|
@pytest.hookimpl(trylast=True)
|
@@ -259,7 +259,7 @@ def pytest_configure(config):
|
|
259
259
|
return result
|
260
260
|
|
261
261
|
# Apply the patch
|
262
|
-
ScenarioExecutor.
|
262
|
+
ScenarioExecutor.run = auto_reporting_run
|
263
263
|
|
264
264
|
|
265
265
|
@pytest.hookimpl(trylast=True)
|
@@ -269,7 +269,7 @@ def pytest_unconfigure(config):
|
|
269
269
|
|
270
270
|
This hook is called when pytest is shutting down and:
|
271
271
|
- Prints the final scenario test report
|
272
|
-
- Restores the original ScenarioExecutor.
|
272
|
+
- Restores the original ScenarioExecutor.run method
|
273
273
|
- Cleans up any remaining resources
|
274
274
|
|
275
275
|
Args:
|
@@ -284,7 +284,7 @@ def pytest_unconfigure(config):
|
|
284
284
|
config._scenario_reporter.print_report()
|
285
285
|
|
286
286
|
# Restore the original method
|
287
|
-
ScenarioExecutor.
|
287
|
+
ScenarioExecutor.run = original_run
|
288
288
|
|
289
289
|
|
290
290
|
@pytest.fixture
|