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.
Files changed (540) hide show
  1. {langwatch-0.10.0 → langwatch-0.10.2}/AGENTS.md +1 -1
  2. {langwatch-0.10.0 → langwatch-0.10.2}/CHANGELOG.md +32 -0
  3. {langwatch-0.10.0 → langwatch-0.10.2}/PKG-INFO +1 -1
  4. {langwatch-0.10.0 → langwatch-0.10.2}/examples/README.md +1 -1
  5. {langwatch-0.10.0 → langwatch-0.10.2}/examples/offline_evaluation.ipynb +25 -14
  6. {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_rag.py +1 -1
  7. {langwatch-0.10.0 → langwatch-0.10.2}/pyproject.toml +1 -1
  8. langwatch-0.10.2/src/langwatch/__version__.py +3 -0
  9. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/client.py +16 -0
  10. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/domain/__init__.py +3 -0
  11. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/dspy/__init__.py +67 -34
  12. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/experiment/experiment.py +122 -14
  13. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/litellm.py +7 -0
  14. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/openai.py +61 -34
  15. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/local_loader.py +12 -0
  16. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/prompt_facade.py +10 -3
  17. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/types.py +5 -0
  18. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/initialization.py +12 -2
  19. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/utils.py +3 -1
  20. {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/test_with_target.py +136 -4
  21. {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_local_loader.py +73 -0
  22. langwatch-0.10.2/tests/prompts/test_prompts_path_config.py +139 -0
  23. {langwatch-0.10.0 → langwatch-0.10.2}/uv.lock +1 -1
  24. langwatch-0.10.0/src/langwatch/__version__.py +0 -3
  25. {langwatch-0.10.0 → langwatch-0.10.2}/.editorconfig +0 -0
  26. {langwatch-0.10.0 → langwatch-0.10.2}/.env.example +0 -0
  27. {langwatch-0.10.0 → langwatch-0.10.2}/.gitignore +0 -0
  28. {langwatch-0.10.0 → langwatch-0.10.2}/Makefile +0 -0
  29. {langwatch-0.10.0 → langwatch-0.10.2}/README.md +0 -0
  30. {langwatch-0.10.0 → langwatch-0.10.2}/examples/__init__.py +0 -0
  31. {langwatch-0.10.0 → langwatch-0.10.2}/examples/azure_openai_stream_bot.py +0 -0
  32. {langwatch-0.10.0 → langwatch-0.10.2}/examples/cli/README.md +0 -0
  33. {langwatch-0.10.0 → langwatch-0.10.2}/examples/cli/guaranteed_availability_with_cli.py +0 -0
  34. {langwatch-0.10.0 → langwatch-0.10.2}/examples/custom_evaluation_bot.py +0 -0
  35. {langwatch-0.10.0 → langwatch-0.10.2}/examples/data/rag_dspy_bot.json +0 -0
  36. {langwatch-0.10.0 → langwatch-0.10.2}/examples/dataset_kitchen_sink.py +0 -0
  37. {langwatch-0.10.0 → langwatch-0.10.2}/examples/distributed_tracing.py +0 -0
  38. {langwatch-0.10.0 → langwatch-0.10.2}/examples/documentation/openai_langwatch.py +0 -0
  39. {langwatch-0.10.0 → langwatch-0.10.2}/examples/documentation/openai_openinference.py +0 -0
  40. {langwatch-0.10.0 → langwatch-0.10.2}/examples/dspy_bot.py +0 -0
  41. {langwatch-0.10.0 → langwatch-0.10.2}/examples/dspy_visualization.ipynb +0 -0
  42. {langwatch-0.10.0 → langwatch-0.10.2}/examples/evaluation_manual_call.py +0 -0
  43. {langwatch-0.10.0 → langwatch-0.10.2}/examples/fastapi_app.py +0 -0
  44. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot.py +0 -0
  45. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_async_streaming.py +0 -0
  46. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_exception.py +0 -0
  47. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_image.py +0 -0
  48. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_rag.py +0 -0
  49. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_rag_expected_output.py +0 -0
  50. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_rag_multithreaded.py +0 -0
  51. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_span_context_manager.py +0 -0
  52. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_span_low_level.py +0 -0
  53. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_streaming.py +0 -0
  54. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_sync_function.py +0 -0
  55. {langwatch-0.10.0 → langwatch-0.10.2}/examples/generic_bot_update_metadata_later.py +0 -0
  56. {langwatch-0.10.0 → langwatch-0.10.2}/examples/guardrails.py +0 -0
  57. {langwatch-0.10.0 → langwatch-0.10.2}/examples/guardrails_parallel.py +0 -0
  58. {langwatch-0.10.0 → langwatch-0.10.2}/examples/guardrails_without_tracing.py +0 -0
  59. {langwatch-0.10.0 → langwatch-0.10.2}/examples/haystack_bot.py +0 -0
  60. {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_bot.py +0 -0
  61. {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_bot_with_memory.py +0 -0
  62. {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_rag_bot.py +0 -0
  63. {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_rag_bot_vertex_ai.py +0 -0
  64. {langwatch-0.10.0 → langwatch-0.10.2}/examples/langchain_rag_bot_with_threads.py +0 -0
  65. {langwatch-0.10.0 → langwatch-0.10.2}/examples/langgraph_rag_bot_with_threads.py +0 -0
  66. {langwatch-0.10.0 → langwatch-0.10.2}/examples/langwatch_docs_rag_evaluation.ipynb +0 -0
  67. {langwatch-0.10.0 → langwatch-0.10.2}/examples/litellm_bot.py +0 -0
  68. {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot.py +0 -0
  69. {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_disable_trace.py +0 -0
  70. {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_function_call.py +0 -0
  71. {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_max_string_length.py +0 -0
  72. {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_max_string_length_none.py +0 -0
  73. {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_otel_metrics.py +0 -0
  74. {langwatch-0.10.0 → langwatch-0.10.2}/examples/openai_bot_sampling_rate.py +0 -0
  75. {langwatch-0.10.0 → langwatch-0.10.2}/examples/openinference/google_adk.py +0 -0
  76. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_dspy_bot.py +0 -0
  77. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_haystack.py +0 -0
  78. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_langchain_bot.py +0 -0
  79. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_openai_assistants_api_bot.py +0 -0
  80. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openinference_openai_bot.py +0 -0
  81. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openllmetry_anthropic_bot.py +0 -0
  82. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openllmetry_crewai_bot.py +0 -0
  83. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openllmetry_langchain_bot.py +0 -0
  84. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/openllmetry_openai_bot.py +0 -0
  85. {langwatch-0.10.0 → langwatch-0.10.2}/examples/opentelemetry/traditional_instrumentation_fastapi_app.py +0 -0
  86. {langwatch-0.10.0 → langwatch-0.10.2}/examples/pdf_parsing_evaluation.ipynb +0 -0
  87. {langwatch-0.10.0 → langwatch-0.10.2}/examples/prompt_cli/.gitignore +0 -0
  88. {langwatch-0.10.0 → langwatch-0.10.2}/examples/prompt_cli/main.py +0 -0
  89. {langwatch-0.10.0 → langwatch-0.10.2}/examples/prompt_cli/prompts/agent/performance.prompt.yaml +0 -0
  90. {langwatch-0.10.0 → langwatch-0.10.2}/examples/prompt_management_fastapi.py +0 -0
  91. {langwatch-0.10.0 → langwatch-0.10.2}/examples/sanity/setup_example.py +0 -0
  92. {langwatch-0.10.0 → langwatch-0.10.2}/examples/span_evaluation.py +0 -0
  93. {langwatch-0.10.0 → langwatch-0.10.2}/examples/strands_bot.py +0 -0
  94. {langwatch-0.10.0 → langwatch-0.10.2}/examples/streamlit_openai_assistants_api_bot.py +0 -0
  95. {langwatch-0.10.0 → langwatch-0.10.2}/examples/test_utils/run_cli.py +0 -0
  96. {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_dspy_visualization.ipynb +0 -0
  97. {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/.gitignore +0 -0
  98. {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/Weaviate-Import.ipynb +0 -0
  99. {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/docker-compose.yml +0 -0
  100. {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/optimization_screenshot.png +0 -0
  101. {langwatch-0.10.0 → langwatch-0.10.2}/examples/weaviate_setup/tracing_screenshot.png +0 -0
  102. {langwatch-0.10.0 → langwatch-0.10.2}/specs/evaluation/with_target.feature +0 -0
  103. {langwatch-0.10.0 → langwatch-0.10.2}/specs/prompts/fetch-policy.feature +0 -0
  104. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/__init__.py +0 -0
  105. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/attributes.py +0 -0
  106. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/batch_evaluation.py +0 -0
  107. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/dataset/__init__.py +0 -0
  108. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/evaluation/__init__.py +0 -0
  109. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/evaluations.py +0 -0
  110. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/experiment/__init__.py +0 -0
  111. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/experiment/platform_run.py +0 -0
  112. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/exporters/filterable_batch_span_exporter.py +0 -0
  113. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/__init__.py +0 -0
  114. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/__init__.py +0 -0
  115. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/__init__.py +0 -0
  116. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_annotations_id.py +0 -0
  117. {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
  118. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_scenario_events.py +0 -0
  119. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations.py +0 -0
  120. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations_id.py +0 -0
  121. {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
  122. {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
  123. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts.py +0 -0
  124. {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
  125. {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
  126. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_trace_id.py +0 -0
  127. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_index.py +0 -0
  128. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/patch_api_annotations_id.py +0 -0
  129. {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
  130. {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
  131. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_prompts.py +0 -0
  132. {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
  133. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_scenario_events.py +0 -0
  134. {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
  135. {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
  136. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_index.py +0 -0
  137. {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
  138. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/traces/__init__.py +0 -0
  139. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/api/traces/post_api_trace_search.py +0 -0
  140. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/client.py +0 -0
  141. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/errors.py +0 -0
  142. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/__init__.py +0 -0
  143. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/annotation.py +0 -0
  144. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/dataset_post_entries.py +0 -0
  145. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/dataset_post_entries_entries_item.py +0 -0
  146. {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
  147. {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
  148. {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
  149. {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
  150. {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
  151. {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
  152. {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
  153. {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
  154. {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
  155. {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
  156. {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
  157. {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
  158. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/error.py +0 -0
  159. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/evaluation.py +0 -0
  160. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/evaluation_timestamps.py +0 -0
  161. {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
  162. {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
  163. {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
  164. {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
  165. {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
  166. {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
  167. {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
  168. {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
  169. {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
  170. {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
  171. {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
  172. {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
  173. {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
  174. {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
  175. {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
  176. {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
  177. {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
  178. {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
  179. {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
  180. {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
  181. {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
  182. {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
  183. {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
  184. {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
  185. {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
  186. {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
  187. {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
  188. {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
  189. {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
  190. {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
  191. {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
  192. {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
  193. {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
  194. {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
  195. {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
  196. {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
  197. {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
  198. {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
  199. {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
  200. {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
  201. {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
  202. {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
  203. {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
  204. {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
  205. {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
  206. {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
  207. {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
  208. {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
  209. {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
  210. {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
  211. {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
  212. {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
  213. {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
  214. {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
  215. {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
  216. {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
  217. {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
  218. {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
  219. {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
  220. {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
  221. {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
  222. {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
  223. {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
  224. {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
  225. {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
  226. {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
  227. {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
  228. {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
  229. {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
  230. {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
  231. {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
  232. {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
  233. {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
  234. {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
  235. {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
  236. {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
  237. {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
  238. {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
  239. {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
  240. {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
  241. {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
  242. {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
  243. {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
  244. {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
  245. {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
  246. {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
  247. {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
  248. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_400.py +0 -0
  249. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_401.py +0 -0
  250. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_422.py +0 -0
  251. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_500.py +0 -0
  252. {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
  253. {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
  254. {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
  255. {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
  256. {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
  257. {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
  258. {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
  259. {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
  260. {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
  261. {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
  262. {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
  263. {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
  264. {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
  265. {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
  266. {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
  267. {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
  268. {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
  269. {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
  270. {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
  271. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item.py +0 -0
  272. {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
  273. {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
  274. {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
  275. {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
  276. {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
  277. {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
  278. {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
  279. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_400.py +0 -0
  280. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_401.py +0 -0
  281. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_500.py +0 -0
  282. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/input_.py +0 -0
  283. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/metadata.py +0 -0
  284. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/metrics.py +0 -0
  285. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/output.py +0 -0
  286. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/pagination.py +0 -0
  287. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/patch_api_annotations_id_body.py +0 -0
  288. {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
  289. {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
  290. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body.py +0 -0
  291. {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
  292. {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
  293. {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
  294. {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
  295. {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
  296. {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
  297. {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
  298. {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
  299. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_scope.py +0 -0
  300. {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
  301. {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
  302. {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
  303. {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
  304. {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
  305. {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
  306. {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
  307. {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
  308. {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
  309. {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
  310. {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
  311. {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
  312. {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
  313. {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
  314. {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
  315. {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
  316. {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
  317. {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
  318. {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
  319. {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
  320. {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
  321. {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
  322. {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
  323. {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
  324. {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
  325. {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
  326. {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
  327. {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
  328. {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
  329. {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
  330. {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
  331. {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
  332. {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
  333. {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
  334. {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
  335. {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
  336. {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
  337. {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
  338. {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
  339. {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
  340. {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
  341. {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
  342. {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
  343. {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
  344. {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
  345. {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
  346. {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
  347. {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
  348. {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
  349. {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
  350. {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
  351. {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
  352. {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
  353. {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
  354. {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
  355. {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
  356. {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
  357. {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
  358. {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
  359. {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
  360. {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
  361. {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
  362. {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
  363. {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
  364. {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
  365. {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
  366. {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
  367. {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
  368. {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
  369. {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
  370. {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
  371. {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
  372. {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
  373. {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
  374. {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
  375. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200.py +0 -0
  376. {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
  377. {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
  378. {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
  379. {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
  380. {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
  381. {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
  382. {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
  383. {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
  384. {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
  385. {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
  386. {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
  387. {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
  388. {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
  389. {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
  390. {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
  391. {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
  392. {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
  393. {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
  394. {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
  395. {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
  396. {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
  397. {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
  398. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_400.py +0 -0
  399. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_401.py +0 -0
  400. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_409.py +0 -0
  401. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_422.py +0 -0
  402. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_500.py +0 -0
  403. {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
  404. {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
  405. {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
  406. {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
  407. {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
  408. {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
  409. {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
  410. {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
  411. {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
  412. {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
  413. {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
  414. {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
  415. {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
  416. {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
  417. {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
  418. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body.py +0 -0
  419. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_inputs_item.py +0 -0
  420. {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
  421. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_messages_item.py +0 -0
  422. {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
  423. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item.py +0 -0
  424. {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
  425. {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
  426. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_scope.py +0 -0
  427. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200.py +0 -0
  428. {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
  429. {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
  430. {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
  431. {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
  432. {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
  433. {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
  434. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_scope.py +0 -0
  435. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_400.py +0 -0
  436. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_401.py +0 -0
  437. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_500.py +0 -0
  438. {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
  439. {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
  440. {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
  441. {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
  442. {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
  443. {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
  444. {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
  445. {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
  446. {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
  447. {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
  448. {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
  449. {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
  450. {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
  451. {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
  452. {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
  453. {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
  454. {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
  455. {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
  456. {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
  457. {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
  458. {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
  459. {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
  460. {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
  461. {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
  462. {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
  463. {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
  464. {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
  465. {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
  466. {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
  467. {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
  468. {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
  469. {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
  470. {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
  471. {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
  472. {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
  473. {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
  474. {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
  475. {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
  476. {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
  477. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/search_request.py +0 -0
  478. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/search_request_filters.py +0 -0
  479. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/search_response.py +0 -0
  480. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/timestamps.py +0 -0
  481. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/models/trace.py +0 -0
  482. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/py.typed +0 -0
  483. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/generated/langwatch_rest_api_client/types.py +0 -0
  484. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/guardrails.py +0 -0
  485. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/langchain.py +0 -0
  486. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/login.py +0 -0
  487. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/__init__.py +0 -0
  488. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/decorators/prompt_service_tracing.py +0 -0
  489. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/decorators/prompt_tracing.py +0 -0
  490. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/errors.py +0 -0
  491. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/prompt.py +0 -0
  492. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/prompt_api_service.py +0 -0
  493. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/types/__init__.py +0 -0
  494. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/types/fetch_policy.py +0 -0
  495. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/types/prompt_data.py +0 -0
  496. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/prompts/types/structures.py +0 -0
  497. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/py.typed +0 -0
  498. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/state.py +0 -0
  499. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/__tests__/test_tracing.py +0 -0
  500. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/context.py +0 -0
  501. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/sampling.py +0 -0
  502. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/span.py +0 -0
  503. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/tracing.py +0 -0
  504. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/telemetry/types.py +0 -0
  505. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/tracer.py +0 -0
  506. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/__init__.py +0 -0
  507. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/capture.py +0 -0
  508. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/exceptions.py +0 -0
  509. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/module.py +0 -0
  510. {langwatch-0.10.0 → langwatch-0.10.2}/src/langwatch/utils/transformation.py +0 -0
  511. {langwatch-0.10.0 → langwatch-0.10.2}/tests/conftest.py +0 -0
  512. {langwatch-0.10.0 → langwatch-0.10.2}/tests/e2e/test_fetch_policies_e2e.py +0 -0
  513. {langwatch-0.10.0 → langwatch-0.10.2}/tests/e2e/test_platform_experiment_e2e.py +0 -0
  514. {langwatch-0.10.0 → langwatch-0.10.2}/tests/evaluation/__init__.py +0 -0
  515. {langwatch-0.10.0 → langwatch-0.10.2}/tests/evaluation/test_evaluate.py +0 -0
  516. {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/__init__.py +0 -0
  517. {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/test_target_registration.py +0 -0
  518. {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/test_target_trace_isolation.py +0 -0
  519. {langwatch-0.10.0 → langwatch-0.10.2}/tests/experiment/test_with_target_integration.py +0 -0
  520. {langwatch-0.10.0 → langwatch-0.10.2}/tests/exporters/test_filterable_batch_span_exporter.py +0 -0
  521. {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/README.md +0 -0
  522. {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/__init__.py +0 -0
  523. {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/get_response_factories.py +0 -0
  524. {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/prompts/cli.py +0 -0
  525. {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/prompts/general.py +0 -0
  526. {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/prompts/prompt_fixtures.py +0 -0
  527. {langwatch-0.10.0 → langwatch-0.10.2}/tests/fixtures/span_exporter.py +0 -0
  528. {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_fetch_policies.py +0 -0
  529. {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_guaranteed_availability.py +0 -0
  530. {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_prompt.py +0 -0
  531. {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_prompt_service_tracing.py +0 -0
  532. {langwatch-0.10.0 → langwatch-0.10.2}/tests/prompts/test_prompt_tracing.py +0 -0
  533. {langwatch-0.10.0 → langwatch-0.10.2}/tests/telemetry/test_context.py +0 -0
  534. {langwatch-0.10.0 → langwatch-0.10.2}/tests/telemetry/test_tracing.py +0 -0
  535. {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_cli_runner.py +0 -0
  536. {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_client.py +0 -0
  537. {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_examples.py +0 -0
  538. {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_login.py +0 -0
  539. {langwatch-0.10.0 → langwatch-0.10.2}/tests/test_version.py +0 -0
  540. {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 [TESTING.md](../TESTING.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. |
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langwatch
3
- Version: 0.10.0
3
+ Version: 0.10.2
4
4
  Summary: LangWatch Python SDK, for monitoring your LLMs
5
5
  Author-email: Langwatch Engineers <engineering@langwatch.ai>
6
6
  License: MIT
@@ -163,5 +163,5 @@ When adding new examples:
163
163
  ## 🔗 Related Documentation
164
164
 
165
165
  - [Main SDK Documentation](../README.md)
166
- - [Testing Guidelines](../TESTING.md)
166
+ - [Testing Guidelines](../../docs/TESTING_PHILOSOPHY.md)
167
167
  - [Agent Guidelines](../AGENTS.md)
@@ -12,7 +12,7 @@
12
12
  },
13
13
  {
14
14
  "cell_type": "code",
15
- "execution_count": null,
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
- "LangWatch API key is already set, if you want to login again, please call as langwatch.login(relogin=True)\n"
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": 3,
37
+ "execution_count": null,
36
38
  "id": "6f664279",
37
39
  "metadata": {},
38
40
  "outputs": [
39
41
  {
40
- "name": "stdout",
42
+ "name": "stderr",
41
43
  "output_type": "stream",
42
44
  "text": [
43
- "Follow the results at: http://localhost:5560/inbox-narrator/experiments/my-incredible-experiment?runId=eggplant-trout-of-painting\n"
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
- "Evaluating: 100%|██████████| 7/7 [00:42<00:00, 6.05s/it]\n"
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.experiment.init(\"my-incredible-experiment\")\n",
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": null,
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-15 12:44:09,318 - 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",
127
- "2026-01-15 12:44:09,320 - langwatch.client - INFO - Configuring OTLP exporter with endpoint: http://localhost:5560/api/otel/v1/traces\n",
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": "stdout",
143
+ "name": "stderr",
133
144
  "output_type": "stream",
134
145
  "text": [
135
- "Evaluating: 100%|██████████| 7/7 [00:13<00:00, 1.91s/it]\n"
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.0" # remember to also update it in src/langwatch/__version__.py
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"
@@ -0,0 +1,3 @@
1
+ """Version information for LangWatch."""
2
+
3
+ __version__ = "0.10.2" # x-release-please-version
@@ -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
- span.update(output=result)
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
- history = self.history[-1] if len(self.history) > 0 else None
849
- if (
850
- history
851
- and "usage" in history
852
- and "completion_tokens" in history["usage"]
853
- and "prompt_tokens" in history["usage"]
854
- and span
855
- ):
856
- span.update(
857
- metrics={
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
- if (
888
- span
889
- and "choices" in result
890
- and len(result["choices"]) == 1
891
- and "message" in result["choices"][0]
892
- ):
893
- span.update(output=[result["choices"][0]["message"]])
894
-
895
- if (
896
- span
897
- and "usage" in result
898
- and "completion_tokens" in result["usage"]
899
- and "prompt_tokens" in result["usage"]
900
- ):
901
- span.update(
902
- metrics={
903
- "completion_tokens": result["usage"]["completion_tokens"],
904
- "prompt_tokens": result["usage"]["prompt_tokens"],
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
- Must be called inside a `target()` context. The response will be stored
719
- in the dataset entry's `predicted` field, which is displayed in the
720
- results table.
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
- Raises:
735
- RuntimeError: If called outside of a target() context.
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
- ctx.predicted = {"output": response}
752
+ predicted = {"output": response}
747
753
  elif isinstance(response, dict):
748
- ctx.predicted = response
754
+ predicted = response
749
755
  else:
750
756
  # Try to convert to string for other types
751
- ctx.predicted = {"output": str(response)}
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):