langwatch 0.4.1__tar.gz → 0.5.1__tar.gz
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-0.4.1 → langwatch-0.5.1}/CHANGELOG.md +27 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/PKG-INFO +1 -1
- langwatch-0.5.1/examples/openai_bot_otel_metrics.py +89 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/pyproject.toml +2 -3
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/__version__.py +1 -1
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/domain/__init__.py +1 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/telemetry/__tests__/test_tracing.py +42 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/uv.lock +5 -6
- {langwatch-0.4.1 → langwatch-0.5.1}/.editorconfig +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/.env.example +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/.gitignore +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/Makefile +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/README.md +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/azure_openai_stream_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/cli/README.md +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/cli/guaranteed_availability_with_cli.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/custom_evaluation_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/data/rag_dspy_bot.json +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/distributed_tracing.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/documentation/openai_langwatch.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/documentation/openai_openinference.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/dspy_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/dspy_visualization.ipynb +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/evaluation_manual_call.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/fastapi_app.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_async_streaming.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_exception.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_rag.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_rag_expected_output.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_rag_multithreaded.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_span_context_manager.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_span_low_level.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_streaming.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_sync_function.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/generic_bot_update_metadata_later.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/guardrails.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/guardrails_parallel.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/guardrails_without_tracing.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/haystack_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/langchain_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/langchain_bot_with_memory.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/langchain_rag_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/langchain_rag_bot_vertex_ai.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/langchain_rag_bot_with_threads.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/langgraph_rag_bot_with_threads.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/langwatch_docs_rag_evaluation.ipynb +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/litellm_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/offline_evaluation.ipynb +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/openai_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/openai_bot_disable_trace.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/openai_bot_function_call.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/openai_bot_max_string_length.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/openai_bot_max_string_length_none.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/openai_bot_rag.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/openai_bot_sampling_rate.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/openinference/google_adk.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/openinference_dspy_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/openinference_haystack.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/openinference_langchain_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/openinference_openai_assistants_api_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/openinference_openai_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/openllmetry_anthropic_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/openllmetry_crewai_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/openllmetry_langchain_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/openllmetry_openai_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/opentelemetry/traditional_instrumentation_fastapi_app.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/pdf_parsing_evaluation.ipynb +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/prompt_management_fastapi.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/sanity/setup_example.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/span_evaluation.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/strands_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/streamlit_openai_assistants_api_bot.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/weaviate_dspy_visualization.ipynb +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/weaviate_setup/.gitignore +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/weaviate_setup/Weaviate-Import.ipynb +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/weaviate_setup/docker-compose.yml +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/weaviate_setup/optimization_screenshot.png +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/examples/weaviate_setup/tracing_screenshot.png +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/attributes.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/batch_evaluation.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/client.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/dataset/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/dspy/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/evaluation/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/evaluation/evaluation.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/evaluations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/exporters/filterable_batch_span_exporter.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_annotations_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_prompts_by_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_scenario_events.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations_trace_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_dataset_by_slug_or_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts_by_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts_by_id_versions.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_trace_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_index.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/patch_api_annotations_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_annotations_trace_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_dataset_by_slug_entries.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_prompts.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_prompts_by_id_sync.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_scenario_events.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_trace_id_share.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_trace_id_unshare.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_index.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/put_api_prompts_by_id.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/traces/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/api/traces/post_api_trace_search.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/client.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/errors.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/annotation.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/dataset_post_entries.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/dataset_post_entries_entries_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_annotations_id_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_404.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/error.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/evaluation.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/evaluation_timestamps.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item_entry.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_404.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_422.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_404.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_response_format.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_response_format_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_404.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_error_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_evaluations_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_evaluations_item_error.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_evaluations_item_timestamps.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_input.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_metadata.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_metrics.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_output.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_error_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_input.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_input_value_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_metrics.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_output.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_output_value_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_params.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_timestamps.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_timestamps.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0_json_schema_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/input_.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/metadata.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/metrics.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/output.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/pagination.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/patch_api_annotations_id_body.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/patch_api_annotations_id_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_annotations_trace_id_body.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_schema_version.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_response_format.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_response_format_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_action.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_response_format.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_response_format_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_response_format.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_response_format_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_409.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_0_metadata.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1_results_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1_results_type_0_verdict.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1_status.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_2.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_2_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_201.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_trace_id_share_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_trace_id_unshare_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0_json_schema_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_schema_version.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_inputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_inputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_messages_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_messages_item_role.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_outputs_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_outputs_item_json_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_outputs_item_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format_type.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_scope.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_400.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_401.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_404.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_409.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_422.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_500.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/search_request.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/search_request_filters.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/search_response.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/timestamps.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/models/trace.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/py.typed +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/types.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/guardrails.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/langchain.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/litellm.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/login.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/openai.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/decorators/prompt_service_tracing.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/decorators/prompt_tracing.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/errors.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/local_loader.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/prompt.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/prompt_api_service.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/prompt_facade.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/types/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/types/prompt_data.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/types/structures.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/prompts/types.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/py.typed +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/state.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/telemetry/context.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/telemetry/sampling.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/telemetry/span.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/telemetry/tracing.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/telemetry/types.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/tracer.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/types.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/utils/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/utils/capture.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/utils/exceptions.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/utils/initialization.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/utils/module.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/utils/transformation.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/utils/utils.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/conftest.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/exporters/test_filterable_batch_span_exporter.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/fixtures/README.md +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/fixtures/__init__.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/fixtures/get_response_factories.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/fixtures/prompts/cli.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/fixtures/prompts/general.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/fixtures/prompts/prompt_fixtures.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/fixtures/span_exporter.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/prompts/test_guaranteed_availability.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/prompts/test_local_loader.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/prompts/test_prompt.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/prompts/test_prompt_service_tracing.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/prompts/test_prompt_tracing.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/telemetry/test_context.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/telemetry/test_tracing.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/test_cli_runner.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/test_client.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/test_examples.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/test_login.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/test_version.py +0 -0
- {langwatch-0.4.1 → langwatch-0.5.1}/tests/utils/test_transformation.py +0 -0
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.1](https://github.com/langwatch/langwatch/compare/python-sdk@v0.5.0...python-sdk@v0.5.1) (2025-10-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous
|
|
7
|
+
|
|
8
|
+
* add span count and weight details for better debugging of immense traces ([2be915e](https://github.com/langwatch/langwatch/commit/2be915e1735c0632caac8d8082f632d461643967))
|
|
9
|
+
|
|
10
|
+
## [0.5.0](https://github.com/langwatch/langwatch/compare/python-sdk@v0.4.2...python-sdk@v0.5.0) (2025-10-13)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add support for otel /metrics endpoint for genai metrics ([#680](https://github.com/langwatch/langwatch/issues/680)) ([14bec0d](https://github.com/langwatch/langwatch/commit/14bec0d70d4c645d409b2b18a8f6219515563aed))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Miscellaneous
|
|
19
|
+
|
|
20
|
+
* update to allow first_token_ms ([#702](https://github.com/langwatch/langwatch/issues/702)) ([38ffd34](https://github.com/langwatch/langwatch/commit/38ffd34f90e49c866690747c0e36b43a867cc698))
|
|
21
|
+
* update version 0.5 ([#704](https://github.com/langwatch/langwatch/issues/704)) ([615510f](https://github.com/langwatch/langwatch/commit/615510fa04ebe3c33635d0edcd3e8f7faeaabb52))
|
|
22
|
+
|
|
23
|
+
## [0.4.2](https://github.com/langwatch/langwatch/compare/python-sdk@v0.4.1...python-sdk@v0.4.2) (2025-09-22)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* downgrade litellm dependency due to https://github.com/BerriAI/litellm/issues/14145 preventing to build it on lambda ([066d97c](https://github.com/langwatch/langwatch/commit/066d97c26252c82f9143e36427782c7af19912a2))
|
|
29
|
+
|
|
3
30
|
## [0.4.1](https://github.com/langwatch/langwatch/compare/python-sdk@v0.4.0...python-sdk@v0.4.1) (2025-09-19)
|
|
4
31
|
|
|
5
32
|
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
from dotenv import load_dotenv
|
|
2
|
+
import os
|
|
3
|
+
|
|
4
|
+
load_dotenv()
|
|
5
|
+
|
|
6
|
+
import chainlit as cl
|
|
7
|
+
from openai import OpenAI
|
|
8
|
+
import langwatch
|
|
9
|
+
|
|
10
|
+
from opentelemetry import metrics
|
|
11
|
+
from opentelemetry.sdk.metrics import MeterProvider
|
|
12
|
+
from opentelemetry.sdk.resources import Resource
|
|
13
|
+
from opentelemetry.sdk.metrics.export import PeriodicExportingMetricReader
|
|
14
|
+
from opentelemetry.exporter.otlp.proto.http.metric_exporter import OTLPMetricExporter
|
|
15
|
+
|
|
16
|
+
import time
|
|
17
|
+
|
|
18
|
+
client = OpenAI()
|
|
19
|
+
|
|
20
|
+
exporter = OTLPMetricExporter(
|
|
21
|
+
endpoint=f"{os.environ.get('LANGWATCH_ENDPOINT', 'https://app.langwatch.ai')}/api/otel/v1/metrics",
|
|
22
|
+
headers={"Authorization": "Bearer " + os.environ["LANGWATCH_API_KEY"]},
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
reader = PeriodicExportingMetricReader(exporter)
|
|
27
|
+
provider = MeterProvider(
|
|
28
|
+
resource=Resource.create({"service.name": "my-agent"}), metric_readers=[reader]
|
|
29
|
+
)
|
|
30
|
+
metrics.set_meter_provider(provider)
|
|
31
|
+
meter = metrics.get_meter("gen_ai.server")
|
|
32
|
+
|
|
33
|
+
# Create the histogram
|
|
34
|
+
time_to_first_token_hist = meter.create_histogram(
|
|
35
|
+
name="gen_ai.server.time_to_first_token",
|
|
36
|
+
unit="s",
|
|
37
|
+
description="Time to generate first token for successful responses",
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
@langwatch.trace(type="llm")
|
|
42
|
+
async def do_call_llm(content: str, msg):
|
|
43
|
+
start_time = time.time()
|
|
44
|
+
completion = client.chat.completions.create(
|
|
45
|
+
model="gpt-5",
|
|
46
|
+
messages=[
|
|
47
|
+
{
|
|
48
|
+
"role": "system",
|
|
49
|
+
"content": "You are a helpful assistant that only reply in short tweet-like responses, using lots of emojis.",
|
|
50
|
+
},
|
|
51
|
+
{"role": "user", "content": content},
|
|
52
|
+
],
|
|
53
|
+
stream=True,
|
|
54
|
+
stream_options={"include_usage": True},
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
first_token_time = None
|
|
58
|
+
full_response = ""
|
|
59
|
+
for part in completion:
|
|
60
|
+
if len(part.choices) == 0:
|
|
61
|
+
continue
|
|
62
|
+
if token := part.choices[0].delta.content or "":
|
|
63
|
+
if first_token_time is None:
|
|
64
|
+
first_token_time = time.time()
|
|
65
|
+
record_first_token_latency((time.time() - start_time) * 1000)
|
|
66
|
+
await msg.stream_token(token)
|
|
67
|
+
full_response += token
|
|
68
|
+
|
|
69
|
+
langwatch.get_current_trace().update(output=full_response)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
@cl.on_message
|
|
73
|
+
@langwatch.trace()
|
|
74
|
+
async def main(message: cl.Message):
|
|
75
|
+
msg = cl.Message(
|
|
76
|
+
content="",
|
|
77
|
+
)
|
|
78
|
+
|
|
79
|
+
await do_call_llm(message.content, msg)
|
|
80
|
+
|
|
81
|
+
await msg.update()
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
def record_first_token_latency(milliseconds: float):
|
|
85
|
+
seconds = milliseconds / 1000.0
|
|
86
|
+
print(f"Record first token latency: {seconds} seconds")
|
|
87
|
+
time_to_first_token_hist.record(
|
|
88
|
+
seconds, attributes={"model": "gpt-5", "request.status": "success"}
|
|
89
|
+
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "langwatch"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.5.1" # remember to also update it in src/langwatch/__version__.py
|
|
4
4
|
description = "LangWatch Python SDK, for monitoring your LLMs"
|
|
5
5
|
authors = [{ name = "Langwatch Engineers", email = "engineering@langwatch.ai" }]
|
|
6
6
|
requires-python = ">=3.10,<3.14"
|
|
@@ -95,8 +95,7 @@ examples = [
|
|
|
95
95
|
"opentelemetry-instrumentation-langchain>=0.40.4",
|
|
96
96
|
"openinference-instrumentation-litellm>=0.1.19",
|
|
97
97
|
"pandas>=2.2.3",
|
|
98
|
-
"strands-agents[otel]>=1.
|
|
98
|
+
"strands-agents[otel]>=1.9.0,<2.0.0",
|
|
99
99
|
"unstructured[pdf]>=0.18.3",
|
|
100
|
-
"strands-agents>=1.6.0",
|
|
101
100
|
]
|
|
102
101
|
tests = ["pytest-asyncio>=0.21.2"]
|
|
@@ -46,3 +46,45 @@ def test_metadata_not_lost_on_multiple_updates():
|
|
|
46
46
|
# None update should not clear
|
|
47
47
|
trace.update(metadata=None)
|
|
48
48
|
assert trace.metadata == {"x": 1, "y": 99, "z": 3}
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def test_metrics_update():
|
|
52
|
+
# Test updating metrics including first_token_ms
|
|
53
|
+
trace = LangWatchTrace()
|
|
54
|
+
|
|
55
|
+
# Update with first_token_ms
|
|
56
|
+
trace.update(metrics={"first_token_ms": 150})
|
|
57
|
+
|
|
58
|
+
# Update with additional metrics
|
|
59
|
+
trace.update(metrics={"prompt_tokens": 100, "completion_tokens": 50})
|
|
60
|
+
|
|
61
|
+
# Update first_token_ms again
|
|
62
|
+
trace.update(metrics={"first_token_ms": 200})
|
|
63
|
+
|
|
64
|
+
# Verify the metrics are properly handled (they should be passed to root_span.update)
|
|
65
|
+
# Since we can't easily test the internal span state without mocking,
|
|
66
|
+
# we'll test that the update method doesn't raise any errors
|
|
67
|
+
assert True # If we get here, the updates succeeded
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
def test_metrics_update_with_root_span():
|
|
71
|
+
# Test metrics update when there's an active root span
|
|
72
|
+
trace = LangWatchTrace()
|
|
73
|
+
|
|
74
|
+
with trace:
|
|
75
|
+
# Update metrics while span is active
|
|
76
|
+
trace.update(metrics={"first_token_ms": 150, "prompt_tokens": 100})
|
|
77
|
+
|
|
78
|
+
# Verify metrics were set on the root span
|
|
79
|
+
assert trace.root_span is not None
|
|
80
|
+
assert trace.root_span.metrics is not None
|
|
81
|
+
assert trace.root_span.metrics["first_token_ms"] == 150
|
|
82
|
+
assert trace.root_span.metrics["prompt_tokens"] == 100
|
|
83
|
+
|
|
84
|
+
# Update again with different values
|
|
85
|
+
trace.update(metrics={"first_token_ms": 200, "completion_tokens": 50})
|
|
86
|
+
|
|
87
|
+
# Verify the metrics were updated (merged, not replaced)
|
|
88
|
+
assert trace.root_span.metrics["first_token_ms"] == 200 # Updated
|
|
89
|
+
assert trace.root_span.metrics["prompt_tokens"] == 100 # Preserved
|
|
90
|
+
assert trace.root_span.metrics["completion_tokens"] == 50 # Added
|
|
@@ -2862,7 +2862,7 @@ wheels = [
|
|
|
2862
2862
|
|
|
2863
2863
|
[[package]]
|
|
2864
2864
|
name = "langwatch"
|
|
2865
|
-
version = "0.
|
|
2865
|
+
version = "0.5.1"
|
|
2866
2866
|
source = { editable = "." }
|
|
2867
2867
|
dependencies = [
|
|
2868
2868
|
{ name = "attrs" },
|
|
@@ -3002,8 +3002,7 @@ examples = [
|
|
|
3002
3002
|
{ name = "pydantic", specifier = ">=1,<2.10.2" },
|
|
3003
3003
|
{ name = "pytest", specifier = ">=7.4.2,<8.0.0" },
|
|
3004
3004
|
{ name = "python-dotenv", specifier = "==1.0.1" },
|
|
3005
|
-
{ name = "strands-agents", specifier = ">=1.
|
|
3006
|
-
{ name = "strands-agents", extras = ["otel"], specifier = ">=1.0.0,<2.0.0" },
|
|
3005
|
+
{ name = "strands-agents", extras = ["otel"], specifier = ">=1.9.0,<2.0.0" },
|
|
3007
3006
|
{ name = "streamlit", specifier = ">=1.37.1,<2.0.0" },
|
|
3008
3007
|
{ name = "unstructured", extras = ["pdf"], specifier = ">=0.18.3" },
|
|
3009
3008
|
{ name = "uvicorn", specifier = ">=0.25.0,<0.26.0" },
|
|
@@ -6274,7 +6273,7 @@ wheels = [
|
|
|
6274
6273
|
|
|
6275
6274
|
[[package]]
|
|
6276
6275
|
name = "strands-agents"
|
|
6277
|
-
version = "1.
|
|
6276
|
+
version = "1.9.0"
|
|
6278
6277
|
source = { registry = "https://pypi.org/simple" }
|
|
6279
6278
|
dependencies = [
|
|
6280
6279
|
{ name = "boto3" },
|
|
@@ -6288,9 +6287,9 @@ dependencies = [
|
|
|
6288
6287
|
{ name = "typing-extensions" },
|
|
6289
6288
|
{ name = "watchdog" },
|
|
6290
6289
|
]
|
|
6291
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
6290
|
+
sdist = { url = "https://files.pythonhosted.org/packages/40/e0/65952b5c8767b62e9e5b4da1df8203bbaaa1e0d8753b5bc0a35674e0d607/strands_agents-1.9.0.tar.gz", hash = "sha256:84610b855bc79236ce822626b852c6f5a3c1a1de63592445a704a4f8a7249695", size = 394868, upload-time = "2025-09-17T19:13:01.751Z" }
|
|
6292
6291
|
wheels = [
|
|
6293
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
6292
|
+
{ url = "https://files.pythonhosted.org/packages/64/af/dec0c4c71eeafb07fdbf24f74f2d0e7a6796931a3a192e19d0ed0e9bb106/strands_agents-1.9.0-py3-none-any.whl", hash = "sha256:a7a7c51d71278ee6daf7d47089456abc6de3a62e7cd433c08031a97c6b2e59f3", size = 205328, upload-time = "2025-09-17T19:13:00.22Z" },
|
|
6294
6293
|
]
|
|
6295
6294
|
|
|
6296
6295
|
[package.optional-dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/exporters/filterable_batch_span_exporter.py
RENAMED
|
File without changes
|
{langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/client.py
RENAMED
|
File without changes
|
{langwatch-0.4.1 → langwatch-0.5.1}/src/langwatch/generated/langwatch_rest_api_client/errors.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|