langwatch-scenario 0.4.0__py3-none-any.whl → 0.7.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {langwatch_scenario-0.4.0.dist-info → langwatch_scenario-0.7.1.dist-info}/METADATA +210 -86
- langwatch_scenario-0.7.1.dist-info/RECORD +237 -0
- scenario/__init__.py +12 -118
- scenario/_events/__init__.py +64 -0
- scenario/_events/event_bus.py +185 -0
- scenario/_events/event_reporter.py +83 -0
- scenario/_events/events.py +162 -0
- scenario/_events/messages.py +58 -0
- scenario/_events/utils.py +97 -0
- scenario/_generated/langwatch_api_client/README.md +139 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/__init__.py +13 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/__init__.py +1 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/__init__.py +1 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/delete_api_annotations_id.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/delete_api_prompts_by_id.py +218 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/delete_api_scenario_events.py +183 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_annotations.py +136 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_annotations_id.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_annotations_trace_id.py +160 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_dataset_by_slug_or_id.py +229 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_prompts.py +188 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_prompts_by_id.py +218 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_prompts_by_id_versions.py +218 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/get_api_trace_id.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/patch_api_annotations_id.py +178 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_annotations_trace_id.py +178 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_dataset_by_slug_entries.py +108 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_prompts.py +187 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_prompts_by_id_versions.py +241 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_scenario_events.py +229 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_trace_id_share.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_trace_id_unshare.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/put_api_prompts_by_id.py +241 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/traces/__init__.py +1 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/api/traces/post_api_trace_search.py +168 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/client.py +268 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/errors.py +16 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/__init__.py +455 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/annotation.py +131 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/dataset_post_entries.py +74 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/dataset_post_entries_entries_item.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_annotations_id_response_200.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_200.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_prompts_by_id_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_200.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_400.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_401.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/delete_api_scenario_events_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/error.py +67 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/evaluation.py +164 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/evaluation_timestamps.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_200.py +75 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item.py +109 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item_entry.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_400.py +78 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_401.py +78 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_404.py +78 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_422.py +67 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_dataset_by_slug_or_id_response_500.py +78 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200.py +172 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_messages_item.py +69 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0_json_schema.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0_json_schema_schema.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_200_response_format_type_0_type.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data.py +204 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations.py +101 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item_type.py +18 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_demonstrations_rows_item.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_inputs_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_inputs_item_type.py +16 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_messages_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_outputs_item.py +98 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_outputs_item_json_schema.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_outputs_item_type.py +11 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_200_config_data_prompting_technique.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_by_id_versions_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item.py +172 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_messages_item.py +69 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0_json_schema.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0_json_schema_schema.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_200_item_response_format_type_0_type.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_prompts_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200.py +249 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_error_type_0.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_evaluations_item.py +152 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_evaluations_item_error.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_evaluations_item_timestamps.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_input.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_metadata.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_metrics.py +95 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_output.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item.py +271 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_error_type_0.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_input.py +90 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_input_value_item.py +69 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_metrics.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_output.py +89 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_output_value_item.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_params.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_spans_item_timestamps.py +95 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/get_api_trace_id_response_200_timestamps.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/input_.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/metadata.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/metrics.py +115 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/output.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/pagination.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/patch_api_annotations_id_body.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/patch_api_annotations_id_response_200.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_annotations_trace_id_body.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_body.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body.py +147 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data.py +207 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations.py +106 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations_columns_item.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations_columns_item_type.py +18 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_demonstrations_rows_item.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_inputs_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_inputs_item_type.py +16 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_messages_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_outputs_item.py +98 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_outputs_item_json_schema.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_outputs_item_type.py +11 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_body_config_data_prompting_technique.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200.py +155 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data.py +206 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations.py +101 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item.py +79 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations_columns_item_type.py +18 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_demonstrations_rows_item.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_inputs_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_inputs_item_type.py +16 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_messages_item.py +71 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_outputs_item.py +98 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_outputs_item_json_schema.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_outputs_item_type.py +11 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_200_config_data_prompting_technique.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_by_id_versions_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200.py +172 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_messages_item.py +69 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_messages_item_role.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0_json_schema.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0_json_schema_schema.py +44 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_200_response_format_type_0_type.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_prompts_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_0.py +127 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_0_metadata.py +68 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1.py +164 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1_results_type_0.py +98 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1_results_type_0_verdict.py +10 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_1_status.py +13 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2.py +245 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_0.py +88 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_1.py +88 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_2.py +120 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_2_tool_calls_item.py +87 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_2_tool_calls_item_function.py +67 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_3.py +88 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_body_type_2_messages_item_type_4.py +85 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_201.py +81 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_400.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_401.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_scenario_events_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_trace_id_share_response_200.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/post_api_trace_id_unshare_response_200.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_body.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_200.py +75 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_400.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_400_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_401.py +61 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_401_error.py +8 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_404.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/put_api_prompts_by_id_response_500.py +59 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/search_request.py +133 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/search_request_filters.py +51 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/search_response.py +93 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/timestamps.py +77 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/models/trace.py +225 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/py.typed +1 -0
- scenario/_generated/langwatch_api_client/lang_watch_api_client/types.py +46 -0
- scenario/_generated/langwatch_api_client/pyproject.toml +27 -0
- scenario/_utils/__init__.py +32 -0
- scenario/_utils/ids.py +58 -0
- scenario/_utils/message_conversion.py +103 -0
- scenario/{utils.py → _utils/utils.py} +21 -110
- scenario/agent_adapter.py +8 -4
- scenario/cache.py +4 -3
- scenario/config.py +7 -5
- scenario/judge_agent.py +13 -29
- scenario/pytest_plugin.py +6 -51
- scenario/scenario_executor.py +372 -215
- scenario/scenario_state.py +6 -6
- scenario/script.py +9 -9
- scenario/types.py +15 -8
- scenario/user_simulator_agent.py +4 -11
- langwatch_scenario-0.4.0.dist-info/RECORD +0 -18
- {langwatch_scenario-0.4.0.dist-info → langwatch_scenario-0.7.1.dist-info}/WHEEL +0 -0
- {langwatch_scenario-0.4.0.dist-info → langwatch_scenario-0.7.1.dist-info}/entry_points.txt +0 -0
- {langwatch_scenario-0.4.0.dist-info → langwatch_scenario-0.7.1.dist-info}/top_level.txt +0 -0
- /scenario/{error_messages.py → _error_messages.py} +0 -0
@@ -0,0 +1,178 @@
|
|
1
|
+
from http import HTTPStatus
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
|
6
|
+
from ... import errors
|
7
|
+
from ...client import AuthenticatedClient, Client
|
8
|
+
from ...models.annotation import Annotation
|
9
|
+
from ...models.error import Error
|
10
|
+
from ...models.post_api_annotations_trace_id_body import PostApiAnnotationsTraceIdBody
|
11
|
+
from ...types import Response
|
12
|
+
|
13
|
+
|
14
|
+
def _get_kwargs(
|
15
|
+
id: str,
|
16
|
+
*,
|
17
|
+
body: PostApiAnnotationsTraceIdBody,
|
18
|
+
) -> dict[str, Any]:
|
19
|
+
headers: dict[str, Any] = {}
|
20
|
+
|
21
|
+
_kwargs: dict[str, Any] = {
|
22
|
+
"method": "post",
|
23
|
+
"url": f"/api/annotations/trace/{id}",
|
24
|
+
}
|
25
|
+
|
26
|
+
_body = body.to_dict()
|
27
|
+
|
28
|
+
_kwargs["json"] = _body
|
29
|
+
headers["Content-Type"] = "application/json"
|
30
|
+
|
31
|
+
_kwargs["headers"] = headers
|
32
|
+
return _kwargs
|
33
|
+
|
34
|
+
|
35
|
+
def _parse_response(
|
36
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
37
|
+
) -> Optional[Union[Annotation, Error]]:
|
38
|
+
if response.status_code == 200:
|
39
|
+
response_200 = Annotation.from_dict(response.json())
|
40
|
+
|
41
|
+
return response_200
|
42
|
+
if response.status_code == 400:
|
43
|
+
response_400 = Error.from_dict(response.json())
|
44
|
+
|
45
|
+
return response_400
|
46
|
+
if client.raise_on_unexpected_status:
|
47
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
48
|
+
else:
|
49
|
+
return None
|
50
|
+
|
51
|
+
|
52
|
+
def _build_response(
|
53
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
54
|
+
) -> Response[Union[Annotation, Error]]:
|
55
|
+
return Response(
|
56
|
+
status_code=HTTPStatus(response.status_code),
|
57
|
+
content=response.content,
|
58
|
+
headers=response.headers,
|
59
|
+
parsed=_parse_response(client=client, response=response),
|
60
|
+
)
|
61
|
+
|
62
|
+
|
63
|
+
def sync_detailed(
|
64
|
+
id: str,
|
65
|
+
*,
|
66
|
+
client: Union[AuthenticatedClient, Client],
|
67
|
+
body: PostApiAnnotationsTraceIdBody,
|
68
|
+
) -> Response[Union[Annotation, Error]]:
|
69
|
+
"""Create an annotation for a single trace
|
70
|
+
|
71
|
+
Args:
|
72
|
+
id (str):
|
73
|
+
body (PostApiAnnotationsTraceIdBody):
|
74
|
+
|
75
|
+
Raises:
|
76
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
77
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
78
|
+
|
79
|
+
Returns:
|
80
|
+
Response[Union[Annotation, Error]]
|
81
|
+
"""
|
82
|
+
|
83
|
+
kwargs = _get_kwargs(
|
84
|
+
id=id,
|
85
|
+
body=body,
|
86
|
+
)
|
87
|
+
|
88
|
+
response = client.get_httpx_client().request(
|
89
|
+
**kwargs,
|
90
|
+
)
|
91
|
+
|
92
|
+
return _build_response(client=client, response=response)
|
93
|
+
|
94
|
+
|
95
|
+
def sync(
|
96
|
+
id: str,
|
97
|
+
*,
|
98
|
+
client: Union[AuthenticatedClient, Client],
|
99
|
+
body: PostApiAnnotationsTraceIdBody,
|
100
|
+
) -> Optional[Union[Annotation, Error]]:
|
101
|
+
"""Create an annotation for a single trace
|
102
|
+
|
103
|
+
Args:
|
104
|
+
id (str):
|
105
|
+
body (PostApiAnnotationsTraceIdBody):
|
106
|
+
|
107
|
+
Raises:
|
108
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
109
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
110
|
+
|
111
|
+
Returns:
|
112
|
+
Union[Annotation, Error]
|
113
|
+
"""
|
114
|
+
|
115
|
+
return sync_detailed(
|
116
|
+
id=id,
|
117
|
+
client=client,
|
118
|
+
body=body,
|
119
|
+
).parsed
|
120
|
+
|
121
|
+
|
122
|
+
async def asyncio_detailed(
|
123
|
+
id: str,
|
124
|
+
*,
|
125
|
+
client: Union[AuthenticatedClient, Client],
|
126
|
+
body: PostApiAnnotationsTraceIdBody,
|
127
|
+
) -> Response[Union[Annotation, Error]]:
|
128
|
+
"""Create an annotation for a single trace
|
129
|
+
|
130
|
+
Args:
|
131
|
+
id (str):
|
132
|
+
body (PostApiAnnotationsTraceIdBody):
|
133
|
+
|
134
|
+
Raises:
|
135
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
136
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
137
|
+
|
138
|
+
Returns:
|
139
|
+
Response[Union[Annotation, Error]]
|
140
|
+
"""
|
141
|
+
|
142
|
+
kwargs = _get_kwargs(
|
143
|
+
id=id,
|
144
|
+
body=body,
|
145
|
+
)
|
146
|
+
|
147
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
148
|
+
|
149
|
+
return _build_response(client=client, response=response)
|
150
|
+
|
151
|
+
|
152
|
+
async def asyncio(
|
153
|
+
id: str,
|
154
|
+
*,
|
155
|
+
client: Union[AuthenticatedClient, Client],
|
156
|
+
body: PostApiAnnotationsTraceIdBody,
|
157
|
+
) -> Optional[Union[Annotation, Error]]:
|
158
|
+
"""Create an annotation for a single trace
|
159
|
+
|
160
|
+
Args:
|
161
|
+
id (str):
|
162
|
+
body (PostApiAnnotationsTraceIdBody):
|
163
|
+
|
164
|
+
Raises:
|
165
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
166
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
167
|
+
|
168
|
+
Returns:
|
169
|
+
Union[Annotation, Error]
|
170
|
+
"""
|
171
|
+
|
172
|
+
return (
|
173
|
+
await asyncio_detailed(
|
174
|
+
id=id,
|
175
|
+
client=client,
|
176
|
+
body=body,
|
177
|
+
)
|
178
|
+
).parsed
|
@@ -0,0 +1,108 @@
|
|
1
|
+
from http import HTTPStatus
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
|
6
|
+
from ... import errors
|
7
|
+
from ...client import AuthenticatedClient, Client
|
8
|
+
from ...models.dataset_post_entries import DatasetPostEntries
|
9
|
+
from ...types import Response
|
10
|
+
|
11
|
+
|
12
|
+
def _get_kwargs(
|
13
|
+
slug: str,
|
14
|
+
*,
|
15
|
+
body: DatasetPostEntries,
|
16
|
+
) -> dict[str, Any]:
|
17
|
+
headers: dict[str, Any] = {}
|
18
|
+
|
19
|
+
_kwargs: dict[str, Any] = {
|
20
|
+
"method": "post",
|
21
|
+
"url": f"/api/dataset/{slug}/entries",
|
22
|
+
}
|
23
|
+
|
24
|
+
_body = body.to_dict()
|
25
|
+
|
26
|
+
_kwargs["json"] = _body
|
27
|
+
headers["Content-Type"] = "application/json"
|
28
|
+
|
29
|
+
_kwargs["headers"] = headers
|
30
|
+
return _kwargs
|
31
|
+
|
32
|
+
|
33
|
+
def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
|
34
|
+
if client.raise_on_unexpected_status:
|
35
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
36
|
+
else:
|
37
|
+
return None
|
38
|
+
|
39
|
+
|
40
|
+
def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
|
41
|
+
return Response(
|
42
|
+
status_code=HTTPStatus(response.status_code),
|
43
|
+
content=response.content,
|
44
|
+
headers=response.headers,
|
45
|
+
parsed=_parse_response(client=client, response=response),
|
46
|
+
)
|
47
|
+
|
48
|
+
|
49
|
+
def sync_detailed(
|
50
|
+
slug: str,
|
51
|
+
*,
|
52
|
+
client: Union[AuthenticatedClient, Client],
|
53
|
+
body: DatasetPostEntries,
|
54
|
+
) -> Response[Any]:
|
55
|
+
"""Add entries to a dataset
|
56
|
+
|
57
|
+
Args:
|
58
|
+
slug (str):
|
59
|
+
body (DatasetPostEntries):
|
60
|
+
|
61
|
+
Raises:
|
62
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
63
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
64
|
+
|
65
|
+
Returns:
|
66
|
+
Response[Any]
|
67
|
+
"""
|
68
|
+
|
69
|
+
kwargs = _get_kwargs(
|
70
|
+
slug=slug,
|
71
|
+
body=body,
|
72
|
+
)
|
73
|
+
|
74
|
+
response = client.get_httpx_client().request(
|
75
|
+
**kwargs,
|
76
|
+
)
|
77
|
+
|
78
|
+
return _build_response(client=client, response=response)
|
79
|
+
|
80
|
+
|
81
|
+
async def asyncio_detailed(
|
82
|
+
slug: str,
|
83
|
+
*,
|
84
|
+
client: Union[AuthenticatedClient, Client],
|
85
|
+
body: DatasetPostEntries,
|
86
|
+
) -> Response[Any]:
|
87
|
+
"""Add entries to a dataset
|
88
|
+
|
89
|
+
Args:
|
90
|
+
slug (str):
|
91
|
+
body (DatasetPostEntries):
|
92
|
+
|
93
|
+
Raises:
|
94
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
95
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
96
|
+
|
97
|
+
Returns:
|
98
|
+
Response[Any]
|
99
|
+
"""
|
100
|
+
|
101
|
+
kwargs = _get_kwargs(
|
102
|
+
slug=slug,
|
103
|
+
body=body,
|
104
|
+
)
|
105
|
+
|
106
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
107
|
+
|
108
|
+
return _build_response(client=client, response=response)
|
scenario/_generated/langwatch_api_client/lang_watch_api_client/api/default/post_api_prompts.py
ADDED
@@ -0,0 +1,187 @@
|
|
1
|
+
from http import HTTPStatus
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
|
6
|
+
from ... import errors
|
7
|
+
from ...client import AuthenticatedClient, Client
|
8
|
+
from ...models.post_api_prompts_body import PostApiPromptsBody
|
9
|
+
from ...models.post_api_prompts_response_200 import PostApiPromptsResponse200
|
10
|
+
from ...models.post_api_prompts_response_400 import PostApiPromptsResponse400
|
11
|
+
from ...models.post_api_prompts_response_401 import PostApiPromptsResponse401
|
12
|
+
from ...models.post_api_prompts_response_500 import PostApiPromptsResponse500
|
13
|
+
from ...types import Response
|
14
|
+
|
15
|
+
|
16
|
+
def _get_kwargs(
|
17
|
+
*,
|
18
|
+
body: PostApiPromptsBody,
|
19
|
+
) -> dict[str, Any]:
|
20
|
+
headers: dict[str, Any] = {}
|
21
|
+
|
22
|
+
_kwargs: dict[str, Any] = {
|
23
|
+
"method": "post",
|
24
|
+
"url": "/api/prompts",
|
25
|
+
}
|
26
|
+
|
27
|
+
_body = body.to_dict()
|
28
|
+
|
29
|
+
_kwargs["json"] = _body
|
30
|
+
headers["Content-Type"] = "application/json"
|
31
|
+
|
32
|
+
_kwargs["headers"] = headers
|
33
|
+
return _kwargs
|
34
|
+
|
35
|
+
|
36
|
+
def _parse_response(
|
37
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
38
|
+
) -> Optional[
|
39
|
+
Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]
|
40
|
+
]:
|
41
|
+
if response.status_code == 200:
|
42
|
+
response_200 = PostApiPromptsResponse200.from_dict(response.json())
|
43
|
+
|
44
|
+
return response_200
|
45
|
+
if response.status_code == 400:
|
46
|
+
response_400 = PostApiPromptsResponse400.from_dict(response.json())
|
47
|
+
|
48
|
+
return response_400
|
49
|
+
if response.status_code == 401:
|
50
|
+
response_401 = PostApiPromptsResponse401.from_dict(response.json())
|
51
|
+
|
52
|
+
return response_401
|
53
|
+
if response.status_code == 500:
|
54
|
+
response_500 = PostApiPromptsResponse500.from_dict(response.json())
|
55
|
+
|
56
|
+
return response_500
|
57
|
+
if client.raise_on_unexpected_status:
|
58
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
59
|
+
else:
|
60
|
+
return None
|
61
|
+
|
62
|
+
|
63
|
+
def _build_response(
|
64
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
65
|
+
) -> Response[
|
66
|
+
Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]
|
67
|
+
]:
|
68
|
+
return Response(
|
69
|
+
status_code=HTTPStatus(response.status_code),
|
70
|
+
content=response.content,
|
71
|
+
headers=response.headers,
|
72
|
+
parsed=_parse_response(client=client, response=response),
|
73
|
+
)
|
74
|
+
|
75
|
+
|
76
|
+
def sync_detailed(
|
77
|
+
*,
|
78
|
+
client: Union[AuthenticatedClient, Client],
|
79
|
+
body: PostApiPromptsBody,
|
80
|
+
) -> Response[
|
81
|
+
Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]
|
82
|
+
]:
|
83
|
+
"""Create a new prompt with default initial version
|
84
|
+
|
85
|
+
Args:
|
86
|
+
body (PostApiPromptsBody):
|
87
|
+
|
88
|
+
Raises:
|
89
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
90
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
91
|
+
|
92
|
+
Returns:
|
93
|
+
Response[Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]]
|
94
|
+
"""
|
95
|
+
|
96
|
+
kwargs = _get_kwargs(
|
97
|
+
body=body,
|
98
|
+
)
|
99
|
+
|
100
|
+
response = client.get_httpx_client().request(
|
101
|
+
**kwargs,
|
102
|
+
)
|
103
|
+
|
104
|
+
return _build_response(client=client, response=response)
|
105
|
+
|
106
|
+
|
107
|
+
def sync(
|
108
|
+
*,
|
109
|
+
client: Union[AuthenticatedClient, Client],
|
110
|
+
body: PostApiPromptsBody,
|
111
|
+
) -> Optional[
|
112
|
+
Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]
|
113
|
+
]:
|
114
|
+
"""Create a new prompt with default initial version
|
115
|
+
|
116
|
+
Args:
|
117
|
+
body (PostApiPromptsBody):
|
118
|
+
|
119
|
+
Raises:
|
120
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
121
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
122
|
+
|
123
|
+
Returns:
|
124
|
+
Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]
|
125
|
+
"""
|
126
|
+
|
127
|
+
return sync_detailed(
|
128
|
+
client=client,
|
129
|
+
body=body,
|
130
|
+
).parsed
|
131
|
+
|
132
|
+
|
133
|
+
async def asyncio_detailed(
|
134
|
+
*,
|
135
|
+
client: Union[AuthenticatedClient, Client],
|
136
|
+
body: PostApiPromptsBody,
|
137
|
+
) -> Response[
|
138
|
+
Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]
|
139
|
+
]:
|
140
|
+
"""Create a new prompt with default initial version
|
141
|
+
|
142
|
+
Args:
|
143
|
+
body (PostApiPromptsBody):
|
144
|
+
|
145
|
+
Raises:
|
146
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
147
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
148
|
+
|
149
|
+
Returns:
|
150
|
+
Response[Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]]
|
151
|
+
"""
|
152
|
+
|
153
|
+
kwargs = _get_kwargs(
|
154
|
+
body=body,
|
155
|
+
)
|
156
|
+
|
157
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
158
|
+
|
159
|
+
return _build_response(client=client, response=response)
|
160
|
+
|
161
|
+
|
162
|
+
async def asyncio(
|
163
|
+
*,
|
164
|
+
client: Union[AuthenticatedClient, Client],
|
165
|
+
body: PostApiPromptsBody,
|
166
|
+
) -> Optional[
|
167
|
+
Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]
|
168
|
+
]:
|
169
|
+
"""Create a new prompt with default initial version
|
170
|
+
|
171
|
+
Args:
|
172
|
+
body (PostApiPromptsBody):
|
173
|
+
|
174
|
+
Raises:
|
175
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
176
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
177
|
+
|
178
|
+
Returns:
|
179
|
+
Union[PostApiPromptsResponse200, PostApiPromptsResponse400, PostApiPromptsResponse401, PostApiPromptsResponse500]
|
180
|
+
"""
|
181
|
+
|
182
|
+
return (
|
183
|
+
await asyncio_detailed(
|
184
|
+
client=client,
|
185
|
+
body=body,
|
186
|
+
)
|
187
|
+
).parsed
|
@@ -0,0 +1,241 @@
|
|
1
|
+
from http import HTTPStatus
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
|
6
|
+
from ... import errors
|
7
|
+
from ...client import AuthenticatedClient, Client
|
8
|
+
from ...models.post_api_prompts_by_id_versions_body import PostApiPromptsByIdVersionsBody
|
9
|
+
from ...models.post_api_prompts_by_id_versions_response_200 import PostApiPromptsByIdVersionsResponse200
|
10
|
+
from ...models.post_api_prompts_by_id_versions_response_400 import PostApiPromptsByIdVersionsResponse400
|
11
|
+
from ...models.post_api_prompts_by_id_versions_response_401 import PostApiPromptsByIdVersionsResponse401
|
12
|
+
from ...models.post_api_prompts_by_id_versions_response_404 import PostApiPromptsByIdVersionsResponse404
|
13
|
+
from ...models.post_api_prompts_by_id_versions_response_500 import PostApiPromptsByIdVersionsResponse500
|
14
|
+
from ...types import Response
|
15
|
+
|
16
|
+
|
17
|
+
def _get_kwargs(
|
18
|
+
id: str,
|
19
|
+
*,
|
20
|
+
body: PostApiPromptsByIdVersionsBody,
|
21
|
+
) -> dict[str, Any]:
|
22
|
+
headers: dict[str, Any] = {}
|
23
|
+
|
24
|
+
_kwargs: dict[str, Any] = {
|
25
|
+
"method": "post",
|
26
|
+
"url": f"/api/prompts/{id}/versions",
|
27
|
+
}
|
28
|
+
|
29
|
+
_body = body.to_dict()
|
30
|
+
|
31
|
+
_kwargs["json"] = _body
|
32
|
+
headers["Content-Type"] = "application/json"
|
33
|
+
|
34
|
+
_kwargs["headers"] = headers
|
35
|
+
return _kwargs
|
36
|
+
|
37
|
+
|
38
|
+
def _parse_response(
|
39
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
40
|
+
) -> Optional[
|
41
|
+
Union[
|
42
|
+
PostApiPromptsByIdVersionsResponse200,
|
43
|
+
PostApiPromptsByIdVersionsResponse400,
|
44
|
+
PostApiPromptsByIdVersionsResponse401,
|
45
|
+
PostApiPromptsByIdVersionsResponse404,
|
46
|
+
PostApiPromptsByIdVersionsResponse500,
|
47
|
+
]
|
48
|
+
]:
|
49
|
+
if response.status_code == 200:
|
50
|
+
response_200 = PostApiPromptsByIdVersionsResponse200.from_dict(response.json())
|
51
|
+
|
52
|
+
return response_200
|
53
|
+
if response.status_code == 400:
|
54
|
+
response_400 = PostApiPromptsByIdVersionsResponse400.from_dict(response.json())
|
55
|
+
|
56
|
+
return response_400
|
57
|
+
if response.status_code == 401:
|
58
|
+
response_401 = PostApiPromptsByIdVersionsResponse401.from_dict(response.json())
|
59
|
+
|
60
|
+
return response_401
|
61
|
+
if response.status_code == 404:
|
62
|
+
response_404 = PostApiPromptsByIdVersionsResponse404.from_dict(response.json())
|
63
|
+
|
64
|
+
return response_404
|
65
|
+
if response.status_code == 500:
|
66
|
+
response_500 = PostApiPromptsByIdVersionsResponse500.from_dict(response.json())
|
67
|
+
|
68
|
+
return response_500
|
69
|
+
if client.raise_on_unexpected_status:
|
70
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
71
|
+
else:
|
72
|
+
return None
|
73
|
+
|
74
|
+
|
75
|
+
def _build_response(
|
76
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
77
|
+
) -> Response[
|
78
|
+
Union[
|
79
|
+
PostApiPromptsByIdVersionsResponse200,
|
80
|
+
PostApiPromptsByIdVersionsResponse400,
|
81
|
+
PostApiPromptsByIdVersionsResponse401,
|
82
|
+
PostApiPromptsByIdVersionsResponse404,
|
83
|
+
PostApiPromptsByIdVersionsResponse500,
|
84
|
+
]
|
85
|
+
]:
|
86
|
+
return Response(
|
87
|
+
status_code=HTTPStatus(response.status_code),
|
88
|
+
content=response.content,
|
89
|
+
headers=response.headers,
|
90
|
+
parsed=_parse_response(client=client, response=response),
|
91
|
+
)
|
92
|
+
|
93
|
+
|
94
|
+
def sync_detailed(
|
95
|
+
id: str,
|
96
|
+
*,
|
97
|
+
client: Union[AuthenticatedClient, Client],
|
98
|
+
body: PostApiPromptsByIdVersionsBody,
|
99
|
+
) -> Response[
|
100
|
+
Union[
|
101
|
+
PostApiPromptsByIdVersionsResponse200,
|
102
|
+
PostApiPromptsByIdVersionsResponse400,
|
103
|
+
PostApiPromptsByIdVersionsResponse401,
|
104
|
+
PostApiPromptsByIdVersionsResponse404,
|
105
|
+
PostApiPromptsByIdVersionsResponse500,
|
106
|
+
]
|
107
|
+
]:
|
108
|
+
"""Create a new version for a prompt
|
109
|
+
|
110
|
+
Args:
|
111
|
+
id (str):
|
112
|
+
body (PostApiPromptsByIdVersionsBody):
|
113
|
+
|
114
|
+
Raises:
|
115
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
116
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
117
|
+
|
118
|
+
Returns:
|
119
|
+
Response[Union[PostApiPromptsByIdVersionsResponse200, PostApiPromptsByIdVersionsResponse400, PostApiPromptsByIdVersionsResponse401, PostApiPromptsByIdVersionsResponse404, PostApiPromptsByIdVersionsResponse500]]
|
120
|
+
"""
|
121
|
+
|
122
|
+
kwargs = _get_kwargs(
|
123
|
+
id=id,
|
124
|
+
body=body,
|
125
|
+
)
|
126
|
+
|
127
|
+
response = client.get_httpx_client().request(
|
128
|
+
**kwargs,
|
129
|
+
)
|
130
|
+
|
131
|
+
return _build_response(client=client, response=response)
|
132
|
+
|
133
|
+
|
134
|
+
def sync(
|
135
|
+
id: str,
|
136
|
+
*,
|
137
|
+
client: Union[AuthenticatedClient, Client],
|
138
|
+
body: PostApiPromptsByIdVersionsBody,
|
139
|
+
) -> Optional[
|
140
|
+
Union[
|
141
|
+
PostApiPromptsByIdVersionsResponse200,
|
142
|
+
PostApiPromptsByIdVersionsResponse400,
|
143
|
+
PostApiPromptsByIdVersionsResponse401,
|
144
|
+
PostApiPromptsByIdVersionsResponse404,
|
145
|
+
PostApiPromptsByIdVersionsResponse500,
|
146
|
+
]
|
147
|
+
]:
|
148
|
+
"""Create a new version for a prompt
|
149
|
+
|
150
|
+
Args:
|
151
|
+
id (str):
|
152
|
+
body (PostApiPromptsByIdVersionsBody):
|
153
|
+
|
154
|
+
Raises:
|
155
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
156
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
157
|
+
|
158
|
+
Returns:
|
159
|
+
Union[PostApiPromptsByIdVersionsResponse200, PostApiPromptsByIdVersionsResponse400, PostApiPromptsByIdVersionsResponse401, PostApiPromptsByIdVersionsResponse404, PostApiPromptsByIdVersionsResponse500]
|
160
|
+
"""
|
161
|
+
|
162
|
+
return sync_detailed(
|
163
|
+
id=id,
|
164
|
+
client=client,
|
165
|
+
body=body,
|
166
|
+
).parsed
|
167
|
+
|
168
|
+
|
169
|
+
async def asyncio_detailed(
|
170
|
+
id: str,
|
171
|
+
*,
|
172
|
+
client: Union[AuthenticatedClient, Client],
|
173
|
+
body: PostApiPromptsByIdVersionsBody,
|
174
|
+
) -> Response[
|
175
|
+
Union[
|
176
|
+
PostApiPromptsByIdVersionsResponse200,
|
177
|
+
PostApiPromptsByIdVersionsResponse400,
|
178
|
+
PostApiPromptsByIdVersionsResponse401,
|
179
|
+
PostApiPromptsByIdVersionsResponse404,
|
180
|
+
PostApiPromptsByIdVersionsResponse500,
|
181
|
+
]
|
182
|
+
]:
|
183
|
+
"""Create a new version for a prompt
|
184
|
+
|
185
|
+
Args:
|
186
|
+
id (str):
|
187
|
+
body (PostApiPromptsByIdVersionsBody):
|
188
|
+
|
189
|
+
Raises:
|
190
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
191
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
192
|
+
|
193
|
+
Returns:
|
194
|
+
Response[Union[PostApiPromptsByIdVersionsResponse200, PostApiPromptsByIdVersionsResponse400, PostApiPromptsByIdVersionsResponse401, PostApiPromptsByIdVersionsResponse404, PostApiPromptsByIdVersionsResponse500]]
|
195
|
+
"""
|
196
|
+
|
197
|
+
kwargs = _get_kwargs(
|
198
|
+
id=id,
|
199
|
+
body=body,
|
200
|
+
)
|
201
|
+
|
202
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
203
|
+
|
204
|
+
return _build_response(client=client, response=response)
|
205
|
+
|
206
|
+
|
207
|
+
async def asyncio(
|
208
|
+
id: str,
|
209
|
+
*,
|
210
|
+
client: Union[AuthenticatedClient, Client],
|
211
|
+
body: PostApiPromptsByIdVersionsBody,
|
212
|
+
) -> Optional[
|
213
|
+
Union[
|
214
|
+
PostApiPromptsByIdVersionsResponse200,
|
215
|
+
PostApiPromptsByIdVersionsResponse400,
|
216
|
+
PostApiPromptsByIdVersionsResponse401,
|
217
|
+
PostApiPromptsByIdVersionsResponse404,
|
218
|
+
PostApiPromptsByIdVersionsResponse500,
|
219
|
+
]
|
220
|
+
]:
|
221
|
+
"""Create a new version for a prompt
|
222
|
+
|
223
|
+
Args:
|
224
|
+
id (str):
|
225
|
+
body (PostApiPromptsByIdVersionsBody):
|
226
|
+
|
227
|
+
Raises:
|
228
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
229
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
230
|
+
|
231
|
+
Returns:
|
232
|
+
Union[PostApiPromptsByIdVersionsResponse200, PostApiPromptsByIdVersionsResponse400, PostApiPromptsByIdVersionsResponse401, PostApiPromptsByIdVersionsResponse404, PostApiPromptsByIdVersionsResponse500]
|
233
|
+
"""
|
234
|
+
|
235
|
+
return (
|
236
|
+
await asyncio_detailed(
|
237
|
+
id=id,
|
238
|
+
client=client,
|
239
|
+
body=body,
|
240
|
+
)
|
241
|
+
).parsed
|