opik 1.9.38__tar.gz → 1.9.54__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.
- {opik-1.9.38/src/opik.egg-info → opik-1.9.54}/PKG-INFO +7 -6
- {opik-1.9.38 → opik-1.9.54}/setup.py +3 -1
- opik-1.9.54/src/opik/api_objects/attachment/attachment_context.py +36 -0
- opik-1.9.54/src/opik/api_objects/attachment/attachments_extractor.py +153 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/attachment/client.py +1 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/attachment/converters.py +2 -0
- opik-1.9.54/src/opik/api_objects/attachment/decoder.py +18 -0
- opik-1.9.54/src/opik/api_objects/attachment/decoder_base64.py +83 -0
- opik-1.9.54/src/opik/api_objects/attachment/decoder_helpers.py +137 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/experiment/helpers.py +15 -2
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/local_recording.py +6 -5
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/opik_client.py +15 -25
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/client.py +8 -1
- opik-1.9.54/src/opik/cli/exports/__init__.py +131 -0
- opik-1.9.54/src/opik/cli/exports/dataset.py +278 -0
- opik-1.9.54/src/opik/cli/exports/experiment.py +784 -0
- opik-1.9.54/src/opik/cli/exports/project.py +685 -0
- opik-1.9.54/src/opik/cli/exports/prompt.py +578 -0
- opik-1.9.54/src/opik/cli/exports/utils.py +406 -0
- opik-1.9.54/src/opik/cli/harbor.py +39 -0
- opik-1.9.54/src/opik/cli/imports/__init__.py +439 -0
- opik-1.9.54/src/opik/cli/imports/dataset.py +143 -0
- opik-1.9.54/src/opik/cli/imports/experiment.py +1192 -0
- opik-1.9.54/src/opik/cli/imports/project.py +262 -0
- opik-1.9.54/src/opik/cli/imports/prompt.py +177 -0
- opik-1.9.54/src/opik/cli/imports/utils.py +280 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/main.py +14 -12
- {opik-1.9.38 → opik-1.9.54}/src/opik/config.py +12 -1
- opik-1.9.54/src/opik/datetime_helpers.py +22 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/evaluator.py +44 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/litellm/util.py +4 -20
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/file_uploader.py +13 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/upload_options.py +2 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/id_helpers.py +18 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/dspy/callback.py +80 -14
- opik-1.9.54/src/opik/integrations/dspy/parsers.py +168 -0
- opik-1.9.54/src/opik/integrations/harbor/__init__.py +17 -0
- opik-1.9.54/src/opik/integrations/harbor/experiment_service.py +269 -0
- opik-1.9.54/src/opik/integrations/harbor/opik_tracker.py +446 -0
- opik-1.9.54/src/opik/integrations/langchain/__init__.py +5 -0
- opik-1.9.54/src/opik/integrations/langchain/langgraph_tracer_injector.py +88 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/opik_tracer.py +16 -4
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/llama_index/callback.py +43 -6
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/batching/base_batcher.py +14 -21
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/batching/batch_manager.py +22 -10
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/batching/batchers.py +32 -40
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/batching/flushing_thread.py +0 -3
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/emulation/emulator_message_processor.py +8 -1
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/messages.py +9 -0
- opik-1.9.54/src/opik/message_processing/preprocessing/attachments_preprocessor.py +70 -0
- opik-1.9.54/src/opik/message_processing/preprocessing/batching_preprocessor.py +53 -0
- opik-1.9.54/src/opik/message_processing/preprocessing/constants.py +1 -0
- opik-1.9.54/src/opik/message_processing/preprocessing/file_upload_preprocessor.py +38 -0
- opik-1.9.54/src/opik/message_processing/preprocessing/preprocessor.py +36 -0
- opik-1.9.54/src/opik/message_processing/processors/attachments_extraction_processor.py +146 -0
- {opik-1.9.38/src/opik/message_processing → opik-1.9.54/src/opik/message_processing/processors}/message_processors.py +15 -1
- {opik-1.9.38/src/opik/message_processing → opik-1.9.54/src/opik/message_processing/processors}/message_processors_chain.py +3 -2
- {opik-1.9.38/src/opik/message_processing → opik-1.9.54/src/opik/message_processing/processors}/online_message_processor.py +11 -9
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/queue_consumer.py +4 -2
- opik-1.9.54/src/opik/message_processing/streamer.py +154 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/streamer_constructors.py +36 -8
- opik-1.9.54/src/opik/rate_limit/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/__init__.py +36 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/datasets/client.py +151 -18
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/datasets/raw_client.py +262 -14
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/llm_provider_key/types/provider_api_key_write_provider.py +1 -1
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/manual_evaluation/client.py +101 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/manual_evaluation/raw_client.py +172 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/prompts/client.py +130 -2
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/prompts/raw_client.py +175 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/traces/client.py +101 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/traces/raw_client.py +120 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/__init__.py +44 -0
- opik-1.9.54/src/opik/rest_api/types/audio_url.py +19 -0
- opik-1.9.54/src/opik/rest_api/types/audio_url_public.py +19 -0
- opik-1.9.54/src/opik/rest_api/types/audio_url_write.py +19 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator.py +17 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_object_object_public.py +17 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_public.py +17 -0
- opik-1.9.54/src/opik/rest_api/types/automation_rule_evaluator_span_user_defined_metric_python.py +22 -0
- opik-1.9.54/src/opik/rest_api/types/automation_rule_evaluator_span_user_defined_metric_python_public.py +22 -0
- opik-1.9.54/src/opik/rest_api/types/automation_rule_evaluator_span_user_defined_metric_python_write.py +22 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_update.py +17 -0
- opik-1.9.54/src/opik/rest_api/types/automation_rule_evaluator_update_span_user_defined_metric_python.py +22 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_write.py +17 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset.py +2 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_filter.py +4 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_public.py +2 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_version_public.py +5 -0
- opik-1.9.54/src/opik/rest_api/types/dataset_version_summary.py +41 -0
- opik-1.9.54/src/opik/rest_api/types/dataset_version_summary_public.py +41 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/group_content_with_aggregations.py +1 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_message_content.py +2 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_message_content_public.py +2 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_message_content_write.py +2 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/manual_evaluation_request_entity_type.py +1 -1
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project.py +1 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_detailed.py +1 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_stats_summary_item.py +1 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version.py +1 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_detail.py +1 -0
- opik-1.9.54/src/opik/rest_api/types/prompt_version_page_public.py +28 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_public.py +1 -0
- opik-1.9.54/src/opik/rest_api/types/prompt_version_update.py +33 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/provider_api_key.py +4 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/provider_api_key_provider.py +1 -1
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/provider_api_key_public.py +4 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/provider_api_key_public_provider.py +1 -1
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/service_toggles_config.py +10 -0
- opik-1.9.54/src/opik/rest_api/types/span_user_defined_metric_python_code.py +20 -0
- opik-1.9.54/src/opik/rest_api/types/span_user_defined_metric_python_code_public.py +20 -0
- opik-1.9.54/src/opik/rest_api/types/span_user_defined_metric_python_code_write.py +20 -0
- opik-1.9.54/src/opik/validation/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54/src/opik.egg-info}/PKG-INFO +7 -6
- {opik-1.9.38 → opik-1.9.54}/src/opik.egg-info/SOURCES.txt +47 -5
- {opik-1.9.38 → opik-1.9.54}/src/opik.egg-info/requires.txt +1 -1
- opik-1.9.38/src/opik/cli/export.py +0 -791
- opik-1.9.38/src/opik/cli/import_command.py +0 -575
- opik-1.9.38/src/opik/datetime_helpers.py +0 -10
- opik-1.9.38/src/opik/integrations/langchain/__init__.py +0 -4
- opik-1.9.38/src/opik/message_processing/streamer.py +0 -116
- opik-1.9.38/src/opik/rest_api/types/prompt_version_page_public.py +0 -23
- {opik-1.9.38 → opik-1.9.54}/LICENSE +0 -0
- {opik-1.9.38 → opik-1.9.54}/README.md +0 -0
- {opik-1.9.38 → opik-1.9.54}/pyproject.toml +0 -0
- {opik-1.9.38 → opik-1.9.54}/setup.cfg +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/_logging.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/anonymizer/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/anonymizer/anonymizer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/anonymizer/factory.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/anonymizer/recursive_anonymizer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/anonymizer/rules.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/anonymizer/rules_anonymizer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_key/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_key/base64_helper.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_key/opik_api_key.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/attachment/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/attachment/attachment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/constants.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/conversation/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/conversation/conversation_factory.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/conversation/conversation_thread.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/data_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/dataset/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/dataset/converters.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/dataset/dataset.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/dataset/dataset_item.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/dataset/rest_operations.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/experiment/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/experiment/experiment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/experiment/experiment_item.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/experiment/experiments_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/experiment/rest_operations.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/feedback_score/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/feedback_score/converters.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/opik_query_language.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/optimization/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/optimization/optimization.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/base_prompt.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/base_prompt_template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/chat/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/chat/chat_prompt.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/chat/chat_prompt_template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/chat/content_renderer_registry.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/text/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/text/prompt.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/text/prompt_template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/prompt/types.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/rest_stream_parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/search_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/span/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/span/converters.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/span/span_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/span/span_data.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/threads/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/threads/threads_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/trace/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/trace/converters.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/trace/migration.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/trace/trace_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/trace/trace_data.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/api_objects/validation_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/__main__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/configure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/healthcheck.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/proxy.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/usage_report/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/usage_report/charts.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/usage_report/cli.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/usage_report/constants.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/usage_report/extraction.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/usage_report/pdf.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/usage_report/statistics.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/cli/usage_report/utils.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/configurator/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/configurator/configure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/configurator/interactive_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/configurator/opik_rest_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/context_storage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/arguments_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/base_track_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/context_manager/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/context_manager/span_context_manager.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/context_manager/trace_context_manager.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/error_info_collector.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/generator_wrappers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/inspect_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/opik_args/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/opik_args/api_classes.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/opik_args/helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/span_creation_handler.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/decorator/tracker.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/dict_utils.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/environment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/api.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/before_send.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/environment_details.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/error_filtering/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/error_filtering/event_filter.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/error_filtering/filter_by_count.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/error_filtering/filter_by_response_status_code.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/error_filtering/filter_chain.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/error_filtering/filter_chain_builder.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/logger_setup.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/shutdown_hooks.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/types.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/error_tracking/user_details.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/asyncio_support.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/engine/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/engine/engine.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/engine/evaluation_tasks_executor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/engine/exception_analyzer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/engine/helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/engine/metrics_evaluator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/engine/types.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/evaluation_result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/aggregated_metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/arguments_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/arguments_validator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/base_metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/conversation_thread_metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/conversation_turns_factory.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/g_eval_wrappers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/heuristics/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/heuristics/degeneration/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/heuristics/degeneration/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/heuristics/degeneration/phrases.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/heuristics/knowledge_retention/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/heuristics/knowledge_retention/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/schema.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/templates.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/g_eval_wrappers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/session_completeness/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/session_completeness/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/session_completeness/schema.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/session_completeness/templates.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/user_frustration/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/user_frustration/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/user_frustration/schema.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/llm_judges/user_frustration/templates.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation/types.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/conversation_types.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/bertscore.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/bleu.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/chrf.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/contains.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/distribution_metrics.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/equals.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/gleu.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/is_json.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/language_adherence.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/levenshtein_ratio.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/meteor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/prompt_injection.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/readability.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/regex_match.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/rouge.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/sentiment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/spearman.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/tone.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/heuristics/vader_sentiment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/answer_relevance/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/answer_relevance/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/answer_relevance/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/answer_relevance/templates.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/context_precision/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/context_precision/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/context_precision/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/context_precision/template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/context_recall/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/context_recall/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/context_recall/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/context_recall/template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/factuality/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/factuality/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/factuality/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/factuality/template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval/presets.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval/template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/agent_assessment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/bias_classifier.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/compliance_risk.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/prompt_uncertainty.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/qa_suite.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/hallucination/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/hallucination/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/hallucination/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/hallucination/template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/llm_juries/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/llm_juries/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/moderation/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/moderation/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/moderation/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/moderation/template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/parsing_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/schema.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/syc_eval/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/syc_eval/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/syc_eval/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/syc_eval/template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/trajectory_accuracy/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/trajectory_accuracy/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/trajectory_accuracy/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/trajectory_accuracy/templates.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/usefulness/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/usefulness/metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/usefulness/parser.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/llm_judges/usefulness/template.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/ragas_metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/metrics/score_result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/base_model.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/langchain/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/langchain/langchain_chat_model.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/langchain/message_converters.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/langchain/opik_monitoring.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/litellm/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/litellm/litellm_chat_model.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/litellm/opik_monitor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/litellm/warning_filters.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/model_capabilities.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/models/models_factory.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/preprocessing.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/report.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/rest_operations.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/samplers/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/samplers/base_dataset_sampler.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/samplers/random_dataset_sampler.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/score_statistics.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/scorers/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/scorers/scorer_function.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/scorers/scorer_wrapper_metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/test_case.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/test_result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/threads/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/threads/context_helper.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/threads/evaluation_engine.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/threads/evaluation_result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/threads/evaluator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/threads/helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/evaluation/types.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/exceptions.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/base_upload_manager.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/file_upload_monitor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/mime_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/s3_multipart_upload/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/s3_multipart_upload/file_parts_strategy.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/s3_multipart_upload/s3_file_uploader.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/s3_multipart_upload/s3_upload_error.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/thread_pool.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/upload_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/file_upload/upload_manager.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/format_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/forwarding_server/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/forwarding_server/app.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/forwarding_server/utils.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/guardrails/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/guardrails/guardrail.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/guardrails/guards/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/guardrails/guards/guard.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/guardrails/guards/pii.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/guardrails/guards/topic.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/guardrails/rest_api_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/guardrails/schemas.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/guardrails/tracing.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/healthcheck/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/healthcheck/checks.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/healthcheck/rich_representation.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/hooks/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/hooks/anonymizer_hook.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/hooks/httpx_client_hook.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/httpx_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/callback_context_info_extractors.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/graph/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/graph/mermaid_graph_builder.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/graph/nodes.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/graph/subgraph_edges_builders.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/legacy_opik_tracer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/opik_tracer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/patchers/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/patchers/adk_otel_tracer/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/patchers/adk_otel_tracer/llm_span_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/patchers/adk_otel_tracer/opik_adk_otel_tracer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/patchers/litellm_wrappers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/patchers/llm_response_wrapper.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/patchers/patchers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/adk/recursive_callback_injector.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/aisuite/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/aisuite/aisuite_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/aisuite/opik_tracker.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/anthropic/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/anthropic/messages_batch_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/anthropic/messages_create_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/anthropic/opik_tracker.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/anthropic/stream_patchers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/converse/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/converse/chunks_aggregator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/converse/converse_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/converse/stream_wrappers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_agent_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/api.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/base.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/claude.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/format_detector.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/llama.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/mistral.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/nova.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/invoke_model_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/response_types.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/stream_wrappers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/usage_converters.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/invoke_model/usage_extraction.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/opik_tracker.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/bedrock/types.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/crewai/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/crewai/crewai_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/crewai/opik_tracker.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/crewai/patchers/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/crewai/patchers/flow.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/crewai/patchers/litellm_completion.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/crewai/patchers/llm_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/dspy/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/dspy/graph.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/genai/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/genai/encoder_extension.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/genai/generate_content_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/genai/generations_aggregators.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/genai/opik_tracker.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/genai/stream_wrappers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/guardrails/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/guardrails/guardrails_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/guardrails/guardrails_tracker.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/haystack/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/haystack/constants.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/haystack/converters.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/haystack/opik_connector.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/haystack/opik_span_bridge.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/haystack/opik_tracer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/base_llm_patcher.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/langgraph_async_context_bridge.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/opik_encoder_extension.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/anthropic_usage_extractor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/anthropic_vertexai_usage_extractor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/bedrock_usage_extractor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/google_generative_ai_usage_extractor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/groq_usage_extractor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/langchain_run_helpers/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/langchain_run_helpers/helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/langchain_run_helpers/langchain_usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/openai_usage_extractor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/provider_usage_extractor_protocol.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/usage_extractor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/langchain/provider_usage_extractors/vertexai_usage_extractor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/litellm/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/litellm/completion_chunks_aggregator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/litellm/litellm_completion_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/litellm/opik_tracker.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/litellm/stream_patchers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/llama_index/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/llama_index/event_parsing_utils.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/agents/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/agents/opik_tracing_processor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/agents/span_data_parsers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/chat_completion_chunks_aggregator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/openai_chat_completions_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/openai_responses_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/opik_tracker.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/response_events_aggregator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/openai/stream_patchers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/sagemaker/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/integrations/sagemaker/auth.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/jsonable_encoder.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/anthropic_usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/base_original_provider_usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/bedrock_usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/google_usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/llm_usage_info.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/openai_chat_completions_usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/openai_responses_usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/opik_usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/opik_usage_factory.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/llm_usage/unknown_usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/logging_messages.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/api.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/arguments_utils.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/batching/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/batching/batch_manager_constuctors.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/batching/sequence_splitter.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/emulation/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/emulation/local_emulator_message_processor.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/emulation/models.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/encoder_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/message_processing/message_queue.py +0 -0
- {opik-1.9.38/src/opik/plugins → opik-1.9.54/src/opik/message_processing/preprocessing}/__init__.py +0 -0
- {opik-1.9.38/src/opik/plugins/pytest → opik-1.9.54/src/opik/message_processing/processors}/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/opik_context.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/package_version.py +0 -0
- {opik-1.9.38/src/opik/rate_limit → opik-1.9.54/src/opik/plugins}/__init__.py +0 -0
- {opik-1.9.38/src/opik/validation → opik-1.9.54/src/opik/plugins/pytest}/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/plugins/pytest/decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/plugins/pytest/experiment_runner.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/plugins/pytest/hooks.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/plugins/pytest/summary.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/plugins/pytest/test_run_content.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/plugins/pytest/test_runs_storage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/py.typed +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rate_limit/rate_limit.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/alerts/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/alerts/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/alerts/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/alerts/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/alerts/types/get_webhook_examples_request_alert_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/annotation_queues/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/annotation_queues/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/annotation_queues/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/attachments/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/attachments/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/attachments/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/attachments/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/attachments/types/attachment_list_request_entity_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/attachments/types/download_attachment_request_entity_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/attachments/types/start_multipart_upload_request_entity_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/attachments/types/upload_attachment_request_entity_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/automation_rule_evaluators/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/automation_rule_evaluators/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/automation_rule_evaluators/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/chat_completions/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/chat_completions/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/chat_completions/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/check/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/check/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/check/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/api_error.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/client_wrapper.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/datetime_utils.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/file.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/http_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/http_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/jsonable_encoder.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/pydantic_utilities.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/query_encoder.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/remove_none_from_dict.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/request_options.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/core/serialization.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/dashboards/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/dashboards/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/dashboards/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/datasets/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/datasets/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/datasets/types/dataset_update_visibility.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/datasets/types/dataset_write_visibility.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/environment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/errors/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/errors/bad_request_error.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/errors/conflict_error.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/errors/forbidden_error.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/errors/not_found_error.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/errors/not_implemented_error.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/errors/unauthorized_error.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/errors/unprocessable_entity_error.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/experiments/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/experiments/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/experiments/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/experiments/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/experiments/types/experiment_update_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/experiments/types/experiment_update_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/experiments/types/experiment_write_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/experiments/types/experiment_write_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/feedback_definitions/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/feedback_definitions/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/feedback_definitions/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/feedback_definitions/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/feedback_definitions/types/find_feedback_definitions_request_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/guardrails/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/guardrails/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/guardrails/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/llm_provider_key/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/llm_provider_key/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/llm_provider_key/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/llm_provider_key/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/manual_evaluation/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/open_telemetry_ingestion/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/open_telemetry_ingestion/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/open_telemetry_ingestion/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/optimizations/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/optimizations/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/optimizations/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/optimizations/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/optimizations/types/optimization_update_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/projects/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/projects/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/projects/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/projects/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/projects/types/project_metric_request_public_interval.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/projects/types/project_metric_request_public_metric_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/projects/types/project_update_visibility.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/projects/types/project_write_visibility.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/prompts/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/prompts/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/prompts/types/create_prompt_version_detail_template_structure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/prompts/types/prompt_write_template_structure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/prompts/types/prompt_write_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/redirect/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/redirect/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/redirect/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/service_toggles/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/service_toggles/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/service_toggles/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/spans/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/spans/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/spans/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/spans/types/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/spans/types/find_feedback_score_names_1_request_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/spans/types/get_span_stats_request_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/spans/types/get_spans_by_project_request_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/spans/types/span_search_stream_request_public_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/system_usage/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/system_usage/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/system_usage/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/traces/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/aggregation_data.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_alert_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_public_alert_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_config.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_config_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_config_public_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_config_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_config_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_config_write_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_event_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_public_event_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_trigger_write_event_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/alert_write_alert_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_batch.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_item_ids.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_public_scope.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_reviewer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_reviewer_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_scope.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/annotation_queue_write_scope.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/assistant_message.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/assistant_message_role.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/attachment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/attachment_page.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/auth_details_holder.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_llm_as_judge.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_llm_as_judge_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_llm_as_judge_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_update_llm_as_judge.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_update_span_llm_as_judge.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_update_trace_thread_llm_as_judge.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_update_trace_thread_user_defined_metric_python.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_update_user_defined_metric_python.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/avg_value_stat_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/batch_delete.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/batch_delete_by_project.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/bi_information.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/bi_information_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/boolean_feedback_definition.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/boolean_feedback_definition_create.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/boolean_feedback_definition_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/boolean_feedback_definition_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/boolean_feedback_detail.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/boolean_feedback_detail_create.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/boolean_feedback_detail_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/boolean_feedback_detail_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/categorical_feedback_definition.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/categorical_feedback_definition_create.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/categorical_feedback_definition_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/categorical_feedback_definition_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/categorical_feedback_detail.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/categorical_feedback_detail_create.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/categorical_feedback_detail_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/categorical_feedback_detail_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/chat_completion_choice.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/chat_completion_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/check.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/check_name.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/check_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/check_public_name.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/check_public_result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/check_result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/chunked_output_json_node.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/chunked_output_json_node_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/chunked_output_json_node_public_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/chunked_output_json_node_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/column.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/column_compare.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/column_compare_types_item.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/column_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/column_public_types_item.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/column_types_item.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/comment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/comment_compare.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/comment_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/complete_multipart_upload_request.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/complete_multipart_upload_request_entity_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/completion_tokens_details.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/count_value_stat_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dashboard_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dashboard_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/data_point_double.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/data_point_number_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_expansion.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_expansion_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_batch.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_compare.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_compare_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_filter_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_page_compare.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_public_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_item_write_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_public_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_public_visibility.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_version_diff.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_version_diff_stats.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_version_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/dataset_visibility.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/delete_attachments_request.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/delete_attachments_request_entity_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/delete_feedback_score.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/delete_ids_holder.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/delta.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_count_with_deviation.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_count_with_deviation_detailed.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_info.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_info_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_info_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_info_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_message.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_message_detail.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_message_detailed.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/error_message_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_group_aggregations_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_group_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_item.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_item_bulk_record.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_item_bulk_record_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_item_bulk_upload.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_item_compare.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_item_compare_trace_visibility_mode.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_item_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_item_public_trace_visibility_mode.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_item_trace_visibility_mode.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_public_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_public_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_score.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_score_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_score_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/experiment_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/export_trace_service_request.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_create.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_definition_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_object_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_average.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_average_detailed.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_average_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_batch.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_batch_item.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_batch_item_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_batch_item_thread.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_batch_item_thread_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_compare.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_compare_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_experiment_item_bulk_write_view_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_names.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_public_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_score_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/feedback_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/function.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/function_call.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/group_content.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/group_detail.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/group_details.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/guardrail.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/guardrail_batch.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/guardrail_name.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/guardrail_result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/guardrail_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/guardrail_write_name.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/guardrail_write_result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/guardrails_validation.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/guardrails_validation_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/ids_holder.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/image_url.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/image_url_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/image_url_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_list_string.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_list_string_compare.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_list_string_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_list_string_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_list_string_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_node.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_node_detail.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_node_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_node_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/json_schema.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_code.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_code_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_code_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_message.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_message_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_message_public_role.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_message_role.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_message_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_message_write_role.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_model_parameters.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_model_parameters_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_model_parameters_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_output_schema.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_output_schema_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_output_schema_public_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_output_schema_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_output_schema_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/llm_as_judge_output_schema_write_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/log_item.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/log_item_level.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/log_page.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/manual_evaluation_request.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/manual_evaluation_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/message.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/multipart_upload_part.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/numerical_feedback_definition.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/numerical_feedback_definition_create.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/numerical_feedback_definition_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/numerical_feedback_definition_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/numerical_feedback_detail.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/numerical_feedback_detail_create.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/numerical_feedback_detail_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/numerical_feedback_detail_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_public_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_studio_config.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_studio_config_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_studio_config_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_studio_log.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/optimization_write_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/page_columns.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/percentage_value_stat_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/percentage_values.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/percentage_values_detailed.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/percentage_values_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_detailed_visibility.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_metric_response_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_metric_response_public_interval.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_metric_response_public_metric_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_public_visibility.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_stat_item_object_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_stats_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_stats_summary.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/project_visibility.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_detail.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_detail_template_structure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_public_template_structure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_template_structure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_tokens_details.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_detail_template_structure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_detail_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_link.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_link_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_link_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_public_template_structure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_public_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_template_structure.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/prompt_version_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/provider_api_key_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/response_format.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/response_format_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/results_number_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/score_name.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_batch.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_enrichment_options.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_experiment_item_bulk_write_view_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_filter.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_filter_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_filter_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_filter_public_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_filter_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_filter_write_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_llm_as_judge_code.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_llm_as_judge_code_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_llm_as_judge_code_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_public_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_update_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/span_write_type.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/spans_count_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/start_multipart_upload_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/stream_options.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_evaluation.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_evaluation_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_evaluation_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_llm_model.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_llm_model_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_llm_model_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_message.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_message_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_message_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_metric.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_metric_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_metric_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_optimizer.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_optimizer_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_optimizer_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_prompt.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_prompt_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/studio_prompt_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/tool.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/tool_call.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_batch.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_count_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_enrichment_options.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_filter.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_filter_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_filter_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_filter_public_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_filter_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_filter_write_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_page_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_public_visibility_mode.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_filter.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_filter_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_filter_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_filter_public_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_filter_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_filter_write_operator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_identifier.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_llm_as_judge_code.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_llm_as_judge_code_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_llm_as_judge_code_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_page.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_user_defined_metric_python_code.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_user_defined_metric_python_code_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_thread_user_defined_metric_python_code_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_update.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_visibility_mode.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/trace_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/usage.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/user_defined_metric_python_code.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/user_defined_metric_python_code_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/user_defined_metric_python_code_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/value_entry.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/value_entry_compare.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/value_entry_compare_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/value_entry_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/value_entry_experiment_item_bulk_write_view_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/value_entry_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/value_entry_public_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/value_entry_source.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/video_url.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/video_url_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/video_url_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/webhook.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/webhook_examples.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/webhook_public.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/webhook_test_result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/webhook_test_result_status.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/webhook_write.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/welcome_wizard_tracking.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/workspace_configuration.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/workspace_metric_request.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/workspace_metric_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/workspace_metrics_summary_request.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/workspace_metrics_summary_response.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/workspace_name_holder.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/workspace_spans_count.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/types/workspace_trace_count.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/welcome_wizard/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/welcome_wizard/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/welcome_wizard/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/workspaces/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/workspaces/client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_api/workspaces/raw_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_client_configurator/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_client_configurator/api.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_client_configurator/public_methods_patcher.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/rest_client_configurator/retry_decorator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/s3_httpx_client.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/semantic_version.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/simulation/__init__.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/simulation/simulated_user.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/simulation/simulator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/synchronization.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/tracing_runtime_config.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/types.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/url_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/validation/feedback_score.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/validation/parameter.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/validation/parameters_validator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/validation/result.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/validation/validator.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik/validation/validator_helpers.py +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik.egg-info/dependency_links.txt +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik.egg-info/entry_points.txt +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik.egg-info/not-zip-safe +0 -0
- {opik-1.9.38 → opik-1.9.54}/src/opik.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: opik
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.54
|
|
4
4
|
Summary: Comet tool for logging and evaluating LLM traces
|
|
5
5
|
Home-page: https://www.comet.com
|
|
6
6
|
Author: Comet ML Inc.
|
|
@@ -27,7 +27,7 @@ Requires-Dist: boto3-stubs[bedrock-runtime]>=1.34.110
|
|
|
27
27
|
Requires-Dist: click
|
|
28
28
|
Requires-Dist: httpx
|
|
29
29
|
Requires-Dist: rapidfuzz<4.0.0,>=3.0.0
|
|
30
|
-
Requires-Dist: litellm!=1.75.0,!=1.75.1,!=1.75.2,!=1.75.3,!=1.75.4,!=1.75.5,!=1.77.3,!=1.77.4,!=1.77.5,!=1.77.7,!=1.78.0,!=1.78.2,!=1.78.3,!=1.78.4,!=1.78.5,!=1.78.6,!=1.78.7,!=1.79.0,!=1.79.1,>=1.79.2
|
|
30
|
+
Requires-Dist: litellm!=1.75.0,!=1.75.1,!=1.75.2,!=1.75.3,!=1.75.4,!=1.75.5,!=1.77.3,!=1.77.4,!=1.77.5,!=1.77.7,!=1.78.0,!=1.78.2,!=1.78.3,!=1.78.4,!=1.78.5,!=1.78.6,!=1.78.7,!=1.79.0,!=1.79.1,!=1.80.9,>=1.79.2
|
|
31
31
|
Requires-Dist: openai
|
|
32
32
|
Requires-Dist: pydantic-settings!=2.9.0,<3.0.0,>=2.0.0
|
|
33
33
|
Requires-Dist: pydantic<3.0.0,>=2.0.0
|
|
@@ -70,9 +70,9 @@ Dynamic: summary
|
|
|
70
70
|
Opik
|
|
71
71
|
</div>
|
|
72
72
|
</h1>
|
|
73
|
-
<h2 align="center" style="border-bottom: none">Open-source
|
|
73
|
+
<h2 align="center" style="border-bottom: none">Open-source AI Observability, Evaluation, and Optimization</h2>
|
|
74
74
|
<p align="center">
|
|
75
|
-
Opik helps you build,
|
|
75
|
+
Opik helps you build, test, and optimize generative AI application that run better, from prototype to production. From RAG chatbots to code assistants to complex agentic systems, Opik provides comprehensive tracing, evaluation, and automatic prompt and tool optimization to take the guesswork out of AI development.
|
|
76
76
|
</p>
|
|
77
77
|
|
|
78
78
|
<div align="center">
|
|
@@ -215,7 +215,7 @@ For production or larger-scale self-hosted deployments, Opik can be installed on
|
|
|
215
215
|
|
|
216
216
|
## 💻 Opik Client SDK
|
|
217
217
|
|
|
218
|
-
Opik provides a suite of client libraries and a REST API to interact with the Opik server. This includes SDKs for Python, TypeScript, and Ruby (via OpenTelemetry), allowing for seamless integration into your workflows. For detailed API and SDK references, see the [Opik Client Reference Documentation](
|
|
218
|
+
Opik provides a suite of client libraries and a REST API to interact with the Opik server. This includes SDKs for Python, TypeScript, and Ruby (via OpenTelemetry), allowing for seamless integration into your workflows. For detailed API and SDK references, see the [Opik Client Reference Documentation](https://www.comet.com/docs/opik/reference/overview?from=llm&utm_source=opik&utm_medium=github&utm_content=reference_link&utm_campaign=opik).
|
|
219
219
|
|
|
220
220
|
### Python SDK Quick Start
|
|
221
221
|
|
|
@@ -238,7 +238,7 @@ opik configure
|
|
|
238
238
|
```
|
|
239
239
|
|
|
240
240
|
> [!TIP]
|
|
241
|
-
> You can also call `opik.configure(use_local=True)` from your Python code to configure the SDK to run on a local self-hosted installation, or provide API key and workspace details directly for Comet.com. Refer to the [Python SDK documentation](
|
|
241
|
+
> You can also call `opik.configure(use_local=True)` from your Python code to configure the SDK to run on a local self-hosted installation, or provide API key and workspace details directly for Comet.com. Refer to the [Python SDK documentation](https://www.comet.com/docs/opik/python-sdk-reference/?from=llm&utm_source=opik&utm_medium=github&utm_content=python_sdk_docs_link&utm_campaign=opik) for more configuration options.
|
|
242
242
|
|
|
243
243
|
You are now ready to start logging traces using the [Python SDK](https://www.comet.com/docs/opik/python-sdk-reference/?from=llm&utm_source=opik&utm_medium=github&utm_content=sdk_link2&utm_campaign=opik).
|
|
244
244
|
|
|
@@ -272,6 +272,7 @@ The easiest way to log traces is to use one of our direct integrations. Opik sup
|
|
|
272
272
|
| Groq | Log traces for Groq LLM calls | [Documentation](https://www.comet.com/docs/opik/integrations/groq?utm_source=opik&utm_medium=github&utm_content=groq_link&utm_campaign=opik) |
|
|
273
273
|
| Guardrails | Log traces for Guardrails AI validations | [Documentation](https://www.comet.com/docs/opik/integrations/guardrails-ai?utm_source=opik&utm_medium=github&utm_content=guardrails_link&utm_campaign=opik) |
|
|
274
274
|
| Haystack | Log traces for Haystack calls | [Documentation](https://www.comet.com/docs/opik/integrations/haystack?utm_source=opik&utm_medium=github&utm_content=haystack_link&utm_campaign=opik) |
|
|
275
|
+
| Harbor | Log traces for Harbor benchmark evaluation trials | [Documentation](https://www.comet.com/docs/opik/integrations/harbor?utm_source=opik&utm_medium=github&utm_content=harbor_link&utm_campaign=opik) |
|
|
275
276
|
| Instructor | Log traces for LLM calls made with Instructor | [Documentation](https://www.comet.com/docs/opik/integrations/instructor?utm_source=opik&utm_medium=github&utm_content=instructor_link&utm_campaign=opik) |
|
|
276
277
|
| LangChain (Python) | Log traces for LangChain LLM calls | [Documentation](https://www.comet.com/docs/opik/integrations/langchain?utm_source=opik&utm_medium=github&utm_content=langchain_link&utm_campaign=opik) |
|
|
277
278
|
| LangChain (JS/TS) | Log traces for LangChain JavaScript/TypeScript calls | [Documentation](https://www.comet.com/docs/opik/integrations/langchainjs?utm_source=opik&utm_medium=github&utm_content=langchainjs_link&utm_campaign=opik) |
|
|
@@ -48,8 +48,10 @@ setup(
|
|
|
48
48
|
# See: https://github.com/BerriAI/litellm/issues/14762
|
|
49
49
|
# - Exclude versions 1.77.5-1.79.1: remove trace_id/parent_span_id passthrough, fixed in 1.79.2+
|
|
50
50
|
# See: https://github.com/BerriAI/litellm/pull/15529
|
|
51
|
+
# - Exclude version 1.80.9: broken python 3.9 installation.
|
|
52
|
+
# See: https://github.com/BerriAI/litellm/issues/17701
|
|
51
53
|
# Please keep this list in sync with the one in sdks/opik_optimizer/pyproject.toml
|
|
52
|
-
"litellm>=1.79.2,!=1.75.0,!=1.75.1,!=1.75.2,!=1.75.3,!=1.75.4,!=1.75.5,!=1.77.3,!=1.77.4,!=1.77.5,!=1.77.7,!=1.78.0,!=1.78.2,!=1.78.3,!=1.78.4,!=1.78.5,!=1.78.6,!=1.78.7,!=1.79.0,!=1.79.1",
|
|
54
|
+
"litellm>=1.79.2,!=1.75.0,!=1.75.1,!=1.75.2,!=1.75.3,!=1.75.4,!=1.75.5,!=1.77.3,!=1.77.4,!=1.77.5,!=1.77.7,!=1.78.0,!=1.78.2,!=1.78.3,!=1.78.4,!=1.78.5,!=1.78.6,!=1.78.7,!=1.79.0,!=1.79.1,!=1.80.9",
|
|
53
55
|
"openai",
|
|
54
56
|
"pydantic-settings>=2.0.0,<3.0.0,!=2.9.0",
|
|
55
57
|
"pydantic>=2.0.0,<3.0.0",
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import dataclasses
|
|
2
|
+
from typing import Literal
|
|
3
|
+
|
|
4
|
+
from . import attachment
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@dataclasses.dataclass
|
|
8
|
+
class AttachmentWithContext:
|
|
9
|
+
"""
|
|
10
|
+
Represents an attachment along with its associated context.
|
|
11
|
+
|
|
12
|
+
This class is used to pair an attachment with additional contextual
|
|
13
|
+
information such as the entity type, entity ID, project name, and
|
|
14
|
+
context description. It is specifically useful when dealing with
|
|
15
|
+
attachments related to entities like spans or traces. The context
|
|
16
|
+
can help provide further insights or classification of the
|
|
17
|
+
attachment's purpose.
|
|
18
|
+
|
|
19
|
+
Attributes:
|
|
20
|
+
attachment_data: The actual attachment
|
|
21
|
+
object containing the associated data.
|
|
22
|
+
entity_type: The type of entity the
|
|
23
|
+
attachment is associated with. It must be either "span"
|
|
24
|
+
or "trace".
|
|
25
|
+
entity_id: The unique identifier of the related entity.
|
|
26
|
+
project_name: The name of the project to which the
|
|
27
|
+
attachment and its entity belong.
|
|
28
|
+
context: A brief context description for the attachment,
|
|
29
|
+
explaining its purpose or relevance.
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
attachment_data: attachment.Attachment
|
|
33
|
+
entity_type: Literal["span", "trace"]
|
|
34
|
+
entity_id: str
|
|
35
|
+
project_name: str
|
|
36
|
+
context: str
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import re
|
|
2
|
+
from typing import Dict, Any, Literal, List, NamedTuple
|
|
3
|
+
|
|
4
|
+
from . import attachment, attachment_context, decoder_base64
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class ExtractionResult(NamedTuple):
|
|
8
|
+
attachments: List[attachment.Attachment]
|
|
9
|
+
sanitized_data: Any
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class AttachmentsExtractor:
|
|
13
|
+
"""
|
|
14
|
+
Extracts and processes attachments embedded as Base64 strings within data structures.
|
|
15
|
+
|
|
16
|
+
This class is designed to identify and decode Base64-encoded attachments located
|
|
17
|
+
within the provided data. It uses a regular expression pattern to search for
|
|
18
|
+
Base64 strings that meet a specified minimum length. Extracted attachments are
|
|
19
|
+
decoded and replaced with sanitized placeholders in the original data.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
def __init__(self, min_attachment_size: int):
|
|
23
|
+
"""
|
|
24
|
+
Initializes the class with a minimum attachment size and configures the base64
|
|
25
|
+
pattern for decoding attachments based on its length.
|
|
26
|
+
|
|
27
|
+
Args:
|
|
28
|
+
min_attachment_size: The minimum size of the attachment in characters
|
|
29
|
+
for it to be considered valid. This ensures that only large enough
|
|
30
|
+
base64 strings are matched to minimize false positives.
|
|
31
|
+
"""
|
|
32
|
+
self._min_attachment_size = min_attachment_size
|
|
33
|
+
self.decoder = decoder_base64.Base64AttachmentDecoder()
|
|
34
|
+
|
|
35
|
+
# Pattern to match base64 strings (can be embedded in text)
|
|
36
|
+
# Requires at least min_attachment_size characters to reduce false positives
|
|
37
|
+
min_base64_groups = int(min_attachment_size / 4)
|
|
38
|
+
BASE64_PATTERN = (
|
|
39
|
+
r"(?:[A-Za-z0-9+/]{4}){"
|
|
40
|
+
+ str(min_base64_groups)
|
|
41
|
+
+ ",}(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?"
|
|
42
|
+
)
|
|
43
|
+
self.pattern = re.compile(BASE64_PATTERN)
|
|
44
|
+
|
|
45
|
+
def extract_and_replace(
|
|
46
|
+
self,
|
|
47
|
+
data: Dict[str, Any],
|
|
48
|
+
entity_type: Literal["span", "trace"],
|
|
49
|
+
entity_id: str,
|
|
50
|
+
project_name: str,
|
|
51
|
+
context: Literal["input", "output", "metadata"],
|
|
52
|
+
) -> List[attachment_context.AttachmentWithContext]:
|
|
53
|
+
# iterate over all items and extract attachments
|
|
54
|
+
attachments: List[attachment_context.AttachmentWithContext] = []
|
|
55
|
+
for key, value in data.items():
|
|
56
|
+
extraction_result = self._try_extract_attachments(value, context)
|
|
57
|
+
if extraction_result.attachments:
|
|
58
|
+
# replace the original value with the sanitized one and collect attachments
|
|
59
|
+
data[key] = extraction_result.sanitized_data
|
|
60
|
+
for extracted_attachment in extraction_result.attachments:
|
|
61
|
+
attachments.append(
|
|
62
|
+
attachment_context.AttachmentWithContext(
|
|
63
|
+
attachment_data=extracted_attachment,
|
|
64
|
+
entity_type=entity_type,
|
|
65
|
+
entity_id=entity_id,
|
|
66
|
+
project_name=project_name,
|
|
67
|
+
context=context,
|
|
68
|
+
)
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
return attachments
|
|
72
|
+
|
|
73
|
+
def _try_extract_attachments(
|
|
74
|
+
self, data: Any, context: Literal["input", "output", "metadata"]
|
|
75
|
+
) -> ExtractionResult:
|
|
76
|
+
"""
|
|
77
|
+
Recursively extract attachments from data that can be a string, dict, list, or other type.
|
|
78
|
+
|
|
79
|
+
Args:
|
|
80
|
+
data: The data to process (can be str, dict, list, or other types)
|
|
81
|
+
context: The context where the data is located (input, output, or metadata)
|
|
82
|
+
|
|
83
|
+
Returns:
|
|
84
|
+
ExtractionResult with extracted attachments and sanitized data
|
|
85
|
+
"""
|
|
86
|
+
# Handle string data - check for base64 attachments
|
|
87
|
+
if isinstance(data, str):
|
|
88
|
+
return self._extract_from_string(data, context)
|
|
89
|
+
|
|
90
|
+
# Handle dictionary data - recursively process each value
|
|
91
|
+
elif isinstance(data, dict):
|
|
92
|
+
return self._extract_from_dict(data, context)
|
|
93
|
+
|
|
94
|
+
# Handle list data - recursively process each element
|
|
95
|
+
elif isinstance(data, list):
|
|
96
|
+
return self._extract_from_list(data, context)
|
|
97
|
+
|
|
98
|
+
# For other types (int, bool, None, etc.), return as-is
|
|
99
|
+
else:
|
|
100
|
+
return ExtractionResult(attachments=[], sanitized_data=data)
|
|
101
|
+
|
|
102
|
+
def _extract_from_string(
|
|
103
|
+
self, data: str, context: Literal["input", "output", "metadata"]
|
|
104
|
+
) -> ExtractionResult:
|
|
105
|
+
"""Extract attachments from a string value."""
|
|
106
|
+
if len(data) < self._min_attachment_size:
|
|
107
|
+
# skip short strings
|
|
108
|
+
return ExtractionResult(attachments=[], sanitized_data=data)
|
|
109
|
+
|
|
110
|
+
attachments: List[attachment.Attachment] = []
|
|
111
|
+
sanitized_data = data
|
|
112
|
+
for match in self.pattern.finditer(data):
|
|
113
|
+
to_decode = match.group()
|
|
114
|
+
decoded_attachment = self.decoder.decode(to_decode, context)
|
|
115
|
+
if decoded_attachment is not None:
|
|
116
|
+
attachments.append(decoded_attachment)
|
|
117
|
+
sanitized_data = sanitized_data.replace(
|
|
118
|
+
to_decode, f"[{decoded_attachment.file_name}]"
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
return ExtractionResult(attachments=attachments, sanitized_data=sanitized_data)
|
|
122
|
+
|
|
123
|
+
def _extract_from_dict(
|
|
124
|
+
self, data: Dict[str, Any], context: Literal["input", "output", "metadata"]
|
|
125
|
+
) -> ExtractionResult:
|
|
126
|
+
"""Recursively extract attachments from a dictionary."""
|
|
127
|
+
all_attachments: List[attachment.Attachment] = []
|
|
128
|
+
sanitized_dict = {}
|
|
129
|
+
|
|
130
|
+
for key, value in data.items():
|
|
131
|
+
result = self._try_extract_attachments(value, context)
|
|
132
|
+
sanitized_dict[key] = result.sanitized_data
|
|
133
|
+
all_attachments.extend(result.attachments)
|
|
134
|
+
|
|
135
|
+
return ExtractionResult(
|
|
136
|
+
attachments=all_attachments, sanitized_data=sanitized_dict
|
|
137
|
+
)
|
|
138
|
+
|
|
139
|
+
def _extract_from_list(
|
|
140
|
+
self, data: List[Any], context: Literal["input", "output", "metadata"]
|
|
141
|
+
) -> ExtractionResult:
|
|
142
|
+
"""Recursively extract attachments from a list."""
|
|
143
|
+
all_attachments: List[attachment.Attachment] = []
|
|
144
|
+
sanitized_list = []
|
|
145
|
+
|
|
146
|
+
for item in data:
|
|
147
|
+
result = self._try_extract_attachments(item, context)
|
|
148
|
+
sanitized_list.append(result.sanitized_data)
|
|
149
|
+
all_attachments.extend(result.attachments)
|
|
150
|
+
|
|
151
|
+
return ExtractionResult(
|
|
152
|
+
attachments=all_attachments, sanitized_data=sanitized_list
|
|
153
|
+
)
|
|
@@ -13,6 +13,7 @@ def attachment_to_message(
|
|
|
13
13
|
entity_id: str,
|
|
14
14
|
project_name: str,
|
|
15
15
|
url_override: str,
|
|
16
|
+
delete_after_upload: bool = False,
|
|
16
17
|
) -> messages.CreateAttachmentMessage:
|
|
17
18
|
if attachment_data.data is None:
|
|
18
19
|
raise ValueError("Attachment data cannot be None")
|
|
@@ -32,6 +33,7 @@ def attachment_to_message(
|
|
|
32
33
|
entity_id=entity_id,
|
|
33
34
|
project_name=project_name,
|
|
34
35
|
encoded_url_override=base_url_path,
|
|
36
|
+
delete_after_upload=delete_after_upload,
|
|
35
37
|
)
|
|
36
38
|
|
|
37
39
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import abc
|
|
2
|
+
from typing import Any, Optional
|
|
3
|
+
|
|
4
|
+
from . import attachment
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class AttachmentDecoder(abc.ABC):
|
|
8
|
+
"""
|
|
9
|
+
Abstract base class for decoding file attachments.
|
|
10
|
+
|
|
11
|
+
This class serves as an interface for decoding raw attachment data into
|
|
12
|
+
an `Attachment` object. Implementing classes should define the specific
|
|
13
|
+
logic to handle various attachment decoding formats.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
@abc.abstractmethod
|
|
17
|
+
def decode(self, raw_data: str, **kwargs: Any) -> Optional[attachment.Attachment]:
|
|
18
|
+
pass
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import base64
|
|
2
|
+
import binascii
|
|
3
|
+
import logging
|
|
4
|
+
import tempfile
|
|
5
|
+
from typing import Any, Optional, Literal
|
|
6
|
+
|
|
7
|
+
from . import attachment, decoder, decoder_helpers
|
|
8
|
+
|
|
9
|
+
LOGGER = logging.getLogger(__name__)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Base64AttachmentDecoder(decoder.AttachmentDecoder):
|
|
13
|
+
"""Decodes base64 encoded attachment data.
|
|
14
|
+
|
|
15
|
+
This decoder decodes base64 strings, detects MIME types from content, and creates Attachment objects.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
def decode(
|
|
19
|
+
self,
|
|
20
|
+
raw_data: str,
|
|
21
|
+
context: Literal["input", "output", "metadata"] = "input",
|
|
22
|
+
**kwargs: Any,
|
|
23
|
+
) -> Optional[attachment.Attachment]:
|
|
24
|
+
"""Decode base64 encoded data into an Attachment object.
|
|
25
|
+
|
|
26
|
+
Args:
|
|
27
|
+
raw_data: Base64 encoded string data
|
|
28
|
+
context: Context string for filename generation.
|
|
29
|
+
|
|
30
|
+
Returns:
|
|
31
|
+
Attachment object with decoded data, or None if decoding fails or type is not recognizable
|
|
32
|
+
"""
|
|
33
|
+
if not isinstance(raw_data, str):
|
|
34
|
+
LOGGER.warning("Attachment data is not a string, skipping.")
|
|
35
|
+
return None
|
|
36
|
+
|
|
37
|
+
try:
|
|
38
|
+
# Decode base64 string to bytes
|
|
39
|
+
decoded_bytes = base64.b64decode(raw_data, validate=True)
|
|
40
|
+
|
|
41
|
+
# Detect MIME type from content
|
|
42
|
+
mime_type = decoder_helpers.detect_mime_type(decoded_bytes)
|
|
43
|
+
|
|
44
|
+
# Skip if not a recognizable file type
|
|
45
|
+
if not mime_type or mime_type in ("application/octet-stream", "text/plain"):
|
|
46
|
+
LOGGER.debug("Attachment type is not recognized, skipping.")
|
|
47
|
+
return None
|
|
48
|
+
|
|
49
|
+
# Get file extension from the MIME type
|
|
50
|
+
extension = decoder_helpers.get_file_extension(mime_type)
|
|
51
|
+
|
|
52
|
+
# Generate filename
|
|
53
|
+
file_name = decoder_helpers.create_attachment_filename(
|
|
54
|
+
context, extension=extension
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
# Save decoded bytes to a temporary file
|
|
58
|
+
temp_file = tempfile.NamedTemporaryFile(
|
|
59
|
+
mode="wb", delete=False, suffix=extension
|
|
60
|
+
)
|
|
61
|
+
temp_file.write(decoded_bytes)
|
|
62
|
+
temp_file.flush()
|
|
63
|
+
temp_file.close()
|
|
64
|
+
|
|
65
|
+
# Return Attachment object with a file path
|
|
66
|
+
return attachment.Attachment(
|
|
67
|
+
data=temp_file.name, file_name=file_name, content_type=mime_type
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
except (ValueError, binascii.Error) as e:
|
|
71
|
+
LOGGER.debug(
|
|
72
|
+
"Failed to decode attachment data, reason: invalid base64. Reason: %s",
|
|
73
|
+
e,
|
|
74
|
+
exc_info=True,
|
|
75
|
+
)
|
|
76
|
+
# Not valid base64, return None
|
|
77
|
+
return None
|
|
78
|
+
except Exception as ex:
|
|
79
|
+
LOGGER.warning(
|
|
80
|
+
"Failed to decode attachment data, reason: %s", ex, exc_info=True
|
|
81
|
+
)
|
|
82
|
+
# Unexpected error, return None to avoid crashing the pipeline
|
|
83
|
+
return None
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import mimetypes
|
|
2
|
+
import random
|
|
3
|
+
import time
|
|
4
|
+
from typing import Optional
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# The attachment file name regex
|
|
8
|
+
ATTACHMENT_FILE_NAME_REGEX = r"(?:input|output|metadata)-attachment-\d+-\d+-sdk\.\w+"
|
|
9
|
+
ATTACHMENT_FILE_NAME_PLACEHOLDER_REGEX = (
|
|
10
|
+
r"\[((?:input|output|metadata)-attachment-\d+-\d+-sdk\.\w+)\]"
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def get_file_extension(mime_type: str) -> str:
|
|
15
|
+
"""Convert MIME type to file extension.
|
|
16
|
+
|
|
17
|
+
Mirrors the Java getFileExtension() method in AttachmentStripperService.
|
|
18
|
+
|
|
19
|
+
Args:
|
|
20
|
+
mime_type: The MIME type (e.g., "image/png", "application/pdf")
|
|
21
|
+
|
|
22
|
+
Returns:
|
|
23
|
+
File extension without a leading dot (e.g., "png", "pdf")
|
|
24
|
+
"""
|
|
25
|
+
if not mime_type:
|
|
26
|
+
return "bin"
|
|
27
|
+
|
|
28
|
+
# Try to get extension from mimetypes module
|
|
29
|
+
extension = mimetypes.guess_extension(mime_type, strict=False)
|
|
30
|
+
|
|
31
|
+
if extension:
|
|
32
|
+
# Remove the leading dot
|
|
33
|
+
extension = extension.lstrip(".")
|
|
34
|
+
# Handle special cases where mimetypes returns less common extensions
|
|
35
|
+
if mime_type == "image/jpeg" and extension == "jpe":
|
|
36
|
+
return "jpg"
|
|
37
|
+
return extension
|
|
38
|
+
|
|
39
|
+
# Fallback: extract from the MIME type (e.g., "image/png" -> "png")
|
|
40
|
+
if "/" in mime_type:
|
|
41
|
+
subtype = mime_type.split("/")[1]
|
|
42
|
+
# Handle special cases like "svg+xml" -> "svg"
|
|
43
|
+
if "+" in subtype:
|
|
44
|
+
subtype = subtype.split("+")[0]
|
|
45
|
+
# Remove any parameters (e.g., "jpeg; charset=utf-8" -> "jpeg")
|
|
46
|
+
subtype = subtype.split(";")[0].strip()
|
|
47
|
+
return subtype
|
|
48
|
+
|
|
49
|
+
return "bin"
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def detect_mime_type(data: bytes) -> Optional[str]:
|
|
53
|
+
"""Detect MIME type from byte content using magic bytes.
|
|
54
|
+
|
|
55
|
+
This provides basic MIME type detection similar to Apache Tika in the Java implementation.
|
|
56
|
+
It checks common file format magic bytes.
|
|
57
|
+
|
|
58
|
+
Args:
|
|
59
|
+
data: The byte data to analyze
|
|
60
|
+
|
|
61
|
+
Returns:
|
|
62
|
+
Detected MIME type string, or "application/octet-stream" if unknown
|
|
63
|
+
"""
|
|
64
|
+
if len(data) < 4:
|
|
65
|
+
return "application/octet-stream"
|
|
66
|
+
|
|
67
|
+
# Check common file format magic bytes
|
|
68
|
+
# PNG
|
|
69
|
+
if data[:8] == b"\x89PNG\r\n\x1a\n":
|
|
70
|
+
return "image/png"
|
|
71
|
+
|
|
72
|
+
# JPEG
|
|
73
|
+
if data[:2] == b"\xff\xd8" and data[-2:] == b"\xff\xd9":
|
|
74
|
+
return "image/jpeg"
|
|
75
|
+
|
|
76
|
+
# GIF
|
|
77
|
+
if data[:6] in (b"GIF87a", b"GIF89a"):
|
|
78
|
+
return "image/gif"
|
|
79
|
+
|
|
80
|
+
# PDF
|
|
81
|
+
if data[:4] == b"%PDF":
|
|
82
|
+
return "application/pdf"
|
|
83
|
+
|
|
84
|
+
# WebP
|
|
85
|
+
if data[:4] == b"RIFF" and data[8:12] == b"WEBP":
|
|
86
|
+
return "image/webp"
|
|
87
|
+
|
|
88
|
+
# SVG (XML-based, check for SVG tag)
|
|
89
|
+
try:
|
|
90
|
+
text = data[:1024].decode("utf-8", errors="ignore")
|
|
91
|
+
if "<svg" in text.lower():
|
|
92
|
+
return "image/svg+xml"
|
|
93
|
+
except Exception:
|
|
94
|
+
pass
|
|
95
|
+
|
|
96
|
+
# MP4
|
|
97
|
+
if len(data) >= 12 and data[4:8] == b"ftyp":
|
|
98
|
+
return "video/mp4"
|
|
99
|
+
|
|
100
|
+
# JSON
|
|
101
|
+
try:
|
|
102
|
+
text = data[:100].decode("utf-8", errors="strict").strip()
|
|
103
|
+
if text.startswith("{") or text.startswith("["):
|
|
104
|
+
return "application/json"
|
|
105
|
+
except Exception:
|
|
106
|
+
pass
|
|
107
|
+
|
|
108
|
+
# Default to octet-stream for unknown types
|
|
109
|
+
return "application/octet-stream"
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
def create_attachment_filename(context: str, extension: str) -> str:
|
|
113
|
+
"""
|
|
114
|
+
Generates a unique attachment filename based on the provided context and file extension.
|
|
115
|
+
|
|
116
|
+
This function creates a filename by combining the given context, a randomly generated
|
|
117
|
+
prefix to ensure uniqueness, the current timestamp in milliseconds, and the provided
|
|
118
|
+
file extension. The generated filename aligns with the backend convention for naming
|
|
119
|
+
attachments, which includes specific formatting and structure.
|
|
120
|
+
|
|
121
|
+
Args:
|
|
122
|
+
context: The context to use as the base for the filename (e.g., "input",
|
|
123
|
+
"output", or "metadata").
|
|
124
|
+
extension: The file extension to use for the filename (e.g., "png",
|
|
125
|
+
"jpg", "txt").
|
|
126
|
+
|
|
127
|
+
Returns:
|
|
128
|
+
A generated filename string in the format
|
|
129
|
+
"{context}-attachment-{random_prefix}-{timestamp}.{extension}".
|
|
130
|
+
"""
|
|
131
|
+
# The backend has the following naming convention: r"\\[((?:input|output|metadata)-attachment-\\d+-\\d+\\.\\w+)\\]"
|
|
132
|
+
# Example: [input-attachment-1-1704067200000.png]
|
|
133
|
+
|
|
134
|
+
timestamp = int(round(time.time() * 1000))
|
|
135
|
+
# we need to generate a large enough random prefix to avoid collisions
|
|
136
|
+
random_prefix = random.randint(1, 99999999)
|
|
137
|
+
return f"{context}-attachment-{random_prefix}-{timestamp}-sdk.{extension}"
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
import copy
|
|
1
2
|
import logging
|
|
2
|
-
import opik.jsonable_encoder as jsonable_encoder
|
|
3
3
|
from typing import Any, Dict, List, Mapping, Optional, Tuple
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
from opik import id_helpers
|
|
6
|
+
import opik.jsonable_encoder as jsonable_encoder
|
|
7
|
+
|
|
5
8
|
from ..prompt import base_prompt
|
|
6
9
|
|
|
10
|
+
|
|
7
11
|
LOGGER = logging.getLogger(__name__)
|
|
8
12
|
|
|
9
13
|
PromptVersion = Dict[str, str]
|
|
@@ -74,3 +78,12 @@ def handle_prompt_args(
|
|
|
74
78
|
prompts = None
|
|
75
79
|
|
|
76
80
|
return prompts
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
def generate_unique_experiment_name(experiment_name_prefix: Optional[str]) -> str:
|
|
84
|
+
if experiment_name_prefix is None:
|
|
85
|
+
return id_helpers.generate_random_alphanumeric_string(12)
|
|
86
|
+
|
|
87
|
+
return (
|
|
88
|
+
f"{experiment_name_prefix}-{id_helpers.generate_random_alphanumeric_string(6)}"
|
|
89
|
+
)
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import contextlib
|
|
2
2
|
from typing import Iterator, List
|
|
3
3
|
from typing import Optional
|
|
4
|
+
|
|
4
5
|
from . import opik_client
|
|
5
|
-
from ..message_processing import message_processors_chain
|
|
6
6
|
from ..message_processing.emulation import local_emulator_message_processor, models
|
|
7
|
+
from ..message_processing.processors import message_processors_chain
|
|
7
8
|
|
|
8
9
|
|
|
9
10
|
class _LocalRecordingHandle:
|
|
@@ -53,7 +54,7 @@ def record_traces_locally(
|
|
|
53
54
|
|
|
54
55
|
# Disallow nested/local concurrent recordings in the same process
|
|
55
56
|
existing_local = message_processors_chain.get_local_emulator_message_processor(
|
|
56
|
-
chain=client.
|
|
57
|
+
chain=client.__internal_api__message_processor__
|
|
57
58
|
)
|
|
58
59
|
if existing_local is not None and existing_local.is_active():
|
|
59
60
|
raise RuntimeError(
|
|
@@ -61,10 +62,10 @@ def record_traces_locally(
|
|
|
61
62
|
)
|
|
62
63
|
|
|
63
64
|
message_processors_chain.toggle_local_emulator_message_processor(
|
|
64
|
-
active=True, chain=client.
|
|
65
|
+
active=True, chain=client.__internal_api__message_processor__, reset=True
|
|
65
66
|
)
|
|
66
67
|
local = message_processors_chain.get_local_emulator_message_processor(
|
|
67
|
-
chain=client.
|
|
68
|
+
chain=client.__internal_api__message_processor__
|
|
68
69
|
)
|
|
69
70
|
if local is None:
|
|
70
71
|
# Should not happen given the default chain, but guard just in case
|
|
@@ -76,5 +77,5 @@ def record_traces_locally(
|
|
|
76
77
|
finally:
|
|
77
78
|
client.flush()
|
|
78
79
|
message_processors_chain.toggle_local_emulator_message_processor(
|
|
79
|
-
active=False, chain=client.
|
|
80
|
+
active=False, chain=client.__internal_api__message_processor__, reset=True
|
|
80
81
|
)
|