opik 1.9.33__tar.gz → 1.9.38__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.33/src/opik.egg-info → opik-1.9.38}/PKG-INFO +2 -1
- {opik-1.9.33 → opik-1.9.38}/src/opik/__init__.py +2 -1
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/dataset/rest_operations.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/experiment/experiment.py +31 -5
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/experiment/helpers.py +19 -8
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/opik_client.py +177 -42
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/opik_query_language.py +9 -0
- opik-1.9.38/src/opik/api_objects/prompt/__init__.py +17 -0
- opik-1.9.38/src/opik/api_objects/prompt/base_prompt.py +69 -0
- opik-1.9.38/src/opik/api_objects/prompt/base_prompt_template.py +29 -0
- opik-1.9.38/src/opik/api_objects/prompt/chat/__init__.py +1 -0
- opik-1.9.38/src/opik/api_objects/prompt/chat/chat_prompt.py +193 -0
- opik-1.9.38/src/opik/api_objects/prompt/chat/chat_prompt_template.py +350 -0
- opik-1.9.33/src/opik/api_objects/prompt/chat_content_renderer_registry.py → opik-1.9.38/src/opik/api_objects/prompt/chat/content_renderer_registry.py +31 -34
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/prompt/client.py +101 -30
- opik-1.9.38/src/opik/api_objects/prompt/text/__init__.py +1 -0
- {opik-1.9.33/src/opik/api_objects/prompt → opik-1.9.38/src/opik/api_objects/prompt/text}/prompt.py +55 -32
- {opik-1.9.33/src/opik/api_objects/prompt → opik-1.9.38/src/opik/api_objects/prompt/text}/prompt_template.py +8 -5
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/export.py +6 -2
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/base_track_decorator.py +36 -38
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/evaluation_result.py +4 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/evaluator.py +144 -15
- opik-1.9.38/src/opik/evaluation/models/litellm/util.py +141 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/report.py +14 -2
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/rest_operations.py +4 -3
- opik-1.9.38/src/opik/evaluation/types.py +13 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/exceptions.py +17 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/opik_context.py +5 -5
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/__init__.py +115 -11
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/dashboards/client.py +65 -2
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/dashboards/raw_client.py +82 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/datasets/client.py +146 -2
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/datasets/raw_client.py +226 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/experiments/client.py +30 -2
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/experiments/raw_client.py +26 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/optimizations/client.py +302 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/optimizations/raw_client.py +463 -0
- opik-1.9.38/src/opik/rest_api/optimizations/types/optimization_update_status.py +7 -0
- opik-1.9.38/src/opik/rest_api/prompts/__init__.py +7 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/prompts/client.py +34 -4
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/prompts/raw_client.py +32 -2
- opik-1.9.38/src/opik/rest_api/prompts/types/__init__.py +9 -0
- opik-1.9.38/src/opik/rest_api/prompts/types/create_prompt_version_detail_template_structure.py +5 -0
- opik-1.9.38/src/opik/rest_api/prompts/types/prompt_write_template_structure.py +5 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/__init__.py +113 -11
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/aggregation_data.py +1 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator.py +23 -1
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_llm_as_judge.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_llm_as_judge_public.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_llm_as_judge_write.py +2 -0
- opik-1.9.33/src/opik/rest_api/types/automation_rule_evaluator_object_public.py → opik-1.9.38/src/opik/rest_api/types/automation_rule_evaluator_object_object_public.py +32 -10
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_page_public.py +2 -2
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_public.py +23 -1
- opik-1.9.38/src/opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge.py +22 -0
- opik-1.9.38/src/opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge_public.py +22 -0
- opik-1.9.38/src/opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge_write.py +22 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_public.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_write.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_public.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_write.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_update.py +23 -1
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_update_llm_as_judge.py +2 -0
- opik-1.9.38/src/opik/rest_api/types/automation_rule_evaluator_update_span_llm_as_judge.py +22 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_update_trace_thread_llm_as_judge.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_update_trace_thread_user_defined_metric_python.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_update_user_defined_metric_python.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_public.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_write.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/automation_rule_evaluator_write.py +23 -1
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dashboard_page_public.py +1 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item.py +1 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_compare.py +1 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_page_compare.py +1 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_page_public.py +1 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_public.py +1 -0
- opik-1.9.38/src/opik/rest_api/types/dataset_version_diff.py +22 -0
- opik-1.9.38/src/opik/rest_api/types/dataset_version_diff_stats.py +24 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_public.py +2 -0
- opik-1.9.38/src/opik/rest_api/types/experiment_score.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/experiment_score_public.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/experiment_score_write.py +20 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_public.py +4 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/optimization.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/optimization_public.py +2 -0
- opik-1.9.38/src/opik/rest_api/types/optimization_public_status.py +7 -0
- opik-1.9.38/src/opik/rest_api/types/optimization_status.py +7 -0
- opik-1.9.38/src/opik/rest_api/types/optimization_studio_config.py +27 -0
- opik-1.9.38/src/opik/rest_api/types/optimization_studio_config_public.py +27 -0
- opik-1.9.38/src/opik/rest_api/types/optimization_studio_config_write.py +27 -0
- opik-1.9.38/src/opik/rest_api/types/optimization_studio_log.py +22 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/optimization_write.py +2 -0
- opik-1.9.38/src/opik/rest_api/types/optimization_write_status.py +7 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt.py +6 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_detail.py +6 -0
- opik-1.9.38/src/opik/rest_api/types/prompt_detail_template_structure.py +5 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_public.py +6 -0
- opik-1.9.38/src/opik/rest_api/types/prompt_public_template_structure.py +5 -0
- opik-1.9.38/src/opik/rest_api/types/prompt_template_structure.py +5 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version_detail.py +2 -0
- opik-1.9.38/src/opik/rest_api/types/prompt_version_detail_template_structure.py +5 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version_public.py +2 -0
- opik-1.9.38/src/opik/rest_api/types/prompt_version_public_template_structure.py +5 -0
- opik-1.9.38/src/opik/rest_api/types/prompt_version_template_structure.py +5 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/score_name.py +1 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/service_toggles_config.py +4 -0
- opik-1.9.38/src/opik/rest_api/types/span_filter.py +23 -0
- opik-1.9.38/src/opik/rest_api/types/span_filter_operator.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/span_filter_write.py +23 -0
- opik-1.9.38/src/opik/rest_api/types/span_filter_write_operator.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/span_llm_as_judge_code.py +27 -0
- opik-1.9.38/src/opik/rest_api/types/span_llm_as_judge_code_public.py +27 -0
- opik-1.9.38/src/opik/rest_api/types/span_llm_as_judge_code_write.py +27 -0
- opik-1.9.38/src/opik/rest_api/types/studio_evaluation.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/studio_evaluation_public.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/studio_evaluation_write.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/studio_llm_model.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/studio_llm_model_public.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/studio_llm_model_write.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/studio_message.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/studio_message_public.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/studio_message_write.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/studio_metric.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/studio_metric_public.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/studio_metric_write.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/studio_optimizer.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/studio_optimizer_public.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/studio_optimizer_write.py +21 -0
- opik-1.9.38/src/opik/rest_api/types/studio_prompt.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/studio_prompt_public.py +20 -0
- opik-1.9.38/src/opik/rest_api/types/studio_prompt_write.py +20 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace.py +5 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_public.py +5 -0
- opik-1.9.38/src/opik/rest_api/types/trace_thread_filter_write.py +23 -0
- opik-1.9.38/src/opik/rest_api/types/trace_thread_filter_write_operator.py +21 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/value_entry.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/value_entry_compare.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/value_entry_experiment_item_bulk_write_view.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/value_entry_public.py +2 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/synchronization.py +5 -6
- {opik-1.9.33 → opik-1.9.38/src/opik.egg-info}/PKG-INFO +2 -1
- {opik-1.9.33 → opik-1.9.38}/src/opik.egg-info/SOURCES.txt +58 -5
- opik-1.9.33/src/opik/api_objects/prompt/__init__.py +0 -9
- opik-1.9.33/src/opik/api_objects/prompt/chat_prompt_template.py +0 -200
- opik-1.9.33/src/opik/evaluation/models/litellm/util.py +0 -69
- opik-1.9.33/src/opik/evaluation/types.py +0 -5
- opik-1.9.33/src/opik/rest_api/optimizations/types/optimization_update_status.py +0 -5
- opik-1.9.33/src/opik/rest_api/prompts/__init__.py +0 -7
- opik-1.9.33/src/opik/rest_api/prompts/types/__init__.py +0 -7
- opik-1.9.33/src/opik/rest_api/types/optimization_public_status.py +0 -5
- opik-1.9.33/src/opik/rest_api/types/optimization_status.py +0 -5
- opik-1.9.33/src/opik/rest_api/types/optimization_write_status.py +0 -5
- {opik-1.9.33 → opik-1.9.38}/LICENSE +0 -0
- {opik-1.9.33 → opik-1.9.38}/README.md +0 -0
- {opik-1.9.33 → opik-1.9.38}/pyproject.toml +0 -0
- {opik-1.9.33 → opik-1.9.38}/setup.cfg +0 -0
- {opik-1.9.33 → opik-1.9.38}/setup.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/_logging.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/anonymizer/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/anonymizer/anonymizer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/anonymizer/factory.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/anonymizer/recursive_anonymizer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/anonymizer/rules.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/anonymizer/rules_anonymizer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_key/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_key/base64_helper.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_key/opik_api_key.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/attachment/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/attachment/attachment.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/attachment/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/attachment/converters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/constants.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/conversation/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/conversation/conversation_factory.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/conversation/conversation_thread.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/data_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/dataset/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/dataset/converters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/dataset/dataset.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/dataset/dataset_item.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/experiment/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/experiment/experiment_item.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/experiment/experiments_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/experiment/rest_operations.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/feedback_score/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/feedback_score/converters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/local_recording.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/optimization/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/optimization/optimization.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/prompt/types.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/rest_stream_parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/search_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/span/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/span/converters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/span/span_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/span/span_data.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/threads/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/threads/threads_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/trace/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/trace/converters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/trace/migration.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/trace/trace_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/trace/trace_data.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/api_objects/validation_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/__main__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/configure.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/healthcheck.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/import_command.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/main.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/proxy.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/usage_report/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/usage_report/charts.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/usage_report/cli.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/usage_report/constants.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/usage_report/extraction.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/usage_report/pdf.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/usage_report/statistics.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/cli/usage_report/utils.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/config.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/configurator/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/configurator/configure.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/configurator/interactive_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/configurator/opik_rest_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/context_storage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/datetime_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/arguments_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/context_manager/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/context_manager/span_context_manager.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/context_manager/trace_context_manager.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/error_info_collector.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/generator_wrappers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/inspect_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/opik_args/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/opik_args/api_classes.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/opik_args/helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/span_creation_handler.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/decorator/tracker.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/dict_utils.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/environment.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/api.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/before_send.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/environment_details.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/error_filtering/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/error_filtering/event_filter.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/error_filtering/filter_by_count.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/error_filtering/filter_by_response_status_code.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/error_filtering/filter_chain.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/error_filtering/filter_chain_builder.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/logger_setup.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/shutdown_hooks.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/types.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/error_tracking/user_details.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/asyncio_support.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/engine/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/engine/engine.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/engine/evaluation_tasks_executor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/engine/exception_analyzer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/engine/helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/engine/metrics_evaluator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/engine/types.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/aggregated_metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/arguments_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/arguments_validator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/base_metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/conversation_thread_metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/conversation_turns_factory.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/g_eval_wrappers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/heuristics/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/heuristics/degeneration/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/heuristics/degeneration/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/heuristics/degeneration/phrases.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/heuristics/knowledge_retention/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/heuristics/knowledge_retention/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/schema.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/templates.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/g_eval_wrappers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/session_completeness/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/session_completeness/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/session_completeness/schema.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/session_completeness/templates.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/user_frustration/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/user_frustration/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/user_frustration/schema.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/llm_judges/user_frustration/templates.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation/types.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/conversation_types.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/bertscore.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/bleu.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/chrf.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/contains.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/distribution_metrics.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/equals.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/gleu.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/is_json.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/language_adherence.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/levenshtein_ratio.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/meteor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/prompt_injection.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/readability.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/regex_match.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/rouge.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/sentiment.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/spearman.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/tone.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/heuristics/vader_sentiment.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/answer_relevance/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/answer_relevance/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/answer_relevance/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/answer_relevance/templates.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/context_precision/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/context_precision/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/context_precision/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/context_precision/template.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/context_recall/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/context_recall/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/context_recall/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/context_recall/template.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/factuality/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/factuality/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/factuality/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/factuality/template.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval/presets.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval/template.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/agent_assessment.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/bias_classifier.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/compliance_risk.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/prompt_uncertainty.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/g_eval_presets/qa_suite.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/hallucination/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/hallucination/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/hallucination/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/hallucination/template.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/llm_juries/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/llm_juries/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/moderation/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/moderation/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/moderation/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/moderation/template.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/parsing_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/schema.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/structure_output_compliance/template.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/syc_eval/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/syc_eval/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/syc_eval/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/syc_eval/template.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/trajectory_accuracy/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/trajectory_accuracy/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/trajectory_accuracy/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/trajectory_accuracy/templates.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/usefulness/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/usefulness/metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/usefulness/parser.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/llm_judges/usefulness/template.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/ragas_metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/metrics/score_result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/base_model.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/langchain/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/langchain/langchain_chat_model.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/langchain/message_converters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/langchain/opik_monitoring.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/litellm/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/litellm/litellm_chat_model.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/litellm/opik_monitor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/litellm/warning_filters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/model_capabilities.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/models/models_factory.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/preprocessing.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/samplers/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/samplers/base_dataset_sampler.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/samplers/random_dataset_sampler.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/score_statistics.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/scorers/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/scorers/scorer_function.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/scorers/scorer_wrapper_metric.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/test_case.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/test_result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/threads/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/threads/context_helper.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/threads/evaluation_engine.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/threads/evaluation_result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/threads/evaluator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/evaluation/threads/helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/base_upload_manager.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/file_upload_monitor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/file_uploader.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/mime_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/s3_multipart_upload/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/s3_multipart_upload/file_parts_strategy.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/s3_multipart_upload/s3_file_uploader.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/s3_multipart_upload/s3_upload_error.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/thread_pool.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/upload_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/upload_manager.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/file_upload/upload_options.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/format_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/forwarding_server/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/forwarding_server/app.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/forwarding_server/utils.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/guardrails/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/guardrails/guardrail.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/guardrails/guards/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/guardrails/guards/guard.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/guardrails/guards/pii.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/guardrails/guards/topic.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/guardrails/rest_api_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/guardrails/schemas.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/guardrails/tracing.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/healthcheck/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/healthcheck/checks.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/healthcheck/rich_representation.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/hooks/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/hooks/anonymizer_hook.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/hooks/httpx_client_hook.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/httpx_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/id_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/callback_context_info_extractors.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/graph/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/graph/mermaid_graph_builder.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/graph/nodes.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/graph/subgraph_edges_builders.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/legacy_opik_tracer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/opik_tracer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/patchers/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/patchers/adk_otel_tracer/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/patchers/adk_otel_tracer/llm_span_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/patchers/adk_otel_tracer/opik_adk_otel_tracer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/patchers/litellm_wrappers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/patchers/llm_response_wrapper.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/patchers/patchers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/adk/recursive_callback_injector.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/aisuite/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/aisuite/aisuite_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/aisuite/opik_tracker.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/anthropic/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/anthropic/messages_batch_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/anthropic/messages_create_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/anthropic/opik_tracker.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/anthropic/stream_patchers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/converse/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/converse/chunks_aggregator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/converse/converse_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/converse/stream_wrappers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_agent_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/api.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/base.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/claude.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/format_detector.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/llama.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/mistral.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/chunks_aggregator/nova.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/invoke_model_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/response_types.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/stream_wrappers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/usage_converters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/invoke_model/usage_extraction.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/opik_tracker.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/bedrock/types.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/crewai/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/crewai/crewai_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/crewai/opik_tracker.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/crewai/patchers/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/crewai/patchers/flow.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/crewai/patchers/litellm_completion.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/crewai/patchers/llm_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/dspy/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/dspy/callback.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/dspy/graph.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/genai/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/genai/encoder_extension.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/genai/generate_content_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/genai/generations_aggregators.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/genai/opik_tracker.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/genai/stream_wrappers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/guardrails/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/guardrails/guardrails_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/guardrails/guardrails_tracker.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/haystack/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/haystack/constants.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/haystack/converters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/haystack/opik_connector.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/haystack/opik_span_bridge.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/haystack/opik_tracer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/base_llm_patcher.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/langgraph_async_context_bridge.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/opik_encoder_extension.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/opik_tracer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/anthropic_usage_extractor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/anthropic_vertexai_usage_extractor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/bedrock_usage_extractor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/google_generative_ai_usage_extractor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/groq_usage_extractor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/langchain_run_helpers/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/langchain_run_helpers/helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/langchain_run_helpers/langchain_usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/openai_usage_extractor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/provider_usage_extractor_protocol.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/usage_extractor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/langchain/provider_usage_extractors/vertexai_usage_extractor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/litellm/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/litellm/completion_chunks_aggregator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/litellm/litellm_completion_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/litellm/opik_tracker.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/litellm/stream_patchers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/llama_index/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/llama_index/callback.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/llama_index/event_parsing_utils.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/agents/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/agents/opik_tracing_processor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/agents/span_data_parsers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/chat_completion_chunks_aggregator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/openai_chat_completions_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/openai_responses_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/opik_tracker.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/response_events_aggregator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/openai/stream_patchers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/sagemaker/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/integrations/sagemaker/auth.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/jsonable_encoder.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/anthropic_usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/base_original_provider_usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/bedrock_usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/google_usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/llm_usage_info.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/openai_chat_completions_usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/openai_responses_usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/opik_usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/opik_usage_factory.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/llm_usage/unknown_usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/logging_messages.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/api.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/arguments_utils.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/batching/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/batching/base_batcher.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/batching/batch_manager.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/batching/batch_manager_constuctors.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/batching/batchers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/batching/flushing_thread.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/batching/sequence_splitter.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/emulation/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/emulation/emulator_message_processor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/emulation/local_emulator_message_processor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/emulation/models.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/encoder_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/message_processors.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/message_processors_chain.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/message_queue.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/messages.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/online_message_processor.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/queue_consumer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/streamer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/message_processing/streamer_constructors.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/package_version.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/plugins/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/plugins/pytest/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/plugins/pytest/decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/plugins/pytest/experiment_runner.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/plugins/pytest/hooks.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/plugins/pytest/summary.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/plugins/pytest/test_run_content.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/plugins/pytest/test_runs_storage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/py.typed +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rate_limit/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rate_limit/rate_limit.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/alerts/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/alerts/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/alerts/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/alerts/types/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/alerts/types/get_webhook_examples_request_alert_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/annotation_queues/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/annotation_queues/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/annotation_queues/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/attachments/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/attachments/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/attachments/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/attachments/types/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/attachments/types/attachment_list_request_entity_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/attachments/types/download_attachment_request_entity_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/attachments/types/start_multipart_upload_request_entity_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/attachments/types/upload_attachment_request_entity_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/automation_rule_evaluators/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/automation_rule_evaluators/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/automation_rule_evaluators/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/chat_completions/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/chat_completions/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/chat_completions/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/check/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/check/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/check/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/api_error.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/client_wrapper.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/datetime_utils.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/file.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/http_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/http_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/jsonable_encoder.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/pydantic_utilities.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/query_encoder.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/remove_none_from_dict.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/request_options.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/core/serialization.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/dashboards/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/datasets/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/datasets/types/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/datasets/types/dataset_update_visibility.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/datasets/types/dataset_write_visibility.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/environment.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/errors/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/errors/bad_request_error.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/errors/conflict_error.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/errors/forbidden_error.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/errors/not_found_error.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/errors/not_implemented_error.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/errors/unauthorized_error.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/errors/unprocessable_entity_error.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/experiments/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/experiments/types/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/experiments/types/experiment_update_status.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/experiments/types/experiment_update_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/experiments/types/experiment_write_status.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/experiments/types/experiment_write_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/feedback_definitions/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/feedback_definitions/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/feedback_definitions/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/feedback_definitions/types/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/feedback_definitions/types/find_feedback_definitions_request_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/guardrails/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/guardrails/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/guardrails/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/llm_provider_key/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/llm_provider_key/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/llm_provider_key/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/llm_provider_key/types/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/llm_provider_key/types/provider_api_key_write_provider.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/manual_evaluation/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/manual_evaluation/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/manual_evaluation/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/open_telemetry_ingestion/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/open_telemetry_ingestion/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/open_telemetry_ingestion/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/optimizations/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/optimizations/types/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/projects/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/projects/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/projects/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/projects/types/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/projects/types/project_metric_request_public_interval.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/projects/types/project_metric_request_public_metric_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/projects/types/project_update_visibility.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/projects/types/project_write_visibility.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/prompts/types/prompt_write_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/redirect/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/redirect/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/redirect/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/service_toggles/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/service_toggles/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/service_toggles/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/spans/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/spans/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/spans/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/spans/types/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/spans/types/find_feedback_score_names_1_request_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/spans/types/get_span_stats_request_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/spans/types/get_spans_by_project_request_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/spans/types/span_search_stream_request_public_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/system_usage/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/system_usage/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/system_usage/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/traces/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/traces/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/traces/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_alert_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_public_alert_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_config.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_config_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_config_public_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_config_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_config_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_config_write_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_event_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_public_event_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_trigger_write_event_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/alert_write_alert_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_batch.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_item_ids.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_public_scope.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_reviewer.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_reviewer_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_scope.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/annotation_queue_write_scope.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/assistant_message.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/assistant_message_role.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/attachment.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/attachment_page.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/auth_details_holder.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/avg_value_stat_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/batch_delete.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/batch_delete_by_project.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/bi_information.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/bi_information_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/boolean_feedback_definition.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/boolean_feedback_definition_create.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/boolean_feedback_definition_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/boolean_feedback_definition_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/boolean_feedback_detail.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/boolean_feedback_detail_create.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/boolean_feedback_detail_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/boolean_feedback_detail_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/categorical_feedback_definition.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/categorical_feedback_definition_create.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/categorical_feedback_definition_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/categorical_feedback_definition_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/categorical_feedback_detail.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/categorical_feedback_detail_create.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/categorical_feedback_detail_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/categorical_feedback_detail_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/chat_completion_choice.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/chat_completion_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/check.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/check_name.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/check_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/check_public_name.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/check_public_result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/check_result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/chunked_output_json_node.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/chunked_output_json_node_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/chunked_output_json_node_public_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/chunked_output_json_node_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/column.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/column_compare.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/column_compare_types_item.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/column_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/column_public_types_item.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/column_types_item.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/comment.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/comment_compare.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/comment_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/complete_multipart_upload_request.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/complete_multipart_upload_request_entity_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/completion_tokens_details.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/count_value_stat_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dashboard_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/data_point_double.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/data_point_number_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_expansion.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_expansion_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_batch.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_compare_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_filter.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_filter_operator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_public_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_item_write_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_public_status.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_public_visibility.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_status.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_version_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_version_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/dataset_visibility.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/delete_attachments_request.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/delete_attachments_request_entity_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/delete_feedback_score.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/delete_ids_holder.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/delta.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_count_with_deviation.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_count_with_deviation_detailed.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_info.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_info_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_info_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_info_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_message.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_message_detail.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_message_detailed.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/error_message_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_group_aggregations_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_group_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_item.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_item_bulk_record.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_item_bulk_record_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_item_bulk_upload.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_item_compare.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_item_compare_trace_visibility_mode.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_item_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_item_public_trace_visibility_mode.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_item_trace_visibility_mode.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_public_status.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_public_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_status.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/experiment_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/export_trace_service_request.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_create.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_definition_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_object_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_average.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_average_detailed.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_average_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_batch.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_batch_item.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_batch_item_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_batch_item_thread.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_batch_item_thread_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_compare.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_compare_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_experiment_item_bulk_write_view_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_names.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_public_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_score_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/feedback_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/function.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/function_call.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/group_content.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/group_content_with_aggregations.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/group_detail.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/group_details.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/guardrail.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/guardrail_batch.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/guardrail_name.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/guardrail_result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/guardrail_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/guardrail_write_name.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/guardrail_write_result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/guardrails_validation.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/guardrails_validation_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/ids_holder.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/image_url.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/image_url_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/image_url_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_list_string.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_list_string_compare.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_list_string_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_list_string_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_list_string_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_node.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_node_detail.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_node_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_node_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/json_schema.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_code.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_code_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_code_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_message.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_message_content.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_message_content_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_message_content_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_message_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_message_public_role.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_message_role.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_message_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_message_write_role.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_model_parameters.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_model_parameters_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_model_parameters_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_output_schema.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_output_schema_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_output_schema_public_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_output_schema_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_output_schema_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/llm_as_judge_output_schema_write_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/log_item.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/log_item_level.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/log_page.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/manual_evaluation_request.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/manual_evaluation_request_entity_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/manual_evaluation_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/message.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/multipart_upload_part.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/numerical_feedback_definition.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/numerical_feedback_definition_create.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/numerical_feedback_definition_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/numerical_feedback_definition_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/numerical_feedback_detail.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/numerical_feedback_detail_create.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/numerical_feedback_detail_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/numerical_feedback_detail_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/optimization_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/page_columns.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/percentage_value_stat_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/percentage_values.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/percentage_values_detailed.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/percentage_values_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_detailed.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_detailed_visibility.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_metric_response_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_metric_response_public_interval.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_metric_response_public_metric_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_public_visibility.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_stat_item_object_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_stats_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_stats_summary.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_stats_summary_item.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/project_visibility.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_tokens_details.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version_detail_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version_link.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version_link_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version_link_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version_public_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/prompt_version_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/provider_api_key.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/provider_api_key_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/provider_api_key_provider.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/provider_api_key_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/provider_api_key_public_provider.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/response_format.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/response_format_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/results_number_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_batch.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_enrichment_options.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_experiment_item_bulk_write_view_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_filter_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_filter_public_operator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_public_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_update_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/span_write_type.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/spans_count_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/start_multipart_upload_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/stream_options.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/tool.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/tool_call.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_batch.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_count_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_enrichment_options.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_experiment_item_bulk_write_view.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_filter.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_filter_operator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_filter_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_filter_public_operator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_filter_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_filter_write_operator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_page_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_public_visibility_mode.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_filter.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_filter_operator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_filter_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_filter_public_operator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_identifier.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_llm_as_judge_code.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_llm_as_judge_code_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_llm_as_judge_code_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_page.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_status.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_user_defined_metric_python_code.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_user_defined_metric_python_code_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_thread_user_defined_metric_python_code_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_update.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_visibility_mode.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/trace_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/usage.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/user_defined_metric_python_code.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/user_defined_metric_python_code_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/user_defined_metric_python_code_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/value_entry_compare_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/value_entry_experiment_item_bulk_write_view_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/value_entry_public_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/value_entry_source.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/video_url.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/video_url_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/video_url_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/webhook.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/webhook_examples.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/webhook_public.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/webhook_test_result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/webhook_test_result_status.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/webhook_write.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/welcome_wizard_tracking.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/workspace_configuration.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/workspace_metric_request.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/workspace_metric_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/workspace_metrics_summary_request.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/workspace_metrics_summary_response.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/workspace_name_holder.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/workspace_spans_count.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/types/workspace_trace_count.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/welcome_wizard/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/welcome_wizard/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/welcome_wizard/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/workspaces/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/workspaces/client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_api/workspaces/raw_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_client_configurator/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_client_configurator/api.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_client_configurator/public_methods_patcher.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/rest_client_configurator/retry_decorator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/s3_httpx_client.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/semantic_version.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/simulation/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/simulation/simulated_user.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/simulation/simulator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/tracing_runtime_config.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/types.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/url_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/validation/__init__.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/validation/feedback_score.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/validation/parameter.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/validation/parameters_validator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/validation/result.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/validation/validator.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik/validation/validator_helpers.py +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik.egg-info/dependency_links.txt +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik.egg-info/entry_points.txt +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik.egg-info/not-zip-safe +0 -0
- {opik-1.9.33 → opik-1.9.38}/src/opik.egg-info/requires.txt +0 -0
- {opik-1.9.33 → opik-1.9.38}/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.38
|
|
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.
|
|
@@ -284,6 +284,7 @@ The easiest way to log traces is to use one of our direct integrations. Opik sup
|
|
|
284
284
|
| Microsoft Agent Framework (Python) | Log traces for Microsoft Agent Framework calls | [Documentation](https://www.comet.com/docs/opik/integrations/microsoft-agent-framework?utm_source=opik&utm_medium=github&utm_content=agent_framework_link&utm_campaign=opik) |
|
|
285
285
|
| Microsoft Agent Framework (.NET) | Log traces for Microsoft Agent Framework .NET calls | [Documentation](https://www.comet.com/docs/opik/integrations/microsoft-agent-framework-dotnet?utm_source=opik&utm_medium=github&utm_content=agent_framework_dotnet_link&utm_campaign=opik) |
|
|
286
286
|
| Mistral AI | Log traces for Mistral AI LLM calls | [Documentation](https://www.comet.com/docs/opik/integrations/mistral?utm_source=opik&utm_medium=github&utm_content=mistral_link&utm_campaign=opik) |
|
|
287
|
+
| n8n | Log traces for n8n workflow executions | [Documentation](https://www.comet.com/docs/opik/integrations/n8n?utm_source=opik&utm_medium=github&utm_content=n8n_link&utm_campaign=opik) |
|
|
287
288
|
| Novita AI | Log traces for Novita AI LLM calls | [Documentation](https://www.comet.com/docs/opik/integrations/novita-ai?utm_source=opik&utm_medium=github&utm_content=novita_ai_link&utm_campaign=opik) |
|
|
288
289
|
| Ollama | Log traces for Ollama LLM calls | [Documentation](https://www.comet.com/docs/opik/integrations/ollama?utm_source=opik&utm_medium=github&utm_content=ollama_link&utm_campaign=opik) |
|
|
289
290
|
| OpenAI (Python) | Log traces for OpenAI LLM calls | [Documentation](https://www.comet.com/docs/opik/integrations/openai?utm_source=opik&utm_medium=github&utm_content=openai_link&utm_campaign=opik) |
|
|
@@ -6,7 +6,7 @@ from .api_objects.experiment.experiment_item import (
|
|
|
6
6
|
ExperimentItemReferences,
|
|
7
7
|
)
|
|
8
8
|
from .api_objects.opik_client import Opik
|
|
9
|
-
from .api_objects.prompt import Prompt
|
|
9
|
+
from .api_objects.prompt import Prompt, ChatPrompt
|
|
10
10
|
from .api_objects.prompt.types import PromptType
|
|
11
11
|
from .api_objects.span import Span
|
|
12
12
|
from .api_objects.trace import Trace
|
|
@@ -55,6 +55,7 @@ __all__ = [
|
|
|
55
55
|
"llm_unit",
|
|
56
56
|
"configure",
|
|
57
57
|
"Prompt",
|
|
58
|
+
"ChatPrompt",
|
|
58
59
|
"PromptType",
|
|
59
60
|
"LLMProvider",
|
|
60
61
|
"reset_tracing_to_config_default",
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import functools
|
|
2
2
|
import logging
|
|
3
|
-
from typing import List, Optional
|
|
3
|
+
from typing import List, Optional, TYPE_CHECKING
|
|
4
4
|
|
|
5
5
|
from opik.message_processing.batching import sequence_splitter
|
|
6
6
|
from opik.message_processing import messages, streamer
|
|
7
7
|
from opik.rest_api import client as rest_api_client
|
|
8
|
-
from opik.rest_api
|
|
8
|
+
from opik.rest_api import types as rest_api_types
|
|
9
9
|
from . import experiment_item, experiments_client
|
|
10
10
|
from .. import constants, helpers
|
|
11
|
-
from ...api_objects.prompt import
|
|
11
|
+
from ...api_objects.prompt import base_prompt
|
|
12
|
+
|
|
13
|
+
if TYPE_CHECKING:
|
|
14
|
+
from opik.evaluation.metrics import score_result
|
|
12
15
|
|
|
13
16
|
LOGGER = logging.getLogger(__name__)
|
|
14
17
|
|
|
@@ -22,7 +25,7 @@ class Experiment:
|
|
|
22
25
|
rest_client: rest_api_client.OpikApi,
|
|
23
26
|
streamer: streamer.Streamer,
|
|
24
27
|
experiments_client: experiments_client.ExperimentsClient,
|
|
25
|
-
prompts: Optional[List[
|
|
28
|
+
prompts: Optional[List[base_prompt.BasePrompt]] = None,
|
|
26
29
|
) -> None:
|
|
27
30
|
self._id = id
|
|
28
31
|
self._name = name
|
|
@@ -60,7 +63,7 @@ class Experiment:
|
|
|
60
63
|
def experiments_rest_client(self) -> rest_api_client.ExperimentsClient:
|
|
61
64
|
return self._rest_client.experiments
|
|
62
65
|
|
|
63
|
-
def get_experiment_data(self) -> experiment_public.ExperimentPublic:
|
|
66
|
+
def get_experiment_data(self) -> rest_api_types.experiment_public.ExperimentPublic:
|
|
64
67
|
return self._rest_client.experiments.get_experiment_by_id(id=self.id)
|
|
65
68
|
|
|
66
69
|
def insert(
|
|
@@ -123,3 +126,26 @@ class Experiment:
|
|
|
123
126
|
truncate=truncate,
|
|
124
127
|
max_results=max_results,
|
|
125
128
|
)
|
|
129
|
+
|
|
130
|
+
def log_experiment_scores(
|
|
131
|
+
self,
|
|
132
|
+
score_results: List["score_result.ScoreResult"],
|
|
133
|
+
) -> None:
|
|
134
|
+
"""Log experiment-level scores to the backend."""
|
|
135
|
+
experiment_scores: List[rest_api_types.ExperimentScore] = []
|
|
136
|
+
|
|
137
|
+
for score_result_ in score_results:
|
|
138
|
+
if score_result_.scoring_failed:
|
|
139
|
+
continue
|
|
140
|
+
|
|
141
|
+
experiment_score = rest_api_types.ExperimentScore(
|
|
142
|
+
name=score_result_.name,
|
|
143
|
+
value=score_result_.value,
|
|
144
|
+
)
|
|
145
|
+
experiment_scores.append(experiment_score)
|
|
146
|
+
|
|
147
|
+
if experiment_scores:
|
|
148
|
+
self._rest_client.experiments.update_experiment(
|
|
149
|
+
id=self.id,
|
|
150
|
+
experiment_scores=experiment_scores,
|
|
151
|
+
)
|
|
@@ -2,7 +2,7 @@ import logging
|
|
|
2
2
|
import opik.jsonable_encoder as jsonable_encoder
|
|
3
3
|
from typing import Any, Dict, List, Mapping, Optional, Tuple
|
|
4
4
|
import copy
|
|
5
|
-
from .. import
|
|
5
|
+
from ..prompt import base_prompt
|
|
6
6
|
|
|
7
7
|
LOGGER = logging.getLogger(__name__)
|
|
8
8
|
|
|
@@ -11,7 +11,7 @@ PromptVersion = Dict[str, str]
|
|
|
11
11
|
|
|
12
12
|
def build_metadata_and_prompt_versions(
|
|
13
13
|
experiment_config: Optional[Dict[str, Any]],
|
|
14
|
-
prompts: Optional[List[
|
|
14
|
+
prompts: Optional[List[base_prompt.BasePrompt]],
|
|
15
15
|
) -> Tuple[Optional[Dict[str, Any]], Optional[List[PromptVersion]]]:
|
|
16
16
|
prompt_versions: Optional[List[PromptVersion]] = None
|
|
17
17
|
|
|
@@ -37,9 +37,20 @@ def build_metadata_and_prompt_versions(
|
|
|
37
37
|
prompt_versions = []
|
|
38
38
|
experiment_config["prompts"] = {}
|
|
39
39
|
|
|
40
|
-
for
|
|
41
|
-
prompt_versions.append({"id":
|
|
42
|
-
|
|
40
|
+
for prompt_obj in prompts:
|
|
41
|
+
prompt_versions.append({"id": prompt_obj.__internal_api__version_id__})
|
|
42
|
+
# Use __internal_api__to_info_dict__() to get the prompt content in a consistent way
|
|
43
|
+
prompt_info = prompt_obj.__internal_api__to_info_dict__()
|
|
44
|
+
# Extract the template/messages from the version dict
|
|
45
|
+
if "version" in prompt_info:
|
|
46
|
+
if "template" in prompt_info["version"]:
|
|
47
|
+
experiment_config["prompts"][prompt_obj.name] = prompt_info[
|
|
48
|
+
"version"
|
|
49
|
+
]["template"]
|
|
50
|
+
elif "messages" in prompt_info["version"]:
|
|
51
|
+
experiment_config["prompts"][prompt_obj.name] = prompt_info[
|
|
52
|
+
"version"
|
|
53
|
+
]["messages"]
|
|
43
54
|
|
|
44
55
|
if experiment_config == {}:
|
|
45
56
|
return None, None
|
|
@@ -50,9 +61,9 @@ def build_metadata_and_prompt_versions(
|
|
|
50
61
|
|
|
51
62
|
|
|
52
63
|
def handle_prompt_args(
|
|
53
|
-
prompt: Optional[
|
|
54
|
-
prompts: Optional[List[
|
|
55
|
-
) -> Optional[List[
|
|
64
|
+
prompt: Optional[base_prompt.BasePrompt] = None,
|
|
65
|
+
prompts: Optional[List[base_prompt.BasePrompt]] = None,
|
|
66
|
+
) -> Optional[List[base_prompt.BasePrompt]]:
|
|
56
67
|
if prompts is not None and len(prompts) > 0 and prompt is not None:
|
|
57
68
|
LOGGER.warning(
|
|
58
69
|
"Arguments `prompt` and `prompts` are mutually exclusive, `prompts` will be used`."
|
|
@@ -24,8 +24,8 @@ from .dataset import rest_operations as dataset_rest_operations
|
|
|
24
24
|
from .experiment import experiments_client
|
|
25
25
|
from .experiment import helpers as experiment_helpers
|
|
26
26
|
from .experiment import rest_operations as experiment_rest_operations
|
|
27
|
-
from .
|
|
28
|
-
from .prompt
|
|
27
|
+
from . import prompt as prompt_module
|
|
28
|
+
from .prompt import client as prompt_client
|
|
29
29
|
from .threads import threads_client
|
|
30
30
|
from .trace import migration as trace_migration, trace_client
|
|
31
31
|
from .. import (
|
|
@@ -917,8 +917,8 @@ class Opik:
|
|
|
917
917
|
dataset_name: str,
|
|
918
918
|
name: Optional[str] = None,
|
|
919
919
|
experiment_config: Optional[Dict[str, Any]] = None,
|
|
920
|
-
prompt: Optional[
|
|
921
|
-
prompts: Optional[List[
|
|
920
|
+
prompt: Optional[prompt_module.base_prompt.BasePrompt] = None,
|
|
921
|
+
prompts: Optional[List[prompt_module.base_prompt.BasePrompt]] = None,
|
|
922
922
|
type: Literal["regular", "trial", "mini-batch"] = "regular",
|
|
923
923
|
optimization_id: Optional[str] = None,
|
|
924
924
|
) -> experiment.Experiment:
|
|
@@ -1394,70 +1394,188 @@ class Opik:
|
|
|
1394
1394
|
name: str,
|
|
1395
1395
|
prompt: str,
|
|
1396
1396
|
metadata: Optional[Dict[str, Any]] = None,
|
|
1397
|
-
type: PromptType = PromptType.MUSTACHE,
|
|
1398
|
-
) -> Prompt:
|
|
1397
|
+
type: prompt_module.PromptType = prompt_module.PromptType.MUSTACHE,
|
|
1398
|
+
) -> prompt_module.Prompt:
|
|
1399
1399
|
"""
|
|
1400
|
-
Creates a new prompt with the given name and template.
|
|
1401
|
-
If a prompt with the same name already exists, it will create a new version of the existing prompt if the templates differ.
|
|
1400
|
+
Creates a new text prompt with the given name and template.
|
|
1401
|
+
If a text prompt with the same name already exists, it will create a new version of the existing prompt if the templates differ.
|
|
1402
1402
|
|
|
1403
1403
|
Parameters:
|
|
1404
1404
|
name: The name of the prompt.
|
|
1405
1405
|
prompt: The template content of the prompt.
|
|
1406
1406
|
metadata: Optional metadata to be included in the prompt.
|
|
1407
|
+
type: The template type (MUSTACHE or JINJA2).
|
|
1407
1408
|
|
|
1408
1409
|
Returns:
|
|
1409
1410
|
A Prompt object containing details of the created or retrieved prompt.
|
|
1410
1411
|
|
|
1411
1412
|
Raises:
|
|
1412
|
-
|
|
1413
|
+
PromptTemplateStructureMismatch: If a chat prompt with the same name already exists (template structure is immutable).
|
|
1414
|
+
ApiError: If there is an error during the creation of the prompt.
|
|
1413
1415
|
"""
|
|
1414
|
-
|
|
1415
|
-
prompt_version =
|
|
1416
|
+
prompt_client_ = prompt_client.PromptClient(self._rest_client)
|
|
1417
|
+
prompt_version = prompt_client_.create_prompt(
|
|
1416
1418
|
name=name, prompt=prompt, metadata=metadata, type=type
|
|
1417
1419
|
)
|
|
1418
|
-
return Prompt.from_fern_prompt_version(name, prompt_version)
|
|
1420
|
+
return prompt_module.Prompt.from_fern_prompt_version(name, prompt_version)
|
|
1421
|
+
|
|
1422
|
+
def create_chat_prompt(
|
|
1423
|
+
self,
|
|
1424
|
+
name: str,
|
|
1425
|
+
messages: List[Dict[str, Any]],
|
|
1426
|
+
metadata: Optional[Dict[str, Any]] = None,
|
|
1427
|
+
type: prompt_module.PromptType = prompt_module.PromptType.MUSTACHE,
|
|
1428
|
+
) -> prompt_module.ChatPrompt:
|
|
1429
|
+
"""
|
|
1430
|
+
Creates a new chat prompt with the given name and message templates.
|
|
1431
|
+
If a chat prompt with the same name already exists, it will create a new version if the messages differ.
|
|
1432
|
+
|
|
1433
|
+
Parameters:
|
|
1434
|
+
name: The name of the chat prompt.
|
|
1435
|
+
messages: List of message dictionaries with 'role' and 'content' fields.
|
|
1436
|
+
metadata: Optional metadata to be included in the prompt.
|
|
1437
|
+
type: The template type (MUSTACHE or JINJA2).
|
|
1438
|
+
|
|
1439
|
+
Returns:
|
|
1440
|
+
A ChatPrompt object containing details of the created or retrieved chat prompt.
|
|
1441
|
+
|
|
1442
|
+
Raises:
|
|
1443
|
+
PromptTemplateStructureMismatch: If a text prompt with the same name already exists (template structure is immutable).
|
|
1444
|
+
ApiError: If there is an error during the creation of the prompt.
|
|
1445
|
+
"""
|
|
1446
|
+
return prompt_module.ChatPrompt(
|
|
1447
|
+
name=name, messages=messages, metadata=metadata, type=type
|
|
1448
|
+
)
|
|
1419
1449
|
|
|
1420
1450
|
def get_prompt(
|
|
1421
1451
|
self,
|
|
1422
1452
|
name: str,
|
|
1423
1453
|
commit: Optional[str] = None,
|
|
1424
|
-
) -> Optional[Prompt]:
|
|
1454
|
+
) -> Optional[prompt_module.Prompt]:
|
|
1425
1455
|
"""
|
|
1426
|
-
Retrieve
|
|
1456
|
+
Retrieve a text prompt by name and optional commit version.
|
|
1457
|
+
|
|
1458
|
+
This method only returns text prompts.
|
|
1427
1459
|
|
|
1428
1460
|
Parameters:
|
|
1429
1461
|
name: The name of the prompt.
|
|
1430
1462
|
commit: An optional commit version of the prompt. If not provided, the latest version is retrieved.
|
|
1431
1463
|
|
|
1432
1464
|
Returns:
|
|
1433
|
-
Prompt: The details of the specified prompt.
|
|
1465
|
+
Prompt: The details of the specified text prompt, or None if not found.
|
|
1466
|
+
|
|
1467
|
+
Raises:
|
|
1468
|
+
PromptTemplateStructureMismatch: If the prompt exists but is a chat prompt (template structure mismatch).
|
|
1434
1469
|
"""
|
|
1435
|
-
|
|
1436
|
-
fern_prompt_version =
|
|
1470
|
+
prompt_client_ = prompt_client.PromptClient(self._rest_client)
|
|
1471
|
+
fern_prompt_version = prompt_client_.get_prompt(
|
|
1472
|
+
name=name, commit=commit, raise_if_not_template_structure="text"
|
|
1473
|
+
)
|
|
1474
|
+
|
|
1437
1475
|
if fern_prompt_version is None:
|
|
1438
1476
|
return None
|
|
1439
1477
|
|
|
1440
|
-
return Prompt.from_fern_prompt_version(name, fern_prompt_version)
|
|
1478
|
+
return prompt_module.Prompt.from_fern_prompt_version(name, fern_prompt_version)
|
|
1441
1479
|
|
|
1442
|
-
def
|
|
1480
|
+
def get_chat_prompt(
|
|
1481
|
+
self,
|
|
1482
|
+
name: str,
|
|
1483
|
+
commit: Optional[str] = None,
|
|
1484
|
+
) -> Optional[prompt_module.ChatPrompt]:
|
|
1443
1485
|
"""
|
|
1444
|
-
Retrieve
|
|
1486
|
+
Retrieve a chat prompt by name and optional commit version.
|
|
1487
|
+
|
|
1488
|
+
This method only returns chat prompts.
|
|
1489
|
+
|
|
1490
|
+
Parameters:
|
|
1491
|
+
name: The name of the prompt.
|
|
1492
|
+
commit: An optional commit version of the prompt. If not provided, the latest version is retrieved.
|
|
1493
|
+
|
|
1494
|
+
Returns:
|
|
1495
|
+
ChatPrompt: The details of the specified chat prompt, or None if not found.
|
|
1496
|
+
|
|
1497
|
+
Raises:
|
|
1498
|
+
PromptTemplateStructureMismatch: If the prompt exists but is a text prompt (template structure mismatch).
|
|
1499
|
+
"""
|
|
1500
|
+
prompt_client_ = prompt_client.PromptClient(self._rest_client)
|
|
1501
|
+
fern_prompt_version = prompt_client_.get_prompt(
|
|
1502
|
+
name=name, commit=commit, raise_if_not_template_structure="chat"
|
|
1503
|
+
)
|
|
1504
|
+
|
|
1505
|
+
if fern_prompt_version is None:
|
|
1506
|
+
return None
|
|
1507
|
+
|
|
1508
|
+
return prompt_module.ChatPrompt.from_fern_prompt_version(
|
|
1509
|
+
name, fern_prompt_version
|
|
1510
|
+
)
|
|
1511
|
+
|
|
1512
|
+
def get_prompt_history(self, name: str) -> List[prompt_module.Prompt]:
|
|
1513
|
+
"""
|
|
1514
|
+
Retrieve all text prompt versions history for a given prompt name.
|
|
1515
|
+
|
|
1516
|
+
Parameters:
|
|
1517
|
+
name: The name of the prompt.
|
|
1518
|
+
|
|
1519
|
+
Returns:
|
|
1520
|
+
List[Prompt]: A list of text Prompt instances for the given name, or an empty list if not found.
|
|
1521
|
+
|
|
1522
|
+
Raises:
|
|
1523
|
+
PromptTemplateStructureMismatch: If the prompt exists but is a chat prompt (template structure mismatch).
|
|
1524
|
+
"""
|
|
1525
|
+
prompt_client_ = prompt_client.PromptClient(self._rest_client)
|
|
1526
|
+
|
|
1527
|
+
# First, validate that this is a text prompt by trying to get the latest version
|
|
1528
|
+
# Let PromptTemplateStructureMismatch exception propagate - this is a hard error
|
|
1529
|
+
latest_version = prompt_client_.get_prompt(
|
|
1530
|
+
name=name, raise_if_not_template_structure="text"
|
|
1531
|
+
)
|
|
1532
|
+
|
|
1533
|
+
if latest_version is None:
|
|
1534
|
+
return []
|
|
1535
|
+
|
|
1536
|
+
# Now get all versions (we know it's a text prompt)
|
|
1537
|
+
fern_prompt_versions = prompt_client_.get_all_prompt_versions(name=name)
|
|
1538
|
+
|
|
1539
|
+
result = [
|
|
1540
|
+
prompt_module.Prompt.from_fern_prompt_version(name, version)
|
|
1541
|
+
for version in fern_prompt_versions
|
|
1542
|
+
]
|
|
1543
|
+
return result
|
|
1544
|
+
|
|
1545
|
+
def get_chat_prompt_history(self, name: str) -> List[prompt_module.ChatPrompt]:
|
|
1546
|
+
"""
|
|
1547
|
+
Retrieve all chat prompt versions history for a given prompt name.
|
|
1445
1548
|
|
|
1446
1549
|
Parameters:
|
|
1447
1550
|
name: The name of the prompt.
|
|
1448
1551
|
|
|
1449
1552
|
Returns:
|
|
1450
|
-
List[
|
|
1553
|
+
List[ChatPrompt]: A list of ChatPrompt instances for the given name, or an empty list if not found.
|
|
1554
|
+
|
|
1555
|
+
Raises:
|
|
1556
|
+
PromptTemplateStructureMismatch: If the prompt exists but is a text prompt (template structure mismatch).
|
|
1451
1557
|
"""
|
|
1452
|
-
|
|
1453
|
-
|
|
1558
|
+
prompt_client_ = prompt_client.PromptClient(self._rest_client)
|
|
1559
|
+
|
|
1560
|
+
# First, validate that this is a chat prompt by trying to get the latest version
|
|
1561
|
+
# Let PromptTemplateStructureMismatch exception propagate - this is a hard error
|
|
1562
|
+
latest_version = prompt_client_.get_prompt(
|
|
1563
|
+
name=name, raise_if_not_template_structure="chat"
|
|
1564
|
+
)
|
|
1565
|
+
|
|
1566
|
+
if latest_version is None:
|
|
1567
|
+
return []
|
|
1568
|
+
|
|
1569
|
+
# Now get all versions (we know it's a chat prompt)
|
|
1570
|
+
fern_prompt_versions = prompt_client_.get_all_prompt_versions(name=name)
|
|
1571
|
+
|
|
1454
1572
|
result = [
|
|
1455
|
-
|
|
1573
|
+
prompt_module.ChatPrompt.from_fern_prompt_version(name, version)
|
|
1456
1574
|
for version in fern_prompt_versions
|
|
1457
1575
|
]
|
|
1458
1576
|
return result
|
|
1459
1577
|
|
|
1460
|
-
def get_all_prompts(self, name: str) -> List[Prompt]:
|
|
1578
|
+
def get_all_prompts(self, name: str) -> List[prompt_module.Prompt]:
|
|
1461
1579
|
"""
|
|
1462
1580
|
DEPRECATED: Please use Opik.get_prompt_history() instead.
|
|
1463
1581
|
Retrieve all the prompt versions history for a given prompt name.
|
|
@@ -1466,16 +1584,18 @@ class Opik:
|
|
|
1466
1584
|
name: The name of the prompt.
|
|
1467
1585
|
|
|
1468
1586
|
Returns:
|
|
1469
|
-
List[Prompt]: A list of Prompt instances for the given name.
|
|
1587
|
+
List[prompt_module.Prompt]: A list of Prompt instances for the given name.
|
|
1470
1588
|
"""
|
|
1471
1589
|
LOGGER.warning(
|
|
1472
1590
|
"Opik.get_all_prompts() is deprecated. Please use Opik.get_prompt_history() instead."
|
|
1473
1591
|
)
|
|
1474
1592
|
return self.get_prompt_history(name)
|
|
1475
1593
|
|
|
1476
|
-
def search_prompts(
|
|
1594
|
+
def search_prompts(
|
|
1595
|
+
self, filter_string: Optional[str] = None
|
|
1596
|
+
) -> List[Union[prompt_module.Prompt, prompt_module.ChatPrompt]]:
|
|
1477
1597
|
"""
|
|
1478
|
-
Retrieve the latest prompt versions for the given search parameters.
|
|
1598
|
+
Retrieve the latest prompt versions (both string and chat prompts) for the given search parameters.
|
|
1479
1599
|
|
|
1480
1600
|
Parameters:
|
|
1481
1601
|
filter_string: A filter string to narrow down the search using Opik Query Language (OQL).
|
|
@@ -1485,11 +1605,13 @@ class Opik:
|
|
|
1485
1605
|
- `id`, `name`: String fields
|
|
1486
1606
|
- `tags`: List field (use "contains" operator only)
|
|
1487
1607
|
- `created_by`: String field
|
|
1608
|
+
- `template_structure`: String field ("string" or "chat")
|
|
1488
1609
|
|
|
1489
1610
|
Supported operators by column:
|
|
1490
1611
|
- `id`: =, !=, contains, not_contains, starts_with, ends_with, >, <
|
|
1491
1612
|
- `name`: =, !=, contains, not_contains, starts_with, ends_with, >, <
|
|
1492
1613
|
- `created_by`: =, !=, contains, not_contains, starts_with, ends_with, >, <
|
|
1614
|
+
- `template_structure`: =, !=
|
|
1493
1615
|
- `tags`: contains (only)
|
|
1494
1616
|
|
|
1495
1617
|
Examples:
|
|
@@ -1498,23 +1620,36 @@ class Opik:
|
|
|
1498
1620
|
- `name contains "summary"` - Filter by name substring
|
|
1499
1621
|
- `created_by = "user@example.com"` - Filter by creator
|
|
1500
1622
|
- `id starts_with "prompt_"` - Filter by ID prefix
|
|
1623
|
+
- `template_structure = "text"` - Only text prompts
|
|
1624
|
+
- `template_structure = "chat"` - Only chat prompts
|
|
1501
1625
|
|
|
1502
|
-
If not provided, all prompts
|
|
1626
|
+
If not provided, all prompts (both text and chat) will be returned.
|
|
1503
1627
|
|
|
1504
1628
|
Returns:
|
|
1505
|
-
List[Prompt]: A list of Prompt instances found.
|
|
1506
|
-
"""
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
prompts: List[Prompt] = [
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1629
|
+
List[Union[Prompt, ChatPrompt]]: A list of Prompt and/or ChatPrompt instances found.
|
|
1630
|
+
"""
|
|
1631
|
+
oql = opik_query_language.OpikQueryLanguage(filter_string or "")
|
|
1632
|
+
parsed_filters = oql.get_filter_expressions()
|
|
1633
|
+
|
|
1634
|
+
prompt_client_ = prompt_client.PromptClient(self._rest_client)
|
|
1635
|
+
search_results = prompt_client_.search_prompts(parsed_filters=parsed_filters)
|
|
1636
|
+
|
|
1637
|
+
# Convert to Prompt or ChatPrompt objects based on template_structure
|
|
1638
|
+
prompts: List[Union[prompt_module.Prompt, prompt_module.ChatPrompt]] = []
|
|
1639
|
+
for result in search_results:
|
|
1640
|
+
if result.template_structure == "chat":
|
|
1641
|
+
prompts.append(
|
|
1642
|
+
prompt_module.ChatPrompt.from_fern_prompt_version(
|
|
1643
|
+
result.name, result.prompt_version_detail
|
|
1644
|
+
)
|
|
1645
|
+
)
|
|
1646
|
+
else:
|
|
1647
|
+
prompts.append(
|
|
1648
|
+
prompt_module.Prompt.from_fern_prompt_version(
|
|
1649
|
+
result.name, result.prompt_version_detail
|
|
1650
|
+
)
|
|
1651
|
+
)
|
|
1652
|
+
|
|
1518
1653
|
return prompts
|
|
1519
1654
|
|
|
1520
1655
|
def create_optimization(
|
|
@@ -29,6 +29,7 @@ COLUMNS = {
|
|
|
29
29
|
"type": "string",
|
|
30
30
|
"model": "string",
|
|
31
31
|
"provider": "string",
|
|
32
|
+
"template_structure": "string",
|
|
32
33
|
}
|
|
33
34
|
|
|
34
35
|
SUPPORTED_OPERATORS = {
|
|
@@ -121,6 +122,14 @@ SUPPORTED_OPERATORS = {
|
|
|
121
122
|
">",
|
|
122
123
|
"<",
|
|
123
124
|
],
|
|
125
|
+
"template_structure": [
|
|
126
|
+
"=",
|
|
127
|
+
"contains",
|
|
128
|
+
"not_contains",
|
|
129
|
+
"starts_with",
|
|
130
|
+
"ends_with",
|
|
131
|
+
"!=",
|
|
132
|
+
],
|
|
124
133
|
}
|
|
125
134
|
|
|
126
135
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from .text.prompt import Prompt
|
|
2
|
+
from .text.prompt_template import PromptTemplate
|
|
3
|
+
from .chat.chat_prompt import ChatPrompt
|
|
4
|
+
from .chat.chat_prompt_template import ChatPromptTemplate
|
|
5
|
+
from .types import PromptType
|
|
6
|
+
from .base_prompt import BasePrompt
|
|
7
|
+
from .base_prompt_template import BasePromptTemplate
|
|
8
|
+
|
|
9
|
+
__all__ = [
|
|
10
|
+
"PromptType",
|
|
11
|
+
"Prompt",
|
|
12
|
+
"ChatPrompt",
|
|
13
|
+
"PromptTemplate",
|
|
14
|
+
"ChatPromptTemplate",
|
|
15
|
+
"BasePrompt",
|
|
16
|
+
"BasePromptTemplate",
|
|
17
|
+
]
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Base class for prompts.
|
|
3
|
+
|
|
4
|
+
Defines abstract interface that both string and chat prompt variants must implement.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from abc import ABC, abstractmethod
|
|
8
|
+
from typing import Any, Dict, Optional
|
|
9
|
+
|
|
10
|
+
from . import types as prompt_types
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class BasePrompt(ABC):
|
|
14
|
+
"""
|
|
15
|
+
Abstract base class for prompts (string and chat).
|
|
16
|
+
|
|
17
|
+
All prompt implementations must provide common properties and methods
|
|
18
|
+
for interacting with the backend API.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
@property
|
|
22
|
+
@abstractmethod
|
|
23
|
+
def name(self) -> str:
|
|
24
|
+
"""The name of the prompt."""
|
|
25
|
+
pass
|
|
26
|
+
|
|
27
|
+
@property
|
|
28
|
+
@abstractmethod
|
|
29
|
+
def commit(self) -> Optional[str]:
|
|
30
|
+
"""The commit hash of the prompt version."""
|
|
31
|
+
pass
|
|
32
|
+
|
|
33
|
+
@property
|
|
34
|
+
@abstractmethod
|
|
35
|
+
def metadata(self) -> Optional[Dict[str, Any]]:
|
|
36
|
+
"""The metadata dictionary associated with the prompt."""
|
|
37
|
+
pass
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
@abstractmethod
|
|
41
|
+
def type(self) -> prompt_types.PromptType:
|
|
42
|
+
"""The prompt type (MUSTACHE or JINJA2)."""
|
|
43
|
+
pass
|
|
44
|
+
|
|
45
|
+
# Internal API fields for backend synchronization
|
|
46
|
+
__internal_api__prompt_id__: str
|
|
47
|
+
__internal_api__version_id__: str
|
|
48
|
+
|
|
49
|
+
@abstractmethod
|
|
50
|
+
def format(self, *args: Any, **kwargs: Any) -> Any:
|
|
51
|
+
"""
|
|
52
|
+
Format the prompt with the provided variables.
|
|
53
|
+
|
|
54
|
+
Returns:
|
|
55
|
+
Formatted output. Type depends on the implementation:
|
|
56
|
+
- Prompt returns str
|
|
57
|
+
- ChatPrompt returns List[Dict[str, MessageContent]]
|
|
58
|
+
"""
|
|
59
|
+
pass
|
|
60
|
+
|
|
61
|
+
@abstractmethod
|
|
62
|
+
def __internal_api__to_info_dict__(self) -> Dict[str, Any]:
|
|
63
|
+
"""
|
|
64
|
+
Convert the prompt to an info dictionary for serialization.
|
|
65
|
+
|
|
66
|
+
Returns:
|
|
67
|
+
Dictionary containing prompt metadata and version information.
|
|
68
|
+
"""
|
|
69
|
+
pass
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Base class for prompt templates.
|
|
3
|
+
|
|
4
|
+
Defines abstract interface that both string and chat template variants must implement.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from abc import ABC, abstractmethod
|
|
8
|
+
from typing import Any
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class BasePromptTemplate(ABC):
|
|
12
|
+
"""
|
|
13
|
+
Abstract base class for prompt templates (string and chat).
|
|
14
|
+
|
|
15
|
+
All prompt template implementations must provide a format method
|
|
16
|
+
that takes variables and returns formatted output.
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
@abstractmethod
|
|
20
|
+
def format(self, *args: Any, **kwargs: Any) -> Any:
|
|
21
|
+
"""
|
|
22
|
+
Format the template with the provided variables.
|
|
23
|
+
|
|
24
|
+
Returns:
|
|
25
|
+
Formatted output. Type depends on the implementation:
|
|
26
|
+
- PromptTemplate returns str
|
|
27
|
+
- ChatPromptTemplate returns List[Dict[str, MessageContent]]
|
|
28
|
+
"""
|
|
29
|
+
pass
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Empty - all exports handled by parent __init__.py
|