langwatch 0.10.0__tar.gz → 0.10.2__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.10.0 → langwatch-0.10.2}/AGENTS.md +1 -1
- {langwatch-0.10.0 → langwatch-0.10.2}/CHANGELOG.md +32 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/PKG-INFO +1 -1
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/README.md +1 -1
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/offline_evaluation.ipynb +25 -14
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_rag.py +1 -1
- {langwatch-0.10.0 → langwatch-0.10.2}/pyproject.toml +1 -1
- langwatch-0.10.2/src/langwatch/__version__.py +3 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/client.py +16 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/domain/__init__.py +3 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/dspy/__init__.py +67 -34
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/experiment/experiment.py +122 -14
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/litellm.py +7 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/openai.py +61 -34
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/local_loader.py +12 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/prompt_facade.py +10 -3
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/types.py +5 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/initialization.py +12 -2
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/utils.py +3 -1
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/test_with_target.py +136 -4
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_local_loader.py +73 -0
- langwatch-0.10.2/tests/prompts/test_prompts_path_config.py +139 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/uv.lock +1 -1
- langwatch-0.10.0/src/langwatch/__version__.py +0 -3
- {langwatch-0.10.0 → langwatch-0.10.2}/.editorconfig +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/.env.example +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/.gitignore +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/Makefile +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/README.md +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/azure_openai_stream_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/cli/README.md +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/cli/guaranteed_availability_with_cli.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/custom_evaluation_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/data/rag_dspy_bot.json +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/dataset_kitchen_sink.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/distributed_tracing.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/documentation/openai_langwatch.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/documentation/openai_openinference.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/dspy_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/dspy_visualization.ipynb +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/evaluation_manual_call.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/fastapi_app.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_async_streaming.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_exception.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_image.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_rag.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_rag_expected_output.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_rag_multithreaded.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_span_context_manager.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_span_low_level.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_streaming.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_sync_function.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_update_metadata_later.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/guardrails.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/guardrails_parallel.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/guardrails_without_tracing.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/haystack_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_bot_with_memory.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_rag_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_rag_bot_vertex_ai.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_rag_bot_with_threads.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/langgraph_rag_bot_with_threads.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/langwatch_docs_rag_evaluation.ipynb +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/litellm_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_disable_trace.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_function_call.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_max_string_length.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_max_string_length_none.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_otel_metrics.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_sampling_rate.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/openinference/google_adk.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_dspy_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_haystack.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_langchain_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_openai_assistants_api_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_openai_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openllmetry_anthropic_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openllmetry_crewai_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openllmetry_langchain_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openllmetry_openai_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/traditional_instrumentation_fastapi_app.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/pdf_parsing_evaluation.ipynb +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/prompt_cli/.gitignore +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/prompt_cli/main.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/prompt_cli/prompts/agent/performance.prompt.yaml +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/prompt_management_fastapi.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/sanity/setup_example.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/span_evaluation.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/strands_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/streamlit_openai_assistants_api_bot.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/test_utils/run_cli.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_dspy_visualization.ipynb +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/.gitignore +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/Weaviate-Import.ipynb +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/docker-compose.yml +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/optimization_screenshot.png +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/tracing_screenshot.png +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/specs/evaluation/with_target.feature +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/specs/prompts/fetch-policy.feature +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/attributes.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/batch_evaluation.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/dataset/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/evaluation/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/evaluations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/experiment/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/experiment/platform_run.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/exporters/filterable_batch_span_exporter.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_annotations_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_prompts_by_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_scenario_events.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations_trace_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_dataset_by_slug_or_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts_by_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts_by_id_versions.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_trace_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_index.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/patch_api_annotations_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_annotations_trace_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_dataset_by_slug_entries.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_prompts.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_prompts_by_id_sync.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_scenario_events.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_trace_id_share.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_trace_id_unshare.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_index.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/put_api_prompts_by_id.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/traces/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/traces/post_api_trace_search.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/client.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/errors.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/annotation.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/dataset_post_entries.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/dataset_post_entries_entries_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_annotations_id_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_404.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/error.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/evaluation.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/evaluation_timestamps.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_404.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations_inline_records.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_inputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_messages_item_role.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_outputs_item_json_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_outputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_404.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_response_format.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_404.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations_inline_records.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_inputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_messages_item_role.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_outputs_item_json_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_outputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_error_type_0.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_evaluations_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_evaluations_item_error.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_evaluations_item_timestamps.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_input.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_metadata.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_metrics.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_output.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_error_type_0.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_input.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_input_value_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_metrics.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_output.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_output_value_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_params.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_timestamps.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_timestamps.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_messages_item_role.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0_json_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/input_.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/metadata.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/metrics.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/output.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/pagination.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/patch_api_annotations_id_body.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/patch_api_annotations_id_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_annotations_trace_id_body.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_inputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_messages_item_role.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_outputs_item_json_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_outputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_schema_version.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_response_format.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_action.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_response_format.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations_inline_records.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_inputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_messages_item_role.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_outputs_item_json_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_outputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_409.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_0.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_0_metadata.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1_results_type_0.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1_results_type_0_verdict.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1_status.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_2.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_2_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_201.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_trace_id_share_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_trace_id_unshare_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_inputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_messages_item_role.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item_json_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_messages_item_role.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0_json_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0_json_schema_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_inputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_messages_item_role.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_outputs_item_json_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_outputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_schema_version.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations_inline_records.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_inputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_inputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_messages_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_messages_item_role.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_outputs_item.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_outputs_item_json_schema.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_outputs_item_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/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.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format_type.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_scope.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_400.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_401.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_404.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_409.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_422.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_500.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/search_request.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/search_request_filters.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/search_response.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/timestamps.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/trace.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/py.typed +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/types.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/guardrails.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/langchain.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/login.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/decorators/prompt_service_tracing.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/decorators/prompt_tracing.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/errors.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/prompt.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/prompt_api_service.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/types/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/types/fetch_policy.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/types/prompt_data.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/types/structures.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/py.typed +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/state.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/__tests__/test_tracing.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/context.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/sampling.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/span.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/tracing.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/types.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/tracer.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/capture.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/exceptions.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/module.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/transformation.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/conftest.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/e2e/test_fetch_policies_e2e.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/e2e/test_platform_experiment_e2e.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/evaluation/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/evaluation/test_evaluate.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/test_target_registration.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/test_target_trace_isolation.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/test_with_target_integration.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/exporters/test_filterable_batch_span_exporter.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/README.md +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/__init__.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/get_response_factories.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/prompts/cli.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/prompts/general.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/prompts/prompt_fixtures.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/span_exporter.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_fetch_policies.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_guaranteed_availability.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_prompt.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_prompt_service_tracing.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_prompt_tracing.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/telemetry/test_context.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/telemetry/test_tracing.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_cli_runner.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_client.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_examples.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_login.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_version.py +0 -0
- {langwatch-0.10.0 → langwatch-0.10.2}/tests/utils/test_transformation.py +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|-------------|------------------|
|
|
5
5
|
| Writing E2E tests mixed with unit tests | Keep E2E tests isolated in `tests/e2e/` directory with `@pytest.mark.e2e`. E2E tests verify real API behavior with external services, while examples serve as user demonstrations. |
|
|
6
6
|
| Repeating happy paths in integration/unit tests | Do not duplicate E2E/example coverage in integrations or units. Focus integration tests on edge/error cases, and unit tests on pure logic. |
|
|
7
|
-
| Failing to follow [
|
|
7
|
+
| Failing to follow [TESTING_PHILOSOPHY.md](../docs/TESTING_PHILOSOPHY.md) hierarchy | Always start with a `.feature` file, drive from E2E tests in `tests/e2e/`, then add integration tests in `tests/` and unit tests as outlined. Examples in `examples/` serve as user demonstrations. |
|
|
8
8
|
| Using `pip` or `python` directly for installing, running, or testing | Always use [`uv`](https://github.com/astral-sh/uv) for all dependency installation, package management, and test running. Do not use `pip` commands or `python -m pip`, prefer `uv` equivalents throughout documentation, scripts, and workflows. |
|
|
9
9
|
|
|
10
10
|
## Testing Structure
|
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.10.2](https://github.com/langwatch/langwatch/compare/python-sdk@v0.10.1...python-sdk@v0.10.2) (2026-02-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* tests, handle wildcard (*) in spans and metadata trace mappings and allow log_response() without explicit target context ([#1291](https://github.com/langwatch/langwatch/issues/1291)) ([af5d77f](https://github.com/langwatch/langwatch/commit/af5d77fade37ea9ca157965e7d1ac8e4e73f2dcf))
|
|
9
|
+
|
|
10
|
+
## [1.0.0](https://github.com/langwatch/langwatch/compare/python-sdk@v0.10.0...python-sdk@v1.0.0) (2026-02-01)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### ⚠ BREAKING CHANGES
|
|
14
|
+
|
|
15
|
+
* Monitors now store evaluation level explicitly in 'level' column
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **evaluations-v3:** major table performance improvements, prompts to experiment button and other bugfixes ([#1181](https://github.com/langwatch/langwatch/issues/1181)) ([2cbf430](https://github.com/langwatch/langwatch/commit/2cbf4303f670edcd65a81f3af4d7a00a85b13010))
|
|
20
|
+
* new online evaluations and guardrails setup ([#1151](https://github.com/langwatch/langwatch/issues/1151)) ([7c8a804](https://github.com/langwatch/langwatch/commit/7c8a804e265946a9a96e44b110f17266abaafc73))
|
|
21
|
+
* **python-sdk:** add prompts_path configuration to setup() ([#1271](https://github.com/langwatch/langwatch/issues/1271)) ([49cfa7c](https://github.com/langwatch/langwatch/commit/49cfa7c30335a6fd007fbaa156f272f2419af11a))
|
|
22
|
+
* **traces:** add reasoning tokens and effort support for LLM models ([16f1d4a](https://github.com/langwatch/langwatch/commit/16f1d4a80f1425d85c5f700da01287a2415bdd88))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **dspy:** capture full message output including reasoning_content ([8257cae](https://github.com/langwatch/langwatch/commit/8257cae1b9a4dbe8be8e7001fa88d7a0e3de6653))
|
|
28
|
+
* **python-sdk:** resolve prompt path at sdk setup ([#1272](https://github.com/langwatch/langwatch/issues/1272)) ([4daf6d0](https://github.com/langwatch/langwatch/commit/4daf6d023a7ac5bd2b519c0e34173298d1569ea2))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Documentation
|
|
32
|
+
|
|
33
|
+
* move TESTING.md to docs/TESTING_PHILOSOPHY.md ([#1157](https://github.com/langwatch/langwatch/issues/1157)) ([c475c86](https://github.com/langwatch/langwatch/commit/c475c8692f461dc737a082ca687db101a74be9fb))
|
|
34
|
+
|
|
3
35
|
## [0.10.0](https://github.com/langwatch/langwatch/compare/python-sdk@v0.9.0...python-sdk@v0.10.0) (2026-01-21)
|
|
4
36
|
|
|
5
37
|
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
"cell_type": "code",
|
|
15
|
-
"execution_count":
|
|
15
|
+
"execution_count": 1,
|
|
16
16
|
"id": "e4b3c5de",
|
|
17
17
|
"metadata": {},
|
|
18
18
|
"outputs": [
|
|
@@ -20,7 +20,9 @@
|
|
|
20
20
|
"name": "stdout",
|
|
21
21
|
"output_type": "stream",
|
|
22
22
|
"text": [
|
|
23
|
-
"
|
|
23
|
+
"Please go to https://app.langwatch.ai/authorize to get your API key\n",
|
|
24
|
+
"2026-01-23 11:42:12,538 - langwatch.client - INFO - Registering atexit handler to flush tracer provider on exit\n",
|
|
25
|
+
"LangWatch API key set\n"
|
|
24
26
|
]
|
|
25
27
|
}
|
|
26
28
|
],
|
|
@@ -32,22 +34,32 @@
|
|
|
32
34
|
},
|
|
33
35
|
{
|
|
34
36
|
"cell_type": "code",
|
|
35
|
-
"execution_count":
|
|
37
|
+
"execution_count": null,
|
|
36
38
|
"id": "6f664279",
|
|
37
39
|
"metadata": {},
|
|
38
40
|
"outputs": [
|
|
39
41
|
{
|
|
40
|
-
"name": "
|
|
42
|
+
"name": "stderr",
|
|
41
43
|
"output_type": "stream",
|
|
42
44
|
"text": [
|
|
43
|
-
"
|
|
45
|
+
"/Users/rchaves/Projects/langwatch-saas/langwatch/langwatch_nlp/.venv/lib/python3.12/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
|
|
46
|
+
" from .autonotebook import tqdm as notebook_tqdm\n",
|
|
47
|
+
"/var/folders/rp/9_s_f3kd1ssb089myww_p9zw0000gn/T/ipykernel_50410/1400491103.py:38: DeprecationWarning: langwatch.evaluation.init() is deprecated, use langwatch.experiment.init() instead\n",
|
|
48
|
+
" evaluation = langwatch.evaluation.init(\"my-incredible-experiment\")\n"
|
|
44
49
|
]
|
|
45
50
|
},
|
|
46
51
|
{
|
|
47
52
|
"name": "stdout",
|
|
48
53
|
"output_type": "stream",
|
|
49
54
|
"text": [
|
|
50
|
-
"
|
|
55
|
+
"Follow the results at: https://app.langwatch.ai/new-new-project-NmkKqM/experiments/my-incredible-experiment?runId=vague-gentle-pudu\n"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "stderr",
|
|
60
|
+
"output_type": "stream",
|
|
61
|
+
"text": [
|
|
62
|
+
"Evaluating: 100%|██████████| 7/7 [00:23<00:00, 3.32s/it]\n"
|
|
51
63
|
]
|
|
52
64
|
}
|
|
53
65
|
],
|
|
@@ -89,7 +101,7 @@
|
|
|
89
101
|
" ]\n",
|
|
90
102
|
")\n",
|
|
91
103
|
"\n",
|
|
92
|
-
"evaluation = langwatch.
|
|
104
|
+
"evaluation = langwatch.evaluation.init(\"my-incredible-experiment\")\n",
|
|
93
105
|
"\n",
|
|
94
106
|
"\n",
|
|
95
107
|
"@langwatch.trace()\n",
|
|
@@ -102,7 +114,7 @@
|
|
|
102
114
|
" result = agent(row[\"question\"]) # your code\n",
|
|
103
115
|
"\n",
|
|
104
116
|
" score = random.randint(0, 80) / 100 + 0.2\n",
|
|
105
|
-
" evaluation.log(\"sample_metric\", index=index, score=score, passed=score > 0.5)"
|
|
117
|
+
" evaluation.log(\"sample_metric\", index=index, data={\"foo\": \"bar\", \"bar\": \"baz\", \"output\": \"test\"}, score=score, passed=score > 0.5)"
|
|
106
118
|
]
|
|
107
119
|
},
|
|
108
120
|
{
|
|
@@ -115,7 +127,7 @@
|
|
|
115
127
|
},
|
|
116
128
|
{
|
|
117
129
|
"cell_type": "code",
|
|
118
|
-
"execution_count":
|
|
130
|
+
"execution_count": 4,
|
|
119
131
|
"id": "8fd7b230",
|
|
120
132
|
"metadata": {},
|
|
121
133
|
"outputs": [
|
|
@@ -123,16 +135,15 @@
|
|
|
123
135
|
"name": "stdout",
|
|
124
136
|
"output_type": "stream",
|
|
125
137
|
"text": [
|
|
126
|
-
"2026-01-
|
|
127
|
-
"
|
|
128
|
-
"Follow the results at: http://localhost:5560/inbox-narrator/experiments/my-incredible-experiment?runId=prophetic-uakari-of-satiation\n"
|
|
138
|
+
"2026-01-23 08:19:23,104 - langwatch.client - WARNING - An existing global tracer provider was found. Attaching LangWatch exporter to the existing provider. Set `ignore_global_tracer_provider_override_warning=True` to suppress this warning.\n",
|
|
139
|
+
"Follow the results at: https://app.langwatch.ai/new-customer-project-22KFDW/experiments/my-incredible-experiment?runId=intelligent-pristine-auk\n"
|
|
129
140
|
]
|
|
130
141
|
},
|
|
131
142
|
{
|
|
132
|
-
"name": "
|
|
143
|
+
"name": "stderr",
|
|
133
144
|
"output_type": "stream",
|
|
134
145
|
"text": [
|
|
135
|
-
"Evaluating: 100%|██████████| 7/7 [00:
|
|
146
|
+
"Evaluating: 100%|██████████| 7/7 [00:11<00:00, 1.59s/it]\n"
|
|
136
147
|
]
|
|
137
148
|
}
|
|
138
149
|
],
|
|
@@ -45,7 +45,7 @@ def rag_retrieval(query: str):
|
|
|
45
45
|
async def main(message: cl.Message):
|
|
46
46
|
langwatch.get_current_trace().autotrack_openai_calls(client)
|
|
47
47
|
langwatch.get_current_trace().update(
|
|
48
|
-
metadata={"labels": ["openai", "rag"]},
|
|
48
|
+
metadata={"labels": ["openai", "rag"], "thread_id": "my-test-thread"},
|
|
49
49
|
)
|
|
50
50
|
|
|
51
51
|
msg = cl.Message(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "langwatch"
|
|
3
|
-
version = "0.10.
|
|
3
|
+
version = "0.10.2" # 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"
|
|
@@ -50,6 +50,7 @@ class Client(LangWatchClientProtocol):
|
|
|
50
50
|
_registered_instrumentors: ClassVar[
|
|
51
51
|
dict[opentelemetry.trace.TracerProvider, set[BaseInstrumentor]]
|
|
52
52
|
] = {}
|
|
53
|
+
_prompts_path: ClassVar[Optional[str]] = None
|
|
53
54
|
|
|
54
55
|
# Regular attributes for protocol compatibility
|
|
55
56
|
base_attributes: BaseAttributes
|
|
@@ -69,6 +70,7 @@ class Client(LangWatchClientProtocol):
|
|
|
69
70
|
span_exclude_rules: Optional[List[SpanProcessingExcludeRule]] = None,
|
|
70
71
|
ignore_global_tracer_provider_override_warning: Optional[bool] = None,
|
|
71
72
|
skip_open_telemetry_setup: Optional[bool] = None,
|
|
73
|
+
prompts_path: Optional[str] = None,
|
|
72
74
|
) -> "Client":
|
|
73
75
|
"""Ensure only one instance of Client exists (singleton pattern)."""
|
|
74
76
|
if cls._instance is None:
|
|
@@ -88,6 +90,7 @@ class Client(LangWatchClientProtocol):
|
|
|
88
90
|
span_exclude_rules: Optional[List[SpanProcessingExcludeRule]] = None,
|
|
89
91
|
ignore_global_tracer_provider_override_warning: Optional[bool] = None,
|
|
90
92
|
skip_open_telemetry_setup: Optional[bool] = None,
|
|
93
|
+
prompts_path: Optional[str] = None,
|
|
91
94
|
):
|
|
92
95
|
"""
|
|
93
96
|
Initialize the LangWatch tracing client.
|
|
@@ -140,6 +143,8 @@ class Client(LangWatchClientProtocol):
|
|
|
140
143
|
)
|
|
141
144
|
if skip_open_telemetry_setup is not None:
|
|
142
145
|
Client._skip_open_telemetry_setup = skip_open_telemetry_setup
|
|
146
|
+
if prompts_path is not None:
|
|
147
|
+
Client._prompts_path = prompts_path
|
|
143
148
|
if base_attributes is not None:
|
|
144
149
|
Client._base_attributes = base_attributes
|
|
145
150
|
# Ensure required SDK attributes remain present after reconfiguration
|
|
@@ -215,6 +220,9 @@ class Client(LangWatchClientProtocol):
|
|
|
215
220
|
if skip_open_telemetry_setup is not None:
|
|
216
221
|
Client._skip_open_telemetry_setup = skip_open_telemetry_setup
|
|
217
222
|
|
|
223
|
+
if prompts_path is not None:
|
|
224
|
+
Client._prompts_path = prompts_path
|
|
225
|
+
|
|
218
226
|
if base_attributes is not None:
|
|
219
227
|
Client._base_attributes = base_attributes
|
|
220
228
|
elif not Client._base_attributes:
|
|
@@ -284,6 +292,7 @@ class Client(LangWatchClientProtocol):
|
|
|
284
292
|
span_exclude_rules: Optional[List[SpanProcessingExcludeRule]] = None,
|
|
285
293
|
ignore_global_tracer_provider_override_warning: Optional[bool] = None,
|
|
286
294
|
skip_open_telemetry_setup: Optional[bool] = None,
|
|
295
|
+
prompts_path: Optional[str] = None,
|
|
287
296
|
) -> "Client":
|
|
288
297
|
"""Create or get the singleton instance of the LangWatch client. Internal use only."""
|
|
289
298
|
if cls._instance is None:
|
|
@@ -299,6 +308,7 @@ class Client(LangWatchClientProtocol):
|
|
|
299
308
|
span_exclude_rules=span_exclude_rules,
|
|
300
309
|
ignore_global_tracer_provider_override_warning=ignore_global_tracer_provider_override_warning,
|
|
301
310
|
skip_open_telemetry_setup=skip_open_telemetry_setup,
|
|
311
|
+
prompts_path=prompts_path,
|
|
302
312
|
)
|
|
303
313
|
return cls._instance
|
|
304
314
|
|
|
@@ -327,6 +337,7 @@ class Client(LangWatchClientProtocol):
|
|
|
327
337
|
cls._skip_open_telemetry_setup = False
|
|
328
338
|
cls._tracer_provider = None
|
|
329
339
|
cls._rest_api_client = None
|
|
340
|
+
cls._prompts_path = None
|
|
330
341
|
cls._registered_instrumentors.clear()
|
|
331
342
|
|
|
332
343
|
@classmethod
|
|
@@ -416,6 +427,11 @@ class Client(LangWatchClientProtocol):
|
|
|
416
427
|
"""Get whether OpenTelemetry setup is skipped."""
|
|
417
428
|
return Client._skip_open_telemetry_setup
|
|
418
429
|
|
|
430
|
+
@property
|
|
431
|
+
def prompts_path(self) -> Optional[str]:
|
|
432
|
+
"""Get the base path for local prompt files."""
|
|
433
|
+
return Client._prompts_path
|
|
434
|
+
|
|
419
435
|
@disable_sending.setter
|
|
420
436
|
def disable_sending(self, value: bool) -> None:
|
|
421
437
|
"""Set whether sending is disabled. Spans are still created; the exporter conditionally drops them."""
|
|
@@ -43,6 +43,7 @@ class ChatMessage(TypedDict, total=False):
|
|
|
43
43
|
tool_calls: Optional[List[ToolCall]]
|
|
44
44
|
tool_call_id: Optional[str]
|
|
45
45
|
name: Optional[str]
|
|
46
|
+
reasoning_content: Optional[str]
|
|
46
47
|
|
|
47
48
|
|
|
48
49
|
class TypedValueChatMessages(TypedDict):
|
|
@@ -156,6 +157,7 @@ SpanTypes = Literal[
|
|
|
156
157
|
class SpanMetrics(TypedDict, total=False):
|
|
157
158
|
prompt_tokens: Optional[int]
|
|
158
159
|
completion_tokens: Optional[int]
|
|
160
|
+
reasoning_tokens: Optional[int]
|
|
159
161
|
cost: Optional[float]
|
|
160
162
|
first_token_ms: Optional[int]
|
|
161
163
|
|
|
@@ -179,6 +181,7 @@ class SpanParams(TypedDict, total=False):
|
|
|
179
181
|
functions: Optional[List[Dict[str, Any]]]
|
|
180
182
|
user: Optional[str]
|
|
181
183
|
response_format: Optional[Union[Dict[str, Any], BaseModel]]
|
|
184
|
+
reasoning_effort: Optional[str]
|
|
182
185
|
|
|
183
186
|
|
|
184
187
|
class BaseSpan(TypedDict):
|
|
@@ -6,7 +6,8 @@ import warnings
|
|
|
6
6
|
import dspy
|
|
7
7
|
from typing import Callable, List, Optional, Any, Type, Union
|
|
8
8
|
from langwatch.utils.exceptions import better_raise_for_status
|
|
9
|
-
from langwatch.utils.transformation import truncate_object_recursively
|
|
9
|
+
from langwatch.utils.transformation import SerializableWithStringFallback, truncate_object_recursively
|
|
10
|
+
from langwatch.utils.utils import safe_get
|
|
10
11
|
from langwatch.telemetry.tracing import LangWatchTrace
|
|
11
12
|
from typing_extensions import TypedDict
|
|
12
13
|
import langwatch
|
|
@@ -824,6 +825,7 @@ class DSPyTracer:
|
|
|
824
825
|
"functions",
|
|
825
826
|
"user",
|
|
826
827
|
"response_format",
|
|
828
|
+
"reasoning_effort",
|
|
827
829
|
]
|
|
828
830
|
for param in params:
|
|
829
831
|
if all_kwargs.get(param):
|
|
@@ -842,23 +844,44 @@ class DSPyTracer:
|
|
|
842
844
|
|
|
843
845
|
result = self.__class__.__original_call__(self, prompt, messages, **kwargs) # type: ignore
|
|
844
846
|
|
|
847
|
+
history = self.history[-1] if len(self.history) > 0 else None
|
|
848
|
+
|
|
845
849
|
if span:
|
|
846
|
-
|
|
850
|
+
# Capture full message from history (includes reasoning_content) instead of just result
|
|
851
|
+
choices = safe_get(history, "response", "choices")
|
|
852
|
+
|
|
853
|
+
if choices and len(choices) > 0:
|
|
854
|
+
messages_output = []
|
|
855
|
+
for choice in choices:
|
|
856
|
+
msg = safe_get(choice, "message")
|
|
857
|
+
if msg is not None:
|
|
858
|
+
# Convert Pydantic model to dict if needed
|
|
859
|
+
if hasattr(msg, "model_dump"):
|
|
860
|
+
msg = msg.model_dump(exclude_unset=True)
|
|
861
|
+
elif hasattr(msg, "dict"):
|
|
862
|
+
msg = msg.dict(exclude_unset=True)
|
|
863
|
+
messages_output.append(msg)
|
|
864
|
+
if messages_output:
|
|
865
|
+
span.update(output=messages_output)
|
|
866
|
+
else:
|
|
867
|
+
span.update(output=result)
|
|
868
|
+
else:
|
|
869
|
+
span.update(output=result)
|
|
847
870
|
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
"completion_tokens": history["usage"]["completion_tokens"],
|
|
859
|
-
"prompt_tokens": history["usage"]["prompt_tokens"],
|
|
860
|
-
}
|
|
871
|
+
completion_tokens = safe_get(history, "usage", "completion_tokens")
|
|
872
|
+
prompt_tokens = safe_get(history, "usage", "prompt_tokens")
|
|
873
|
+
if span and completion_tokens is not None and prompt_tokens is not None:
|
|
874
|
+
metrics = {
|
|
875
|
+
"completion_tokens": completion_tokens,
|
|
876
|
+
"prompt_tokens": prompt_tokens,
|
|
877
|
+
}
|
|
878
|
+
# Capture reasoning_tokens if available
|
|
879
|
+
reasoning_tokens = safe_get(
|
|
880
|
+
history, "usage", "completion_tokens_details", "reasoning_tokens"
|
|
861
881
|
)
|
|
882
|
+
if reasoning_tokens is not None:
|
|
883
|
+
metrics["reasoning_tokens"] = reasoning_tokens
|
|
884
|
+
span.update(metrics=metrics)
|
|
862
885
|
|
|
863
886
|
return result
|
|
864
887
|
|
|
@@ -884,26 +907,36 @@ class DSPyTracer:
|
|
|
884
907
|
|
|
885
908
|
result = self.__class__.__original_basic_request__(self, prompt, **kwargs) # type: ignore
|
|
886
909
|
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
910
|
+
# Capture full messages from choices (includes reasoning_content)
|
|
911
|
+
choices = safe_get(result, "choices")
|
|
912
|
+
if span and choices and len(choices) > 0:
|
|
913
|
+
messages_output = []
|
|
914
|
+
for choice in choices:
|
|
915
|
+
msg = safe_get(choice, "message")
|
|
916
|
+
if msg is not None:
|
|
917
|
+
# Convert Pydantic model to dict if needed
|
|
918
|
+
if hasattr(msg, "model_dump"):
|
|
919
|
+
msg = msg.model_dump(exclude_unset=True)
|
|
920
|
+
elif hasattr(msg, "dict"):
|
|
921
|
+
msg = msg.dict(exclude_unset=True)
|
|
922
|
+
messages_output.append(msg)
|
|
923
|
+
if messages_output:
|
|
924
|
+
span.update(output=messages_output)
|
|
925
|
+
|
|
926
|
+
completion_tokens = safe_get(result, "usage", "completion_tokens")
|
|
927
|
+
prompt_tokens = safe_get(result, "usage", "prompt_tokens")
|
|
928
|
+
if span and completion_tokens is not None and prompt_tokens is not None:
|
|
929
|
+
metrics = {
|
|
930
|
+
"completion_tokens": completion_tokens,
|
|
931
|
+
"prompt_tokens": prompt_tokens,
|
|
932
|
+
}
|
|
933
|
+
# Capture reasoning_tokens if available
|
|
934
|
+
reasoning_tokens = safe_get(
|
|
935
|
+
result, "usage", "completion_tokens_details", "reasoning_tokens"
|
|
906
936
|
)
|
|
937
|
+
if reasoning_tokens is not None:
|
|
938
|
+
metrics["reasoning_tokens"] = reasoning_tokens
|
|
939
|
+
span.update(metrics=metrics)
|
|
907
940
|
|
|
908
941
|
return result
|
|
909
942
|
|
|
@@ -302,6 +302,10 @@ class Experiment:
|
|
|
302
302
|
iter_ctx = IterationContext(index=index, item=item)
|
|
303
303
|
iter_token = _iteration_context.set(iter_ctx)
|
|
304
304
|
|
|
305
|
+
# Reset target context at the start of each iteration to prevent pollution
|
|
306
|
+
# from previous iterations (especially important for implicit Output targets)
|
|
307
|
+
_target_context.set(None)
|
|
308
|
+
|
|
305
309
|
# Determine if we should create an iteration trace:
|
|
306
310
|
# - Don't create if evaluation uses targets (each target creates its own trace)
|
|
307
311
|
# - Don't create if we're collecting submit() calls (not in_thread yet)
|
|
@@ -340,6 +344,8 @@ class Experiment:
|
|
|
340
344
|
finally:
|
|
341
345
|
# Reset iteration context
|
|
342
346
|
_iteration_context.reset(iter_token)
|
|
347
|
+
# Reset target context to prevent pollution to next iteration
|
|
348
|
+
_target_context.set(None)
|
|
343
349
|
|
|
344
350
|
# Handle iteration trace cleanup
|
|
345
351
|
# Note: If target() was used, it may have already closed the trace
|
|
@@ -715,9 +721,10 @@ class Experiment:
|
|
|
715
721
|
"""
|
|
716
722
|
Log the model's response/output for the current target.
|
|
717
723
|
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
724
|
+
Can be called inside a `target()` context, or outside of one. When called
|
|
725
|
+
outside a target context, an implicit "Output" target is created automatically.
|
|
726
|
+
The response will be stored in the dataset entry's `predicted` field, which
|
|
727
|
+
is displayed in the results table.
|
|
721
728
|
|
|
722
729
|
Args:
|
|
723
730
|
response: The model's output. Can be a string (will be wrapped as
|
|
@@ -725,30 +732,131 @@ class Experiment:
|
|
|
725
732
|
|
|
726
733
|
Example:
|
|
727
734
|
```python
|
|
735
|
+
# With explicit target
|
|
728
736
|
with evaluation.target("gpt-4", {"model": "openai/gpt-4"}):
|
|
729
737
|
response = call_gpt4(row["question"])
|
|
730
738
|
evaluation.log_response(response) # Store the output
|
|
731
739
|
evaluation.log("quality", index=index, score=0.95) # Log metrics
|
|
732
|
-
```
|
|
733
740
|
|
|
734
|
-
|
|
735
|
-
|
|
741
|
+
# Without explicit target (creates implicit "Output" target)
|
|
742
|
+
for index, row in evaluation.loop(df.iterrows()):
|
|
743
|
+
response = my_model(row["question"])
|
|
744
|
+
evaluation.log_response(response) # Creates "Output" target
|
|
745
|
+
evaluation.log("quality", index=index, score=0.95)
|
|
746
|
+
```
|
|
736
747
|
"""
|
|
737
748
|
ctx = _target_context.get()
|
|
738
|
-
if ctx is None:
|
|
739
|
-
raise RuntimeError(
|
|
740
|
-
"log_response() must be called inside a target() context. "
|
|
741
|
-
"Example: with evaluation.target('my-target'): evaluation.log_response(response)"
|
|
742
|
-
)
|
|
743
749
|
|
|
744
750
|
# Normalize response to dict format
|
|
745
751
|
if isinstance(response, str):
|
|
746
|
-
|
|
752
|
+
predicted = {"output": response}
|
|
747
753
|
elif isinstance(response, dict):
|
|
748
|
-
|
|
754
|
+
predicted = response
|
|
749
755
|
else:
|
|
750
756
|
# Try to convert to string for other types
|
|
751
|
-
|
|
757
|
+
predicted = {"output": str(response)}
|
|
758
|
+
|
|
759
|
+
if ctx is None:
|
|
760
|
+
# Create implicit "Output" target and dataset entry immediately
|
|
761
|
+
self._create_implicit_output_target(predicted)
|
|
762
|
+
else:
|
|
763
|
+
# Inside explicit target context - just set predicted
|
|
764
|
+
ctx.predicted = predicted
|
|
765
|
+
|
|
766
|
+
def _create_implicit_output_target(self, predicted: Dict[str, Any]) -> None:
|
|
767
|
+
"""
|
|
768
|
+
Create an implicit "Output" target when log_response() is called outside
|
|
769
|
+
a target() context. This enables a simpler API for single-target evaluations.
|
|
770
|
+
|
|
771
|
+
Creates the dataset entry immediately with the predicted response.
|
|
772
|
+
"""
|
|
773
|
+
target_name = "Output"
|
|
774
|
+
|
|
775
|
+
# Mark that targets are being used
|
|
776
|
+
if not self._evaluation_uses_targets:
|
|
777
|
+
self._evaluation_uses_targets = True
|
|
778
|
+
# Close the active iteration trace if any
|
|
779
|
+
if self._active_iteration_trace is not None:
|
|
780
|
+
self._active_iteration_trace.__exit__(None, None, None)
|
|
781
|
+
self._active_iteration_trace = None
|
|
782
|
+
|
|
783
|
+
self._current_iteration_used_with_target = True
|
|
784
|
+
|
|
785
|
+
# Register the target
|
|
786
|
+
self._register_target(target_name, None)
|
|
787
|
+
|
|
788
|
+
# Get index and item from iteration context
|
|
789
|
+
iter_ctx = _iteration_context.get()
|
|
790
|
+
if iter_ctx is not None:
|
|
791
|
+
index = iter_ctx.index
|
|
792
|
+
current_item = iter_ctx.item
|
|
793
|
+
else:
|
|
794
|
+
index = self._current_index
|
|
795
|
+
current_item = self._current_item
|
|
796
|
+
|
|
797
|
+
# Create a trace for this implicit target
|
|
798
|
+
tracer = trace.get_tracer("langwatch-evaluation")
|
|
799
|
+
root_context = otel_context.Context()
|
|
800
|
+
|
|
801
|
+
# Start span and get trace_id
|
|
802
|
+
with tracer.start_span(
|
|
803
|
+
f"evaluation.target.{target_name}",
|
|
804
|
+
context=root_context,
|
|
805
|
+
attributes={
|
|
806
|
+
"evaluation.run_id": self.run_id,
|
|
807
|
+
"evaluation.index": index,
|
|
808
|
+
"evaluation.target": target_name,
|
|
809
|
+
},
|
|
810
|
+
) as span:
|
|
811
|
+
span_context = span.get_span_context()
|
|
812
|
+
trace_id = format(span_context.trace_id, "032x")
|
|
813
|
+
|
|
814
|
+
# Create and set target context (for subsequent log() calls)
|
|
815
|
+
ctx = TargetContext(
|
|
816
|
+
target_id=target_name,
|
|
817
|
+
index=index,
|
|
818
|
+
trace_id=trace_id,
|
|
819
|
+
predicted=predicted,
|
|
820
|
+
)
|
|
821
|
+
_target_context.set(ctx)
|
|
822
|
+
|
|
823
|
+
# Create dataset entry immediately
|
|
824
|
+
entry_data: Any = (
|
|
825
|
+
current_item.to_dict()
|
|
826
|
+
if hasattr(current_item, "to_dict")
|
|
827
|
+
else (
|
|
828
|
+
current_item.__dict__
|
|
829
|
+
if hasattr(current_item, "__dict__")
|
|
830
|
+
else (
|
|
831
|
+
current_item[1].to_dict()
|
|
832
|
+
if type(current_item) == tuple
|
|
833
|
+
and hasattr(current_item[1], "to_dict")
|
|
834
|
+
else (
|
|
835
|
+
current_item[1].__dict__
|
|
836
|
+
if type(current_item) == tuple
|
|
837
|
+
and hasattr(current_item[1], "__dict__")
|
|
838
|
+
else {
|
|
839
|
+
"entry": json.dumps(
|
|
840
|
+
current_item, cls=SerializableWithStringFallback
|
|
841
|
+
)
|
|
842
|
+
}
|
|
843
|
+
)
|
|
844
|
+
)
|
|
845
|
+
)
|
|
846
|
+
)
|
|
847
|
+
|
|
848
|
+
batch_entry = BatchEntry(
|
|
849
|
+
index=index,
|
|
850
|
+
entry=entry_data,
|
|
851
|
+
duration=0, # Duration not tracked for implicit targets
|
|
852
|
+
error=None,
|
|
853
|
+
trace_id=trace_id,
|
|
854
|
+
target_id=target_name,
|
|
855
|
+
predicted=predicted,
|
|
856
|
+
)
|
|
857
|
+
|
|
858
|
+
with self.lock:
|
|
859
|
+
self.batch["dataset"].append(batch_entry)
|
|
752
860
|
|
|
753
861
|
def log(
|
|
754
862
|
self,
|
|
@@ -246,6 +246,9 @@ class LiteLLMPatch:
|
|
|
246
246
|
SpanMetrics(
|
|
247
247
|
prompt_tokens=safe_get(usage, "prompt_tokens"),
|
|
248
248
|
completion_tokens=safe_get(usage, "completion_tokens"),
|
|
249
|
+
reasoning_tokens=safe_get(
|
|
250
|
+
usage, "completion_tokens_details", "reasoning_tokens"
|
|
251
|
+
),
|
|
249
252
|
)
|
|
250
253
|
if usage
|
|
251
254
|
else SpanMetrics()
|
|
@@ -281,6 +284,9 @@ class LiteLLMPatch:
|
|
|
281
284
|
metrics=SpanMetrics(
|
|
282
285
|
prompt_tokens=safe_get(response, "usage", "prompt_tokens"),
|
|
283
286
|
completion_tokens=safe_get(response, "usage", "completion_tokens"),
|
|
287
|
+
reasoning_tokens=safe_get(
|
|
288
|
+
response, "usage", "completion_tokens_details", "reasoning_tokens"
|
|
289
|
+
),
|
|
284
290
|
),
|
|
285
291
|
timestamps=timestamps,
|
|
286
292
|
**kwargs,
|
|
@@ -338,6 +344,7 @@ class LiteLLMPatch:
|
|
|
338
344
|
"functions",
|
|
339
345
|
"user",
|
|
340
346
|
"response_format",
|
|
347
|
+
"reasoning_effort",
|
|
341
348
|
]
|
|
342
349
|
for param in params:
|
|
343
350
|
if kwargs.get(param):
|