langwatch 0.6.1__tar.gz → 0.7.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {langwatch-0.6.1 → langwatch-0.7.1}/CHANGELOG.md +19 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/Makefile +2 -1
- {langwatch-0.6.1 → langwatch-0.7.1}/PKG-INFO +2 -1
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/langchain_bot.py +3 -5
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/langchain_bot_with_memory.py +19 -21
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/langchain_rag_bot.py +18 -31
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/langchain_rag_bot_vertex_ai.py +18 -31
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/langchain_rag_bot_with_threads.py +18 -31
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/langgraph_rag_bot_with_threads.py +3 -7
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/langwatch_docs_rag_evaluation.ipynb +2 -2
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/openinference_langchain_bot.py +4 -9
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/openllmetry_langchain_bot.py +3 -7
- langwatch-0.7.1/examples/prompt_cli/.gitignore +1 -0
- langwatch-0.7.1/examples/prompt_cli/main.py +13 -0
- langwatch-0.7.1/examples/prompt_cli/prompts/agent/performance.prompt.yaml +18 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/pyproject.toml +9 -8
- langwatch-0.7.1/src/langwatch/__version__.py +3 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/langchain.py +5 -7
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/prompt_facade.py +4 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/fixtures/prompts/general.py +2 -1
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/prompts/test_guaranteed_availability.py +32 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/test_examples.py +4 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/uv.lock +203 -123
- langwatch-0.6.1/src/langwatch/__version__.py +0 -3
- {langwatch-0.6.1 → langwatch-0.7.1}/.editorconfig +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/.env.example +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/.gitignore +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/README.md +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/azure_openai_stream_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/cli/README.md +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/cli/guaranteed_availability_with_cli.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/custom_evaluation_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/data/rag_dspy_bot.json +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/dataset_kitchen_sink.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/distributed_tracing.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/documentation/openai_langwatch.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/documentation/openai_openinference.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/dspy_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/dspy_visualization.ipynb +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/evaluation_manual_call.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/fastapi_app.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_async_streaming.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_exception.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_rag.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_rag_expected_output.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_rag_multithreaded.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_span_context_manager.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_span_low_level.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_streaming.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_sync_function.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/generic_bot_update_metadata_later.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/guardrails.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/guardrails_parallel.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/guardrails_without_tracing.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/haystack_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/litellm_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/offline_evaluation.ipynb +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/openai_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/openai_bot_disable_trace.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/openai_bot_function_call.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/openai_bot_max_string_length.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/openai_bot_max_string_length_none.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/openai_bot_otel_metrics.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/openai_bot_rag.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/openai_bot_sampling_rate.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/openinference/google_adk.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/openinference_dspy_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/openinference_haystack.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/openinference_openai_assistants_api_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/openinference_openai_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/openllmetry_anthropic_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/openllmetry_crewai_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/openllmetry_openai_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/opentelemetry/traditional_instrumentation_fastapi_app.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/pdf_parsing_evaluation.ipynb +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/prompt_management_fastapi.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/sanity/setup_example.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/span_evaluation.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/strands_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/streamlit_openai_assistants_api_bot.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/weaviate_dspy_visualization.ipynb +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/weaviate_setup/.gitignore +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/weaviate_setup/Weaviate-Import.ipynb +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/weaviate_setup/docker-compose.yml +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/weaviate_setup/optimization_screenshot.png +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/examples/weaviate_setup/tracing_screenshot.png +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/attributes.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/batch_evaluation.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/client.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/dataset/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/domain/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/dspy/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/evaluation/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/evaluation/evaluation.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/evaluations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/exporters/filterable_batch_span_exporter.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_annotations_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_prompts_by_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/delete_api_scenario_events.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_annotations_trace_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_dataset_by_slug_or_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts_by_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_prompts_by_id_versions.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_api_trace_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/get_index.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/patch_api_annotations_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_annotations_trace_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_dataset_by_slug_entries.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_prompts.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_prompts_by_id_sync.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_scenario_events.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_trace_id_share.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_api_trace_id_unshare.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/post_index.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/default/put_api_prompts_by_id.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/traces/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/api/traces/post_api_trace_search.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/client.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/errors.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/annotation.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/dataset_post_entries.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/dataset_post_entries_entries_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_annotations_id_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_404.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_prompts_by_id_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/delete_api_scenario_events_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/error.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/evaluation.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/evaluation_timestamps.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_200_data_item_entry.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_404.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_dataset_by_slug_or_id_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_prompting_technique_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_response_format_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_200_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_404.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_prompting_technique_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_response_format.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_response_format_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_200_item_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_404.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_by_id_versions_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_prompting_technique_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_response_format_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_200_item_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_prompts_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_error_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_evaluations_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_evaluations_item_error.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_evaluations_item_timestamps.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_input.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_metadata.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_metrics.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_output.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_error_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_input.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_input_value_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_metrics.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_output.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_output_value_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_params.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_spans_item_timestamps.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_api_trace_id_response_200_timestamps.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0_json_schema_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_response_format_type_0_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_200_item_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/get_index_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/input_.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/metadata.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/metrics.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/output.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/pagination.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/patch_api_annotations_id_body.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/patch_api_annotations_id_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_annotations_trace_id_body.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_schema_version.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_body_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_prompting_technique_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_response_format.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_body_config_data_response_format_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_action.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_prompting_technique_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_response_format.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_conflict_info_remote_config_data_response_format_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_prompting_technique_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_response_format.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_response_format_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_200_prompt_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_by_id_sync_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_prompting_technique_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_response_format_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_200_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_409.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_prompts_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_0_metadata.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1_results_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1_results_type_0_verdict.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_1_status.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_2.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_body_type_2_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_201.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_scenario_events_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_trace_id_share_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_api_trace_id_unshare_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_body_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0_json_schema_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_response_format_type_0_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_200_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/post_index_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_schema_version.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_body_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_inputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_inputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_messages_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_messages_item_role.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_outputs_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_outputs_item_json_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_outputs_item_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline_column_types_item.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_demonstrations_inline_records.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_prompting_technique_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format_json_schema_type_0.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format_json_schema_type_0_schema.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_response_format_type.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_200_scope.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_400.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_401.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_404.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_409.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_422.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/put_api_prompts_by_id_response_500.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/search_request.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/search_request_filters.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/search_response.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/timestamps.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/models/trace.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/py.typed +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/generated/langwatch_rest_api_client/types.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/guardrails.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/litellm.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/login.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/openai.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/decorators/prompt_service_tracing.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/decorators/prompt_tracing.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/errors.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/local_loader.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/prompt.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/prompt_api_service.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/types/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/types/prompt_data.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/types/structures.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/prompts/types.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/py.typed +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/state.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/telemetry/__tests__/test_tracing.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/telemetry/context.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/telemetry/sampling.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/telemetry/span.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/telemetry/tracing.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/telemetry/types.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/tracer.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/types.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/utils/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/utils/capture.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/utils/exceptions.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/utils/initialization.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/utils/module.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/utils/transformation.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/src/langwatch/utils/utils.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/conftest.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/exporters/test_filterable_batch_span_exporter.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/fixtures/README.md +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/fixtures/__init__.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/fixtures/get_response_factories.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/fixtures/prompts/cli.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/fixtures/prompts/prompt_fixtures.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/fixtures/span_exporter.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/prompts/test_local_loader.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/prompts/test_prompt.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/prompts/test_prompt_service_tracing.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/prompts/test_prompt_tracing.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/telemetry/test_context.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/telemetry/test_tracing.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/test_cli_runner.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/test_client.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/test_login.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/test_version.py +0 -0
- {langwatch-0.6.1 → langwatch-0.7.1}/tests/utils/test_transformation.py +0 -0
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.1](https://github.com/langwatch/langwatch/compare/python-sdk@v0.7.0...python-sdk@v0.7.1) (2025-11-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **prompts:** make prompts.get throw error instead of returning null/undefined ([#867](https://github.com/langwatch/langwatch/issues/867)) ([9705201](https://github.com/langwatch/langwatch/commit/97052015061f40fc63069c78bb1e702cbf12fa29))
|
|
9
|
+
|
|
10
|
+
## [0.7.0](https://github.com/langwatch/langwatch/compare/python-sdk@v0.6.1...python-sdk@v0.7.0) (2025-11-05)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* support langchain/langgraph 1.0.0 in python sdk ([#780](https://github.com/langwatch/langwatch/issues/780)) ([70d4814](https://github.com/langwatch/langwatch/commit/70d4814528465d8e58d1ab4f82849ea13d6f564d))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* parsing of Long values comming from Strands, add support for gen_ai.server.time_to_first_token ([c060766](https://github.com/langwatch/langwatch/commit/c060766fa093a6c6a881244267c1ed9929c9246b))
|
|
21
|
+
|
|
3
22
|
## [0.6.1](https://github.com/langwatch/langwatch/compare/python-sdk@v0.6.0...python-sdk@v0.6.1) (2025-10-31)
|
|
4
23
|
|
|
5
24
|
|
|
@@ -15,7 +15,8 @@ test-tracing:
|
|
|
15
15
|
@LANGWATCH_API_KEY="testkey" PYTHONPATH=$$PYTHONPATH:. uv run pytest -s -vv tests/telemetry/test_tracing.py
|
|
16
16
|
|
|
17
17
|
# Test bot/chatbot examples (excludes CLI examples)
|
|
18
|
-
test-examples
|
|
18
|
+
# Call it with `make test-examples -- -k examples/openai_bot.py` to run a specific example
|
|
19
|
+
test-examples:
|
|
19
20
|
PYTHONPATH=$$PYTHONPATH:. uv run pytest tests/test_examples.py -p no:warnings -s -x $(filter-out $@,$(MAKECMDGOALS))
|
|
20
21
|
|
|
21
22
|
# Test CLI examples separately (they don't need mock messages)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langwatch
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: LangWatch Python SDK, for monitoring your LLMs
|
|
5
5
|
Author-email: Langwatch Engineers <engineering@langwatch.ai>
|
|
6
6
|
License: MIT
|
|
@@ -19,6 +19,7 @@ Requires-Dist: attrs>=24
|
|
|
19
19
|
Requires-Dist: coolname>=2.2.0
|
|
20
20
|
Requires-Dist: deprecated>=1.2.18
|
|
21
21
|
Requires-Dist: httpx>=0.27.0
|
|
22
|
+
Requires-Dist: langchain-core<2.0.0,>=1.0.0
|
|
22
23
|
Requires-Dist: nanoid<3.0.0,>=2.0.0
|
|
23
24
|
Requires-Dist: openinference-instrumentation-haystack>=0.1.20
|
|
24
25
|
Requires-Dist: openinference-instrumentation-langchain>=0.1.24
|
|
@@ -4,10 +4,9 @@ from langchain_openai import ChatOpenAI
|
|
|
4
4
|
load_dotenv()
|
|
5
5
|
|
|
6
6
|
import chainlit as cl
|
|
7
|
-
from
|
|
8
|
-
from
|
|
9
|
-
from
|
|
10
|
-
from langchain.schema.runnable.config import RunnableConfig
|
|
7
|
+
from langchain_core.prompts import ChatPromptTemplate
|
|
8
|
+
from langchain_core.output_parsers import StrOutputParser
|
|
9
|
+
from langchain_core.runnables import Runnable, RunnableConfig
|
|
11
10
|
|
|
12
11
|
import langwatch
|
|
13
12
|
|
|
@@ -43,7 +42,6 @@ async def main(message: cl.Message):
|
|
|
43
42
|
{"question": message.content},
|
|
44
43
|
config=RunnableConfig(
|
|
45
44
|
callbacks=[
|
|
46
|
-
cl.LangchainCallbackHandler(),
|
|
47
45
|
langwatch.get_current_trace().get_langchain_callback(),
|
|
48
46
|
]
|
|
49
47
|
),
|
|
@@ -4,29 +4,23 @@ from langchain_openai import ChatOpenAI
|
|
|
4
4
|
load_dotenv()
|
|
5
5
|
|
|
6
6
|
import chainlit as cl
|
|
7
|
-
from
|
|
8
|
-
from
|
|
9
|
-
from
|
|
10
|
-
from langchain.memory import ConversationBufferMemory
|
|
7
|
+
from langchain_core.prompts import ChatPromptTemplate, MessagesPlaceholder
|
|
8
|
+
from langchain_core.runnables import Runnable, RunnableConfig
|
|
9
|
+
from langchain_core.messages import HumanMessage, AIMessage
|
|
11
10
|
|
|
12
11
|
import langwatch
|
|
13
12
|
|
|
14
13
|
|
|
15
|
-
|
|
14
|
+
# Store message history per session
|
|
15
|
+
session_message_histories: dict = {}
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
@cl.on_chat_start
|
|
19
19
|
async def on_chat_start():
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
ingress = RunnableMap(
|
|
25
|
-
{
|
|
26
|
-
"input": lambda x: x["input"],
|
|
27
|
-
"chat_history": lambda x: memory.load_memory_variables(x)["chat_history"],
|
|
28
|
-
}
|
|
29
|
-
)
|
|
20
|
+
# Initialize message history for this session
|
|
21
|
+
session_id = cl.user_session.get("session_id", "default")
|
|
22
|
+
message_history = session_message_histories.setdefault(session_id, [])
|
|
23
|
+
|
|
30
24
|
prompt = ChatPromptTemplate.from_messages(
|
|
31
25
|
[
|
|
32
26
|
("system", "You are a helpful assistant."),
|
|
@@ -35,17 +29,20 @@ async def on_chat_start():
|
|
|
35
29
|
]
|
|
36
30
|
)
|
|
37
31
|
llm = ChatOpenAI(temperature=1, model="gpt-5", max_tokens=4096)
|
|
38
|
-
runnable =
|
|
32
|
+
runnable = prompt | llm
|
|
39
33
|
|
|
40
34
|
cl.user_session.set("runnable", runnable)
|
|
41
|
-
cl.user_session.set("
|
|
35
|
+
cl.user_session.set("session_id", session_id)
|
|
42
36
|
|
|
43
37
|
|
|
44
38
|
@cl.on_message
|
|
45
39
|
@langwatch.trace()
|
|
46
40
|
async def main(message: cl.Message):
|
|
47
41
|
runnable: Runnable = cl.user_session.get("runnable") # type: ignore
|
|
48
|
-
|
|
42
|
+
session_id = cl.user_session.get("session_id", "default")
|
|
43
|
+
|
|
44
|
+
# Get message history for this session
|
|
45
|
+
message_history = session_message_histories.get(session_id, [])
|
|
49
46
|
|
|
50
47
|
msg = cl.Message(content="")
|
|
51
48
|
|
|
@@ -54,16 +51,17 @@ async def main(message: cl.Message):
|
|
|
54
51
|
)
|
|
55
52
|
|
|
56
53
|
async for chunk in runnable.astream(
|
|
57
|
-
{"input": message.content},
|
|
54
|
+
{"input": message.content, "chat_history": message_history},
|
|
58
55
|
config=RunnableConfig(
|
|
59
56
|
callbacks=[
|
|
60
|
-
cl.LangchainCallbackHandler(),
|
|
61
57
|
langwatch.get_current_trace().get_langchain_callback(),
|
|
62
58
|
]
|
|
63
59
|
),
|
|
64
60
|
):
|
|
65
61
|
await msg.stream_token(chunk.content)
|
|
66
62
|
|
|
67
|
-
|
|
63
|
+
# Save the conversation to message history
|
|
64
|
+
message_history.append(HumanMessage(content=message.content))
|
|
65
|
+
message_history.append(AIMessage(content=msg.content))
|
|
68
66
|
|
|
69
67
|
await msg.send()
|
|
@@ -5,9 +5,9 @@ from langwatch.types import RAGChunk
|
|
|
5
5
|
load_dotenv()
|
|
6
6
|
|
|
7
7
|
import chainlit as cl
|
|
8
|
-
from
|
|
9
|
-
from
|
|
10
|
-
from langchain.
|
|
8
|
+
from langchain_core.messages import HumanMessage
|
|
9
|
+
from langchain_core.runnables import RunnableConfig
|
|
10
|
+
from langchain.agents import create_agent
|
|
11
11
|
|
|
12
12
|
import langwatch
|
|
13
13
|
|
|
@@ -15,9 +15,7 @@ from langchain_community.document_loaders import WebBaseLoader
|
|
|
15
15
|
from langchain_community.vectorstores.faiss import FAISS
|
|
16
16
|
from langchain_openai import ChatOpenAI, OpenAIEmbeddings
|
|
17
17
|
from langchain_text_splitters import RecursiveCharacterTextSplitter
|
|
18
|
-
from
|
|
19
|
-
from langchain.agents import AgentExecutor, create_tool_calling_agent
|
|
20
|
-
from langchain.tools import BaseTool, StructuredTool, tool
|
|
18
|
+
from langchain_core.tools import create_retriever_tool
|
|
21
19
|
|
|
22
20
|
loader = WebBaseLoader("https://docs.langwatch.ai")
|
|
23
21
|
docs = loader.load()
|
|
@@ -48,24 +46,19 @@ async def on_chat_start():
|
|
|
48
46
|
|
|
49
47
|
tools = [retriever_tool]
|
|
50
48
|
model = ChatOpenAI(model="gpt-5", streaming=True)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
),
|
|
57
|
-
("human", "{question}"),
|
|
58
|
-
]
|
|
49
|
+
|
|
50
|
+
agent = create_agent(
|
|
51
|
+
model=model,
|
|
52
|
+
tools=tools,
|
|
53
|
+
system_prompt="You are a helpful assistant that only reply in short tweet-like responses, using lots of emojis and use tools only once."
|
|
59
54
|
)
|
|
60
|
-
agent
|
|
61
|
-
executor = AgentExecutor(agent=agent, tools=tools, verbose=True) # type: ignore
|
|
62
|
-
cl.user_session.set("agent", executor)
|
|
55
|
+
cl.user_session.set("agent", agent)
|
|
63
56
|
|
|
64
57
|
|
|
65
58
|
@cl.on_message
|
|
66
59
|
@langwatch.trace()
|
|
67
60
|
async def main(message: cl.Message):
|
|
68
|
-
agent
|
|
61
|
+
agent = cl.user_session.get("agent") # type: ignore
|
|
69
62
|
|
|
70
63
|
msg = cl.Message(content="")
|
|
71
64
|
|
|
@@ -74,24 +67,18 @@ async def main(message: cl.Message):
|
|
|
74
67
|
)
|
|
75
68
|
|
|
76
69
|
async for chunk in agent.astream(
|
|
77
|
-
{
|
|
78
|
-
"question": message.content,
|
|
79
|
-
"messages": [HumanMessage(content="Hoi, dit is een test")],
|
|
80
|
-
},
|
|
70
|
+
{"messages": [HumanMessage(content=message.content)]},
|
|
81
71
|
config=RunnableConfig(
|
|
82
72
|
callbacks=[
|
|
83
|
-
cl.LangchainCallbackHandler(),
|
|
84
73
|
langwatch.get_current_trace().get_langchain_callback(),
|
|
85
74
|
]
|
|
86
75
|
),
|
|
87
76
|
):
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
else:
|
|
95
|
-
await msg.stream_token("<unammaped chunk>")
|
|
77
|
+
# In v1, create_agent streams message chunks differently
|
|
78
|
+
if "model" in chunk:
|
|
79
|
+
# This is the model response chunk
|
|
80
|
+
model_chunk = chunk["model"]
|
|
81
|
+
if hasattr(model_chunk, "content") and model_chunk.content:
|
|
82
|
+
await msg.stream_token(model_chunk.content)
|
|
96
83
|
|
|
97
84
|
await msg.send()
|
|
@@ -8,9 +8,9 @@ from langwatch.types import RAGChunk
|
|
|
8
8
|
load_dotenv()
|
|
9
9
|
|
|
10
10
|
import chainlit as cl
|
|
11
|
-
from
|
|
12
|
-
from
|
|
13
|
-
from langchain.
|
|
11
|
+
from langchain_core.messages import HumanMessage
|
|
12
|
+
from langchain_core.runnables import RunnableConfig
|
|
13
|
+
from langchain.agents import create_agent
|
|
14
14
|
|
|
15
15
|
import langwatch
|
|
16
16
|
|
|
@@ -18,9 +18,7 @@ from langchain_community.document_loaders import WebBaseLoader
|
|
|
18
18
|
from langchain_community.vectorstores.faiss import FAISS
|
|
19
19
|
from langchain_openai import ChatOpenAI, OpenAIEmbeddings
|
|
20
20
|
from langchain_text_splitters import RecursiveCharacterTextSplitter
|
|
21
|
-
from
|
|
22
|
-
from langchain.agents import AgentExecutor, create_tool_calling_agent
|
|
23
|
-
from langchain.tools import BaseTool, StructuredTool, tool
|
|
21
|
+
from langchain_core.tools import create_retriever_tool
|
|
24
22
|
from langchain_google_vertexai import ChatVertexAI, VertexAI
|
|
25
23
|
|
|
26
24
|
loader = WebBaseLoader("https://docs.langwatch.ai")
|
|
@@ -67,24 +65,19 @@ async def on_chat_start():
|
|
|
67
65
|
location=os.environ["VERTEXAI_LOCATION"],
|
|
68
66
|
streaming=True,
|
|
69
67
|
)
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
),
|
|
76
|
-
("human", "{question}"),
|
|
77
|
-
]
|
|
68
|
+
|
|
69
|
+
agent = create_agent(
|
|
70
|
+
model=model,
|
|
71
|
+
tools=tools,
|
|
72
|
+
system_prompt="You are a helpful assistant that only reply in short tweet-like responses, using lots of emojis and use tools only once."
|
|
78
73
|
)
|
|
79
|
-
agent
|
|
80
|
-
executor = AgentExecutor(agent=agent, tools=tools, verbose=True) # type: ignore
|
|
81
|
-
cl.user_session.set("agent", executor)
|
|
74
|
+
cl.user_session.set("agent", agent)
|
|
82
75
|
|
|
83
76
|
|
|
84
77
|
@cl.on_message
|
|
85
78
|
@langwatch.trace()
|
|
86
79
|
async def main(message: cl.Message):
|
|
87
|
-
agent
|
|
80
|
+
agent = cl.user_session.get("agent") # type: ignore
|
|
88
81
|
|
|
89
82
|
msg = cl.Message(content="")
|
|
90
83
|
|
|
@@ -93,24 +86,18 @@ async def main(message: cl.Message):
|
|
|
93
86
|
)
|
|
94
87
|
|
|
95
88
|
async for chunk in agent.astream(
|
|
96
|
-
{
|
|
97
|
-
"question": message.content,
|
|
98
|
-
"messages": [HumanMessage(content="Hoi, dit is een test")],
|
|
99
|
-
},
|
|
89
|
+
{"messages": [HumanMessage(content=message.content)]},
|
|
100
90
|
config=RunnableConfig(
|
|
101
91
|
callbacks=[
|
|
102
|
-
cl.LangchainCallbackHandler(),
|
|
103
92
|
langwatch.get_current_trace().get_langchain_callback(),
|
|
104
93
|
]
|
|
105
94
|
),
|
|
106
95
|
):
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
else:
|
|
114
|
-
await msg.stream_token("<unammaped chunk>")
|
|
96
|
+
# In v1, create_agent streams message chunks differently
|
|
97
|
+
if "model" in chunk:
|
|
98
|
+
# This is the model response chunk
|
|
99
|
+
model_chunk = chunk["model"]
|
|
100
|
+
if hasattr(model_chunk, "content") and model_chunk.content:
|
|
101
|
+
await msg.stream_token(model_chunk.content)
|
|
115
102
|
|
|
116
103
|
await msg.send()
|
|
@@ -15,9 +15,9 @@ from langwatch.types import RAGChunk
|
|
|
15
15
|
load_dotenv()
|
|
16
16
|
|
|
17
17
|
import chainlit as cl
|
|
18
|
-
from
|
|
19
|
-
from
|
|
20
|
-
from langchain.
|
|
18
|
+
from langchain_core.messages import HumanMessage
|
|
19
|
+
from langchain_core.runnables import RunnableConfig
|
|
20
|
+
from langchain.agents import create_agent
|
|
21
21
|
|
|
22
22
|
import langwatch
|
|
23
23
|
|
|
@@ -25,9 +25,7 @@ from langchain_community.document_loaders import WebBaseLoader
|
|
|
25
25
|
from langchain_community.vectorstores.faiss import FAISS
|
|
26
26
|
from langchain_openai import ChatOpenAI, OpenAIEmbeddings
|
|
27
27
|
from langchain_text_splitters import RecursiveCharacterTextSplitter
|
|
28
|
-
from
|
|
29
|
-
from langchain.agents import AgentExecutor, create_tool_calling_agent
|
|
30
|
-
from langchain.tools import BaseTool, StructuredTool, tool
|
|
28
|
+
from langchain_core.tools import create_retriever_tool
|
|
31
29
|
import chainlit as cl
|
|
32
30
|
import chainlit.data as cl_data
|
|
33
31
|
from chainlit.data.utils import queue_until_user_message
|
|
@@ -254,24 +252,19 @@ async def on_chat_start():
|
|
|
254
252
|
|
|
255
253
|
tools = [retriever_tool]
|
|
256
254
|
model = ChatOpenAI(streaming=True)
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
),
|
|
263
|
-
("human", "{question}"),
|
|
264
|
-
]
|
|
255
|
+
|
|
256
|
+
agent = create_agent(
|
|
257
|
+
model=model,
|
|
258
|
+
tools=tools,
|
|
259
|
+
system_prompt="You are a helpful assistant that only reply in short tweet-like responses, using lots of emojis and use tools only once."
|
|
265
260
|
)
|
|
266
|
-
agent
|
|
267
|
-
executor = AgentExecutor(agent=agent, tools=tools, verbose=True) # type: ignore
|
|
268
|
-
cl.user_session.set("agent", executor)
|
|
261
|
+
cl.user_session.set("agent", agent)
|
|
269
262
|
|
|
270
263
|
|
|
271
264
|
@cl.on_message
|
|
272
265
|
@langwatch.trace()
|
|
273
266
|
async def main(message: cl.Message):
|
|
274
|
-
agent
|
|
267
|
+
agent = cl.user_session.get("agent") # type: ignore
|
|
275
268
|
|
|
276
269
|
msg = cl.Message(content="")
|
|
277
270
|
|
|
@@ -284,25 +277,19 @@ async def main(message: cl.Message):
|
|
|
284
277
|
)
|
|
285
278
|
|
|
286
279
|
async for chunk in agent.astream(
|
|
287
|
-
{
|
|
288
|
-
"question": message.content,
|
|
289
|
-
"messages": [HumanMessage(content="Hoi, dit is een test")],
|
|
290
|
-
},
|
|
280
|
+
{"messages": [HumanMessage(content=message.content)]},
|
|
291
281
|
config=RunnableConfig(
|
|
292
282
|
callbacks=[
|
|
293
|
-
cl.LangchainCallbackHandler(),
|
|
294
283
|
langwatch.get_current_trace().get_langchain_callback(),
|
|
295
284
|
]
|
|
296
285
|
),
|
|
297
286
|
):
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
else:
|
|
305
|
-
await msg.stream_token("<unammaped chunk>")
|
|
287
|
+
# In v1, create_agent streams message chunks differently
|
|
288
|
+
if "model" in chunk:
|
|
289
|
+
# This is the model response chunk
|
|
290
|
+
model_chunk = chunk["model"]
|
|
291
|
+
if hasattr(model_chunk, "content") and model_chunk.content:
|
|
292
|
+
await msg.stream_token(model_chunk.content)
|
|
306
293
|
|
|
307
294
|
await msg.send()
|
|
308
295
|
|
|
@@ -15,9 +15,8 @@ from langwatch.types import RAGChunk
|
|
|
15
15
|
load_dotenv()
|
|
16
16
|
|
|
17
17
|
import chainlit as cl
|
|
18
|
-
from
|
|
19
|
-
from
|
|
20
|
-
from langchain.schema.runnable.config import RunnableConfig
|
|
18
|
+
from langchain_core.messages import HumanMessage
|
|
19
|
+
from langchain_core.runnables import RunnableConfig
|
|
21
20
|
|
|
22
21
|
import langwatch
|
|
23
22
|
|
|
@@ -25,9 +24,7 @@ from langchain_community.document_loaders import WebBaseLoader
|
|
|
25
24
|
from langchain_community.vectorstores.faiss import FAISS
|
|
26
25
|
from langchain_openai import ChatOpenAI, OpenAIEmbeddings
|
|
27
26
|
from langchain_text_splitters import RecursiveCharacterTextSplitter
|
|
28
|
-
from
|
|
29
|
-
from langchain.agents import AgentExecutor, create_tool_calling_agent
|
|
30
|
-
from langchain.tools import BaseTool, StructuredTool, tool
|
|
27
|
+
from langchain_core.tools import create_retriever_tool
|
|
31
28
|
import chainlit as cl
|
|
32
29
|
import chainlit.data as cl_data
|
|
33
30
|
from chainlit.data.utils import queue_until_user_message
|
|
@@ -300,7 +297,6 @@ async def main(message: cl.Message):
|
|
|
300
297
|
{"messages": [HumanMessage(content=message.content)]},
|
|
301
298
|
config=RunnableConfig(
|
|
302
299
|
callbacks=[
|
|
303
|
-
cl.LangchainCallbackHandler(),
|
|
304
300
|
langwatch.get_current_trace().get_langchain_callback(),
|
|
305
301
|
]
|
|
306
302
|
),
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"cell_type": "code",
|
|
17
|
-
"execution_count":
|
|
17
|
+
"execution_count": null,
|
|
18
18
|
"id": "a61c2b75",
|
|
19
19
|
"metadata": {},
|
|
20
20
|
"outputs": [
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"from langchain_text_splitters import RecursiveCharacterTextSplitter\n",
|
|
71
71
|
"from langchain.tools.retriever import create_retriever_tool\n",
|
|
72
72
|
"from langchain.agents import AgentExecutor, create_tool_calling_agent\n",
|
|
73
|
-
"from langchain.tools import BaseTool
|
|
73
|
+
"from langchain.tools import BaseTool\n",
|
|
74
74
|
"from langchain_core.documents import Document\n",
|
|
75
75
|
"\n",
|
|
76
76
|
"\n",
|
|
@@ -6,10 +6,9 @@ import langwatch
|
|
|
6
6
|
load_dotenv()
|
|
7
7
|
|
|
8
8
|
import chainlit as cl
|
|
9
|
-
from
|
|
10
|
-
from
|
|
11
|
-
from
|
|
12
|
-
from langchain.schema.runnable.config import RunnableConfig
|
|
9
|
+
from langchain_core.prompts import ChatPromptTemplate
|
|
10
|
+
from langchain_core.output_parsers import StrOutputParser
|
|
11
|
+
from langchain_core.runnables import Runnable, RunnableConfig
|
|
13
12
|
|
|
14
13
|
from openinference.instrumentation.langchain import LangChainInstrumentor
|
|
15
14
|
|
|
@@ -42,11 +41,7 @@ async def main(message: cl.Message):
|
|
|
42
41
|
|
|
43
42
|
async for chunk in runnable.astream(
|
|
44
43
|
{"question": message.content},
|
|
45
|
-
config=RunnableConfig(
|
|
46
|
-
callbacks=[
|
|
47
|
-
cl.LangchainCallbackHandler(),
|
|
48
|
-
]
|
|
49
|
-
),
|
|
44
|
+
config=RunnableConfig(),
|
|
50
45
|
):
|
|
51
46
|
await msg.stream_token(chunk)
|
|
52
47
|
|
|
@@ -6,10 +6,9 @@ import langwatch
|
|
|
6
6
|
load_dotenv()
|
|
7
7
|
|
|
8
8
|
import chainlit as cl
|
|
9
|
-
from
|
|
10
|
-
from
|
|
11
|
-
from
|
|
12
|
-
from langchain.schema.runnable.config import RunnableConfig
|
|
9
|
+
from langchain_core.prompts import ChatPromptTemplate
|
|
10
|
+
from langchain_core.output_parsers import StrOutputParser
|
|
11
|
+
from langchain_core.runnables import Runnable, RunnableConfig
|
|
13
12
|
|
|
14
13
|
from opentelemetry.instrumentation.langchain import LangchainInstrumentor
|
|
15
14
|
|
|
@@ -43,9 +42,6 @@ async def main(message: cl.Message):
|
|
|
43
42
|
async for chunk in runnable.astream(
|
|
44
43
|
{"question": message.content},
|
|
45
44
|
config=RunnableConfig(
|
|
46
|
-
callbacks=[
|
|
47
|
-
cl.LangchainCallbackHandler(),
|
|
48
|
-
],
|
|
49
45
|
metadata={
|
|
50
46
|
"user_id": "123",
|
|
51
47
|
"thread_id": "789",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
prompts/.materialized
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
model: bedrock/us.anthropic.claude-sonnet-4-20250514-v1:0
|
|
2
|
+
messages:
|
|
3
|
+
- role: system
|
|
4
|
+
content: |
|
|
5
|
+
You are Celeste, a GenAI marketing analysis agent for Skai's performance data. You translate user questions into report requests, analyze data, and provide clear performance insights.
|
|
6
|
+
some of our content...
|
|
7
|
+
**KEY TERMS:**
|
|
8
|
+
- Publisher = platforms (Google, Facebook) - use "ChannelName" column
|
|
9
|
+
- Channel = mediums (Search, Social) - use "ChannelCategory" column
|
|
10
|
+
- Product = PRODUCT_ASSET entity
|
|
11
|
+
- ROAS = use ROI if ROAS unavailable
|
|
12
|
+
- Spend = use Cost column
|
|
13
|
+
{{creative_asset}}
|
|
14
|
+
|
|
15
|
+
{{competitive_insights}}
|
|
16
|
+
|
|
17
|
+
- role: user
|
|
18
|
+
content: "{{input}}"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "langwatch"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.7.1" # remember to also update it in src/langwatch/__version__.py
|
|
4
4
|
description = "LangWatch Python SDK, for monitoring your LLMs"
|
|
5
5
|
authors = [{ name = "Langwatch Engineers", email = "engineering@langwatch.ai" }]
|
|
6
6
|
requires-python = ">=3.10,<3.14"
|
|
@@ -40,6 +40,7 @@ dependencies = [
|
|
|
40
40
|
"attrs>=24",
|
|
41
41
|
"pksuid>=1.1.2",
|
|
42
42
|
"pyyaml>=6.0.2",
|
|
43
|
+
"langchain-core>=1.0.0,<2.0.0",
|
|
43
44
|
]
|
|
44
45
|
|
|
45
46
|
[project.optional-dependencies]
|
|
@@ -75,15 +76,15 @@ examples = [
|
|
|
75
76
|
"fastapi>=0.115.12",
|
|
76
77
|
"haystack-ai>=2.13.2,<3.0.0",
|
|
77
78
|
"jupyter>=1.0.0,<2.0.0",
|
|
78
|
-
"langchain>=0.2.
|
|
79
|
-
"
|
|
80
|
-
"langchain-openai>=0.1.
|
|
81
|
-
"langchain-text-splitters>=0.3.0,<0.
|
|
82
|
-
"langchain-google-vertexai>=
|
|
79
|
+
"langchain>=1.0.0,<2.0.0",
|
|
80
|
+
"langchain-community>=0.3.0,<1.0.0",
|
|
81
|
+
"langchain-openai>=0.3.0,<1.0.0",
|
|
82
|
+
"langchain-text-splitters>=0.3.0,<1.0.0",
|
|
83
|
+
"langchain-google-vertexai>=2.0.0,<3.0.0",
|
|
83
84
|
"litellm>=1.52.1",
|
|
84
85
|
"openinference-instrumentation-dspy>=0.1.23,<0.2.0",
|
|
85
86
|
"opentelemetry-instrumentation-fastapi>=0.53b1",
|
|
86
|
-
"langgraph>=0.2.
|
|
87
|
+
"langgraph>=1.0.0,<2.0.0",
|
|
87
88
|
"openai>=1.68.2",
|
|
88
89
|
"pydantic>=1,<2.10.2", # v2.10.2 is broken for chainlit
|
|
89
90
|
"pytest>=7.4.2,<8.0.0",
|
|
@@ -95,7 +96,7 @@ examples = [
|
|
|
95
96
|
"opentelemetry-instrumentation-langchain>=0.40.4",
|
|
96
97
|
"openinference-instrumentation-litellm>=0.1.19",
|
|
97
98
|
"pandas>=2.2.3",
|
|
98
|
-
"strands-agents[otel]>=1.
|
|
99
|
+
"strands-agents[otel]>=1.14.0,<2.0.0",
|
|
99
100
|
"unstructured[pdf]>=0.18.3",
|
|
100
101
|
]
|
|
101
102
|
tests = ["pytest-asyncio>=0.21.2"]
|
|
@@ -11,20 +11,18 @@ from typing import (
|
|
|
11
11
|
Union,
|
|
12
12
|
)
|
|
13
13
|
from warnings import warn
|
|
14
|
-
from
|
|
15
|
-
LLMResult,
|
|
16
|
-
AgentAction,
|
|
17
|
-
AgentFinish,
|
|
14
|
+
from langchain_core.messages import (
|
|
18
15
|
BaseMessage,
|
|
19
16
|
HumanMessage,
|
|
20
17
|
AIMessage,
|
|
21
18
|
SystemMessage,
|
|
22
19
|
FunctionMessage,
|
|
23
|
-
ChatGeneration,
|
|
24
20
|
)
|
|
21
|
+
from langchain_core.outputs import LLMResult, ChatGeneration
|
|
22
|
+
from langchain_core.agents import AgentAction, AgentFinish
|
|
25
23
|
from langwatch.utils.initialization import ensure_setup
|
|
26
24
|
from opentelemetry.trace import get_current_span, SpanContext
|
|
27
|
-
from
|
|
25
|
+
from langchain_core.callbacks.base import BaseCallbackHandler
|
|
28
26
|
from langwatch.telemetry.span import LangWatchSpan
|
|
29
27
|
from langwatch.telemetry.tracing import LangWatchTrace
|
|
30
28
|
from langwatch.utils.transformation import (
|
|
@@ -49,7 +47,7 @@ from langwatch.domain import (
|
|
|
49
47
|
)
|
|
50
48
|
|
|
51
49
|
from uuid import UUID
|
|
52
|
-
from
|
|
50
|
+
from langchain_core.tools import BaseTool
|
|
53
51
|
import logging
|
|
54
52
|
|
|
55
53
|
|