opik 1.9.5__py3-none-any.whl → 1.9.39__py3-none-any.whl
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/__init__.py +10 -3
- opik/anonymizer/__init__.py +5 -0
- opik/anonymizer/anonymizer.py +12 -0
- opik/anonymizer/factory.py +80 -0
- opik/anonymizer/recursive_anonymizer.py +64 -0
- opik/anonymizer/rules.py +56 -0
- opik/anonymizer/rules_anonymizer.py +35 -0
- opik/api_objects/dataset/rest_operations.py +5 -0
- opik/api_objects/experiment/experiment.py +46 -49
- opik/api_objects/experiment/helpers.py +34 -10
- opik/api_objects/local_recording.py +8 -3
- opik/api_objects/opik_client.py +230 -48
- opik/api_objects/opik_query_language.py +9 -0
- opik/api_objects/prompt/__init__.py +11 -3
- opik/api_objects/prompt/base_prompt.py +69 -0
- opik/api_objects/prompt/base_prompt_template.py +29 -0
- opik/api_objects/prompt/chat/__init__.py +1 -0
- opik/api_objects/prompt/chat/chat_prompt.py +193 -0
- opik/api_objects/prompt/chat/chat_prompt_template.py +350 -0
- opik/api_objects/prompt/{chat_content_renderer_registry.py → chat/content_renderer_registry.py} +37 -35
- opik/api_objects/prompt/client.py +101 -30
- opik/api_objects/prompt/text/__init__.py +1 -0
- opik/api_objects/prompt/text/prompt.py +174 -0
- opik/api_objects/prompt/{prompt_template.py → text/prompt_template.py} +10 -6
- opik/api_objects/prompt/types.py +1 -1
- opik/cli/export.py +6 -2
- opik/cli/usage_report/charts.py +39 -10
- opik/cli/usage_report/cli.py +164 -45
- opik/cli/usage_report/pdf.py +14 -1
- opik/config.py +0 -5
- opik/decorator/base_track_decorator.py +37 -40
- opik/decorator/context_manager/span_context_manager.py +9 -0
- opik/decorator/context_manager/trace_context_manager.py +5 -0
- opik/dict_utils.py +3 -3
- opik/evaluation/__init__.py +13 -2
- opik/evaluation/engine/engine.py +195 -223
- opik/evaluation/engine/helpers.py +8 -7
- opik/evaluation/engine/metrics_evaluator.py +237 -0
- opik/evaluation/evaluation_result.py +35 -1
- opik/evaluation/evaluator.py +318 -30
- opik/evaluation/models/litellm/util.py +78 -6
- opik/evaluation/models/model_capabilities.py +33 -0
- opik/evaluation/report.py +14 -2
- opik/evaluation/rest_operations.py +36 -33
- opik/evaluation/test_case.py +2 -2
- opik/evaluation/types.py +9 -1
- opik/exceptions.py +17 -0
- opik/hooks/__init__.py +17 -1
- opik/hooks/anonymizer_hook.py +36 -0
- opik/id_helpers.py +18 -0
- opik/integrations/adk/helpers.py +16 -7
- opik/integrations/adk/legacy_opik_tracer.py +7 -4
- opik/integrations/adk/opik_tracer.py +3 -1
- opik/integrations/adk/patchers/adk_otel_tracer/opik_adk_otel_tracer.py +7 -3
- opik/integrations/adk/recursive_callback_injector.py +1 -6
- opik/integrations/dspy/callback.py +1 -4
- opik/integrations/haystack/opik_connector.py +2 -2
- opik/integrations/haystack/opik_tracer.py +2 -4
- opik/integrations/langchain/opik_tracer.py +273 -82
- opik/integrations/llama_index/callback.py +110 -108
- opik/integrations/openai/agents/opik_tracing_processor.py +1 -2
- opik/integrations/openai/opik_tracker.py +1 -1
- opik/message_processing/batching/batchers.py +11 -7
- opik/message_processing/encoder_helpers.py +79 -0
- opik/message_processing/messages.py +25 -1
- opik/message_processing/online_message_processor.py +23 -8
- opik/opik_context.py +7 -7
- opik/rest_api/__init__.py +188 -12
- opik/rest_api/client.py +3 -0
- opik/rest_api/dashboards/__init__.py +4 -0
- opik/rest_api/dashboards/client.py +462 -0
- opik/rest_api/dashboards/raw_client.py +648 -0
- opik/rest_api/datasets/client.py +893 -89
- opik/rest_api/datasets/raw_client.py +1328 -87
- opik/rest_api/experiments/client.py +30 -2
- opik/rest_api/experiments/raw_client.py +26 -0
- opik/rest_api/feedback_definitions/types/find_feedback_definitions_request_type.py +1 -1
- opik/rest_api/optimizations/client.py +302 -0
- opik/rest_api/optimizations/raw_client.py +463 -0
- opik/rest_api/optimizations/types/optimization_update_status.py +3 -1
- opik/rest_api/prompts/__init__.py +2 -2
- opik/rest_api/prompts/client.py +34 -4
- opik/rest_api/prompts/raw_client.py +32 -2
- opik/rest_api/prompts/types/__init__.py +3 -1
- opik/rest_api/prompts/types/create_prompt_version_detail_template_structure.py +5 -0
- opik/rest_api/prompts/types/prompt_write_template_structure.py +5 -0
- opik/rest_api/spans/__init__.py +0 -2
- opik/rest_api/spans/client.py +148 -64
- opik/rest_api/spans/raw_client.py +210 -83
- opik/rest_api/spans/types/__init__.py +0 -2
- opik/rest_api/traces/client.py +241 -73
- opik/rest_api/traces/raw_client.py +344 -90
- opik/rest_api/types/__init__.py +200 -15
- opik/rest_api/types/aggregation_data.py +1 -0
- opik/rest_api/types/alert_trigger_config_public_type.py +6 -1
- opik/rest_api/types/alert_trigger_config_type.py +6 -1
- opik/rest_api/types/alert_trigger_config_write_type.py +6 -1
- opik/rest_api/types/automation_rule_evaluator.py +23 -1
- opik/rest_api/types/automation_rule_evaluator_llm_as_judge.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_llm_as_judge_public.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_llm_as_judge_write.py +2 -0
- opik/rest_api/types/{automation_rule_evaluator_object_public.py → automation_rule_evaluator_object_object_public.py} +32 -10
- opik/rest_api/types/automation_rule_evaluator_page_public.py +2 -2
- opik/rest_api/types/automation_rule_evaluator_public.py +23 -1
- opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge_public.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge_write.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_public.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_write.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_public.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_write.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_update.py +23 -1
- opik/rest_api/types/automation_rule_evaluator_update_llm_as_judge.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_update_span_llm_as_judge.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_update_trace_thread_llm_as_judge.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_update_trace_thread_user_defined_metric_python.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_update_user_defined_metric_python.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_public.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_write.py +2 -0
- opik/rest_api/types/automation_rule_evaluator_write.py +23 -1
- opik/rest_api/types/boolean_feedback_definition.py +25 -0
- opik/rest_api/types/boolean_feedback_definition_create.py +20 -0
- opik/rest_api/types/boolean_feedback_definition_public.py +25 -0
- opik/rest_api/types/boolean_feedback_definition_update.py +20 -0
- opik/rest_api/types/boolean_feedback_detail.py +29 -0
- opik/rest_api/types/boolean_feedback_detail_create.py +29 -0
- opik/rest_api/types/boolean_feedback_detail_public.py +29 -0
- opik/rest_api/types/boolean_feedback_detail_update.py +29 -0
- opik/rest_api/types/dashboard_page_public.py +24 -0
- opik/rest_api/types/dashboard_public.py +30 -0
- opik/rest_api/types/dataset.py +2 -0
- opik/rest_api/types/dataset_item.py +2 -0
- opik/rest_api/types/dataset_item_compare.py +2 -0
- opik/rest_api/types/dataset_item_filter.py +23 -0
- opik/rest_api/types/dataset_item_filter_operator.py +21 -0
- opik/rest_api/types/dataset_item_page_compare.py +1 -0
- opik/rest_api/types/dataset_item_page_public.py +1 -0
- opik/rest_api/types/dataset_item_public.py +2 -0
- opik/rest_api/types/dataset_item_update.py +39 -0
- opik/rest_api/types/dataset_item_write.py +1 -0
- opik/rest_api/types/dataset_public.py +2 -0
- opik/rest_api/types/dataset_public_status.py +5 -0
- opik/rest_api/types/dataset_status.py +5 -0
- opik/rest_api/types/dataset_version_diff.py +22 -0
- opik/rest_api/types/dataset_version_diff_stats.py +24 -0
- opik/rest_api/types/dataset_version_page_public.py +23 -0
- opik/rest_api/types/dataset_version_public.py +49 -0
- opik/rest_api/types/experiment.py +2 -0
- opik/rest_api/types/experiment_public.py +2 -0
- opik/rest_api/types/experiment_score.py +20 -0
- opik/rest_api/types/experiment_score_public.py +20 -0
- opik/rest_api/types/experiment_score_write.py +20 -0
- opik/rest_api/types/feedback.py +20 -1
- opik/rest_api/types/feedback_create.py +16 -1
- opik/rest_api/types/feedback_object_public.py +22 -1
- opik/rest_api/types/feedback_public.py +20 -1
- opik/rest_api/types/feedback_score_public.py +4 -0
- opik/rest_api/types/feedback_update.py +16 -1
- opik/rest_api/types/image_url.py +20 -0
- opik/rest_api/types/image_url_public.py +20 -0
- opik/rest_api/types/image_url_write.py +20 -0
- opik/rest_api/types/llm_as_judge_message.py +5 -1
- opik/rest_api/types/llm_as_judge_message_content.py +24 -0
- opik/rest_api/types/llm_as_judge_message_content_public.py +24 -0
- opik/rest_api/types/llm_as_judge_message_content_write.py +24 -0
- opik/rest_api/types/llm_as_judge_message_public.py +5 -1
- opik/rest_api/types/llm_as_judge_message_write.py +5 -1
- opik/rest_api/types/llm_as_judge_model_parameters.py +2 -0
- opik/rest_api/types/llm_as_judge_model_parameters_public.py +2 -0
- opik/rest_api/types/llm_as_judge_model_parameters_write.py +2 -0
- opik/rest_api/types/optimization.py +2 -0
- opik/rest_api/types/optimization_public.py +2 -0
- opik/rest_api/types/optimization_public_status.py +3 -1
- opik/rest_api/types/optimization_status.py +3 -1
- opik/rest_api/types/optimization_studio_config.py +27 -0
- opik/rest_api/types/optimization_studio_config_public.py +27 -0
- opik/rest_api/types/optimization_studio_config_write.py +27 -0
- opik/rest_api/types/optimization_studio_log.py +22 -0
- opik/rest_api/types/optimization_write.py +2 -0
- opik/rest_api/types/optimization_write_status.py +3 -1
- opik/rest_api/types/prompt.py +6 -0
- opik/rest_api/types/prompt_detail.py +6 -0
- opik/rest_api/types/prompt_detail_template_structure.py +5 -0
- opik/rest_api/types/prompt_public.py +6 -0
- opik/rest_api/types/prompt_public_template_structure.py +5 -0
- opik/rest_api/types/prompt_template_structure.py +5 -0
- opik/rest_api/types/prompt_version.py +2 -0
- opik/rest_api/types/prompt_version_detail.py +2 -0
- opik/rest_api/types/prompt_version_detail_template_structure.py +5 -0
- opik/rest_api/types/prompt_version_public.py +2 -0
- opik/rest_api/types/prompt_version_public_template_structure.py +5 -0
- opik/rest_api/types/prompt_version_template_structure.py +5 -0
- opik/rest_api/types/score_name.py +1 -0
- opik/rest_api/types/service_toggles_config.py +6 -0
- opik/rest_api/types/span_enrichment_options.py +31 -0
- opik/rest_api/types/span_filter.py +23 -0
- opik/rest_api/types/span_filter_operator.py +21 -0
- opik/rest_api/types/span_filter_write.py +23 -0
- opik/rest_api/types/span_filter_write_operator.py +21 -0
- opik/rest_api/types/span_llm_as_judge_code.py +27 -0
- opik/rest_api/types/span_llm_as_judge_code_public.py +27 -0
- opik/rest_api/types/span_llm_as_judge_code_write.py +27 -0
- opik/rest_api/types/span_update.py +46 -0
- opik/rest_api/types/studio_evaluation.py +20 -0
- opik/rest_api/types/studio_evaluation_public.py +20 -0
- opik/rest_api/types/studio_evaluation_write.py +20 -0
- opik/rest_api/types/studio_llm_model.py +21 -0
- opik/rest_api/types/studio_llm_model_public.py +21 -0
- opik/rest_api/types/studio_llm_model_write.py +21 -0
- opik/rest_api/types/studio_message.py +20 -0
- opik/rest_api/types/studio_message_public.py +20 -0
- opik/rest_api/types/studio_message_write.py +20 -0
- opik/rest_api/types/studio_metric.py +21 -0
- opik/rest_api/types/studio_metric_public.py +21 -0
- opik/rest_api/types/studio_metric_write.py +21 -0
- opik/rest_api/types/studio_optimizer.py +21 -0
- opik/rest_api/types/studio_optimizer_public.py +21 -0
- opik/rest_api/types/studio_optimizer_write.py +21 -0
- opik/rest_api/types/studio_prompt.py +20 -0
- opik/rest_api/types/studio_prompt_public.py +20 -0
- opik/rest_api/types/studio_prompt_write.py +20 -0
- opik/rest_api/types/trace.py +6 -0
- opik/rest_api/types/trace_public.py +6 -0
- opik/rest_api/types/trace_thread_filter_write.py +23 -0
- opik/rest_api/types/trace_thread_filter_write_operator.py +21 -0
- opik/rest_api/types/trace_thread_update.py +19 -0
- opik/rest_api/types/trace_update.py +39 -0
- opik/rest_api/types/value_entry.py +2 -0
- opik/rest_api/types/value_entry_compare.py +2 -0
- opik/rest_api/types/value_entry_experiment_item_bulk_write_view.py +2 -0
- opik/rest_api/types/value_entry_public.py +2 -0
- opik/rest_api/types/video_url.py +19 -0
- opik/rest_api/types/video_url_public.py +19 -0
- opik/rest_api/types/video_url_write.py +19 -0
- opik/synchronization.py +5 -6
- opik/{decorator/tracing_runtime_config.py → tracing_runtime_config.py} +6 -7
- {opik-1.9.5.dist-info → opik-1.9.39.dist-info}/METADATA +5 -4
- {opik-1.9.5.dist-info → opik-1.9.39.dist-info}/RECORD +246 -151
- opik/api_objects/prompt/chat_prompt_template.py +0 -164
- opik/api_objects/prompt/prompt.py +0 -131
- /opik/rest_api/{spans/types → types}/span_update_type.py +0 -0
- {opik-1.9.5.dist-info → opik-1.9.39.dist-info}/WHEEL +0 -0
- {opik-1.9.5.dist-info → opik-1.9.39.dist-info}/entry_points.txt +0 -0
- {opik-1.9.5.dist-info → opik-1.9.39.dist-info}/licenses/LICENSE +0 -0
- {opik-1.9.5.dist-info → opik-1.9.39.dist-info}/top_level.txt +0 -0
|
@@ -1,24 +1,31 @@
|
|
|
1
|
-
opik/__init__.py,sha256=
|
|
1
|
+
opik/__init__.py,sha256=Ai4OPTOcT1SRD-cQA4zPpiiGG-8bou82_epVcx5N6kQ,2208
|
|
2
2
|
opik/_logging.py,sha256=59NbtFp3Jc_hX_gL6oYicucrH9bnX9I9kl6EKD0u8dM,3104
|
|
3
|
-
opik/config.py,sha256=
|
|
3
|
+
opik/config.py,sha256=zdZdfdl44BCxaIopPgNcqtSLb-dYBt-GRa0tT79FjA8,15522
|
|
4
4
|
opik/context_storage.py,sha256=8WA1bAwRjtFn81xDCInChRRUIh6vOsNrjI6QKC9OYq0,7047
|
|
5
5
|
opik/datetime_helpers.py,sha256=tjx_dH6k1198WpFWoKedMF5ugS35YFwi4JxOI49qnOA,221
|
|
6
|
-
opik/dict_utils.py,sha256=
|
|
6
|
+
opik/dict_utils.py,sha256=muiOr7Q9Dv6yoHAFv_vh9PjvoJCUmXYQCMk_9qoNxc4,2280
|
|
7
7
|
opik/environment.py,sha256=gL2SDTVx_PcelRLNz3yrLbqQ0lg78HHeyZQUNiF89W0,3137
|
|
8
|
-
opik/exceptions.py,sha256=
|
|
8
|
+
opik/exceptions.py,sha256=AiGQt0BJ9KVa7bO1uh2fs438DtObe0dQXr9sVepQ8ZI,5379
|
|
9
9
|
opik/format_helpers.py,sha256=1Yp18OMWU5YTGeUc1D-UWbAoW3OvAuvBvoE_9F7rJBs,502
|
|
10
10
|
opik/httpx_client.py,sha256=724dPwhsW7yCRwE_k78-ddnLaRvJYhNy1dyrkbukEAA,4032
|
|
11
|
-
opik/id_helpers.py,sha256=
|
|
11
|
+
opik/id_helpers.py,sha256=RgwTptxnwoJbCyhfSOdDxp9fJ6tf0u6us4ktOt-L3Ik,1774
|
|
12
12
|
opik/jsonable_encoder.py,sha256=gSIQ42dCz1y5Q0V1ICHG2kgU1CGoSMXxD-Q848vrvAo,3987
|
|
13
13
|
opik/logging_messages.py,sha256=g6W6Llv9LooYueSg-pCuaeibNV3Y8BCDmXIuAJWU09g,3818
|
|
14
|
-
opik/opik_context.py,sha256=
|
|
14
|
+
opik/opik_context.py,sha256=UGuel7BcCJxScB76S9L2Oj2_ohVWVgmXKEfJcFDLnIU,8788
|
|
15
15
|
opik/package_version.py,sha256=Yd6nr3cEzJQl3ChSVBP6Qt0EEKMC6OWpt7FTiL5_0R8,270
|
|
16
16
|
opik/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
opik/s3_httpx_client.py,sha256=5158ppFE86qwZ6adlrkbLPxqmZ1kzEc0eeFK3X2SHyc,1465
|
|
18
18
|
opik/semantic_version.py,sha256=u7VMQcberN4S6gTaMqoOKhTjxDKyxnrMhsYxP7XbTqU,7226
|
|
19
|
-
opik/synchronization.py,sha256=
|
|
19
|
+
opik/synchronization.py,sha256=ClxQ_2xEv3kATt0VsPgdgkZBXI_D0QuakdDO97FCS0A,1573
|
|
20
|
+
opik/tracing_runtime_config.py,sha256=0ZpjFhXOk8DmbzMFYLuNbwoV51n21j0NGEPS_WrnWT8,1155
|
|
20
21
|
opik/types.py,sha256=RHLfS70mqgV9bHPeGqMefkhXhtbsqIoadhGmNVRwXDA,2779
|
|
21
22
|
opik/url_helpers.py,sha256=VDunT7QHJNRVgcyk3tD2APU-hfDcqfI4Fh_KNXbc6ro,2951
|
|
23
|
+
opik/anonymizer/__init__.py,sha256=H7y9-Io-IwfnCzPwC1vtEslOsRSsUzV-Z78mA-xwWpU,198
|
|
24
|
+
opik/anonymizer/anonymizer.py,sha256=LMx0uH6SDfWzy9ySXJL69qkEZhb0Fp9zpRicT-Wwglo,357
|
|
25
|
+
opik/anonymizer/factory.py,sha256=UNS5apH9ON_L9Ew81miaC8z-lXhTz91UDygACGJKEko,3042
|
|
26
|
+
opik/anonymizer/recursive_anonymizer.py,sha256=NuKZT4vRtC9OlHDxCgAvyL1AJa3Fef8tvEn9uVs7o_Q,2127
|
|
27
|
+
opik/anonymizer/rules.py,sha256=I2VmJNtnInjG-9VX-2-72PN7KMQsz38RU3Wv3UTATAI,1704
|
|
28
|
+
opik/anonymizer/rules_anonymizer.py,sha256=-s2m99I5tHel88L8k-4P85UlXccjKYxqugT2inO9YSE,1118
|
|
22
29
|
opik/api_key/__init__.py,sha256=4itT83VvTCHZSTd3W_TWpCTJUBjMbhLXu9B-HJ2B_lI,567
|
|
23
30
|
opik/api_key/base64_helper.py,sha256=Mu9tDbm6qhkO_5EnrI2skIXZKllueYj61E_Xe7FbgZE,993
|
|
24
31
|
opik/api_key/opik_api_key.py,sha256=jk58kXDJrp7eV6MUUGu4kapHHlQ5URbEhRXbNzff4ow,3136
|
|
@@ -26,9 +33,9 @@ opik/api_objects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
26
33
|
opik/api_objects/constants.py,sha256=d4GdHNj7erGM4eOefPgjxDdb5UmCFX7lVc6ERIy3hb4,206
|
|
27
34
|
opik/api_objects/data_helpers.py,sha256=cJNYOL6ltXzxVJFTDtgOPB-r-LSUlcSBgWz0hQwatNI,2715
|
|
28
35
|
opik/api_objects/helpers.py,sha256=bogbfH6ly6I9pVD5rmXv5-XbfJxwXmEWjl4VQzaa3ro,5163
|
|
29
|
-
opik/api_objects/local_recording.py,sha256=
|
|
30
|
-
opik/api_objects/opik_client.py,sha256=
|
|
31
|
-
opik/api_objects/opik_query_language.py,sha256=
|
|
36
|
+
opik/api_objects/local_recording.py,sha256=rBixQKqoYBF7ToeaHXa4tXj2fyz0JYUecxgVPZ5Le5I,2838
|
|
37
|
+
opik/api_objects/opik_client.py,sha256=xIXm1II-EquoYgSsNZjnFOz6FDv1xqkTlvG881tWTQA,69859
|
|
38
|
+
opik/api_objects/opik_query_language.py,sha256=yapGPiYp0bDl4tT7xiF1UwxfPYVAwhXIp1abDi1m3x8,13428
|
|
32
39
|
opik/api_objects/rest_stream_parser.py,sha256=nq3dBpC29TZuPk7HhoQXSWkTwAb5ci-JHPSa6k823Ys,2859
|
|
33
40
|
opik/api_objects/search_helpers.py,sha256=SHMOh5IS1jcs2fITfLXTa-s_4TN8YRN8frxjHW8reLk,2935
|
|
34
41
|
opik/api_objects/validation_helpers.py,sha256=OLu8PU_4nAA-XfR19Tevj5rBUgRsIlpJM3jgVUhTZlI,1700
|
|
@@ -43,24 +50,29 @@ opik/api_objects/dataset/__init__.py,sha256=avZ5v9Rp3MjYDTIVtI1kbdKd3XW-N5mEzLK5
|
|
|
43
50
|
opik/api_objects/dataset/converters.py,sha256=0VVYzHXgr4VMEDzvRHtJ-310VaBkiHNXIfjMeCIa2eo,2994
|
|
44
51
|
opik/api_objects/dataset/dataset.py,sha256=zOWO3HF_6M4VZVVyznf70PtYDjsUL_ITj_VQjEUXw_g,14788
|
|
45
52
|
opik/api_objects/dataset/dataset_item.py,sha256=2EKKUq779NsKY30Z4M-KemwUuKdQ4EbuNOuvW-WzMhY,1434
|
|
46
|
-
opik/api_objects/dataset/rest_operations.py,sha256=
|
|
53
|
+
opik/api_objects/dataset/rest_operations.py,sha256=93H1uyYSiwHc64KQGdoS_PsdiPEy0_XfUDQZ3hso24A,2708
|
|
47
54
|
opik/api_objects/experiment/__init__.py,sha256=8ii3wT0SPHQcT5qW6_-xpgvb7jY3njke9nzifzDjShg,212
|
|
48
|
-
opik/api_objects/experiment/experiment.py,sha256=
|
|
55
|
+
opik/api_objects/experiment/experiment.py,sha256=a1g8BtLnl96CTxeYZf1ETaJbU3RIGHr5OdG7ccsS0vk,5001
|
|
49
56
|
opik/api_objects/experiment/experiment_item.py,sha256=cTY_73H7VDZsmcuf5DOFKRL-kRbNyk9IUyMZzws65Nw,1591
|
|
50
57
|
opik/api_objects/experiment/experiments_client.py,sha256=6w49dmTNK-0_cd2UIcc4TavLjVQJ5zU0g4PsTi2-fHM,2386
|
|
51
|
-
opik/api_objects/experiment/helpers.py,sha256=
|
|
58
|
+
opik/api_objects/experiment/helpers.py,sha256=LrLJesxWyERLe9n5t63SnRhc_o9FOAg2Cg_nfQRgXfw,3144
|
|
52
59
|
opik/api_objects/experiment/rest_operations.py,sha256=HNqJMysWGr3St4BHFT8K2vXTKuH_tHehzbgd7D-C5R4,3660
|
|
53
60
|
opik/api_objects/feedback_score/__init__.py,sha256=W1zAZuAQ6RaZCBe-BhpeFp3XeR8w6xrli5kL1Oh_PME,133
|
|
54
61
|
opik/api_objects/feedback_score/converters.py,sha256=-0WCSy2JxtXBJi2xhS2w6Ssr4WLk7IDGFYLAF2h0vNQ,694
|
|
55
62
|
opik/api_objects/optimization/__init__.py,sha256=jYW7rzCav3sEQBjZqKFVknEhjNvAndYrba4v-b0SsEE,67
|
|
56
63
|
opik/api_objects/optimization/optimization.py,sha256=DQwic0dFB2JJ_1aNpsCtlvoDwbt6wXiXlK4nUe7pBnQ,1091
|
|
57
|
-
opik/api_objects/prompt/__init__.py,sha256=
|
|
58
|
-
opik/api_objects/prompt/
|
|
59
|
-
opik/api_objects/prompt/
|
|
60
|
-
opik/api_objects/prompt/client.py,sha256=
|
|
61
|
-
opik/api_objects/prompt/
|
|
62
|
-
opik/api_objects/prompt/
|
|
63
|
-
opik/api_objects/prompt/
|
|
64
|
+
opik/api_objects/prompt/__init__.py,sha256=EH4in2-v1wMjROL5WCRhJxJ2Y__XpC5Ag5kKc8lz7KI,456
|
|
65
|
+
opik/api_objects/prompt/base_prompt.py,sha256=4nBMZm7_7J5xAiy_wPCjOHjk0fMvc2wmixJpHLTRo8s,1774
|
|
66
|
+
opik/api_objects/prompt/base_prompt_template.py,sha256=5YPJz6x1pVYY23DhNx0emCQKqWnsiO1G3tX1pP6RJfU,796
|
|
67
|
+
opik/api_objects/prompt/client.py,sha256=yFp4O5pDqRxWx-nXuOUcA0egs_gQuPunJcp9iSuoa44,11583
|
|
68
|
+
opik/api_objects/prompt/types.py,sha256=e5djOHnwedc6Uj26Po4gF4TFavSLCzlUcJkWqOz5Xzc,713
|
|
69
|
+
opik/api_objects/prompt/chat/__init__.py,sha256=V9kIdYC7W5MNno4JHYmq5Cu_wmYtRl_I6gFuIrCRg2w,52
|
|
70
|
+
opik/api_objects/prompt/chat/chat_prompt.py,sha256=coFJU964nPaGYwAatVbJNBvyXnR8gMf5oLNM1a364dk,6963
|
|
71
|
+
opik/api_objects/prompt/chat/chat_prompt_template.py,sha256=pGvip3ROzW-IesZ_4SIqLDzZVHM0TChLlCORyN5u1Ho,12790
|
|
72
|
+
opik/api_objects/prompt/chat/content_renderer_registry.py,sha256=sqB01bHH-brWe8_jnClYE1f8_3gykkwsbU9ihy-iv7Q,7270
|
|
73
|
+
opik/api_objects/prompt/text/__init__.py,sha256=V9kIdYC7W5MNno4JHYmq5Cu_wmYtRl_I6gFuIrCRg2w,52
|
|
74
|
+
opik/api_objects/prompt/text/prompt.py,sha256=8o2jx8SoVlbyj6sdflqOK2aO22gtiZwZ4n-TOrIaxHM,5865
|
|
75
|
+
opik/api_objects/prompt/text/prompt_template.py,sha256=XxT_ZB8Vm7PhFqa2aYpQScWKm2M582OrmG1-0jPKnDk,1809
|
|
64
76
|
opik/api_objects/span/__init__.py,sha256=Zp32wDuHEvwTVKXzhWS539-mAbKa1vUH7A0-RkpyPsA,171
|
|
65
77
|
opik/api_objects/span/converters.py,sha256=aofNE7yl_pC-b2rgriQZNmIkEy0l-wKMmLzNMqk5ISw,1227
|
|
66
78
|
opik/api_objects/span/span_client.py,sha256=nOXbjs9tCeejClrH6l7a7c_fEklCIoW1Ghi0K7T_kd8,16247
|
|
@@ -75,17 +87,17 @@ opik/api_objects/trace/trace_data.py,sha256=-E4YUTzONqiMg-dZzQEZhZ3ygQUBHgoxRCpX
|
|
|
75
87
|
opik/cli/__init__.py,sha256=s9_ISvQGLCorEgd8E3q9Bw7TZX0bwCKQMJj80KVdUyc,71
|
|
76
88
|
opik/cli/__main__.py,sha256=66_rRJrIliQs94qE4eiDzGin38TBXOM85b3C11raRtU,87
|
|
77
89
|
opik/cli/configure.py,sha256=4WfrPyNkiec-QCdVrlVSKE5l7imJZ17PuD1ap8hQhXI,2244
|
|
78
|
-
opik/cli/export.py,sha256=
|
|
90
|
+
opik/cli/export.py,sha256=xakdIEAdg2vx89ZrmST1YDVDyVEX4mloKDxUP6N8rZo,29081
|
|
79
91
|
opik/cli/healthcheck.py,sha256=QqV4pTKIBxoR3nXvvYOpQfI_rZf9oY4tG6MDvUaWA8k,703
|
|
80
92
|
opik/cli/import_command.py,sha256=r7aNm3KOODy9hxB5sKxnU0KscsIBWcKMYt3ioipN4ds,21332
|
|
81
93
|
opik/cli/main.py,sha256=qjCfv3qRnUh5SeWKEsnOrN37CQvFmESZWOKbdruaDtQ,1250
|
|
82
94
|
opik/cli/proxy.py,sha256=ekGVi8OxXXR_5L4bvz3j5ys8lngCIX8CYwdTOKDKrQY,2303
|
|
83
95
|
opik/cli/usage_report/__init__.py,sha256=T8EkPLpsTSjdX5JFjPZ-wXqmESzBtRECzuHyIhOEQk0,423
|
|
84
|
-
opik/cli/usage_report/charts.py,sha256=
|
|
85
|
-
opik/cli/usage_report/cli.py,sha256=
|
|
96
|
+
opik/cli/usage_report/charts.py,sha256=drZBXhhLxuISMvk7nkcEYyhAVjU_1prOOdDYlLHfskU,28776
|
|
97
|
+
opik/cli/usage_report/cli.py,sha256=rg_YIDj_qrrx0VDvjPcZfmqze7TnsIohb03vkSHgiKo,10438
|
|
86
98
|
opik/cli/usage_report/constants.py,sha256=r0kAUU8nm37vU_PnEM-UwVX0ZyXoWW2WJoUAEhGO-fU,390
|
|
87
99
|
opik/cli/usage_report/extraction.py,sha256=7AuLE0bF0PbTv9tgGkb0ydSPCE0OuwwjzHjKbz8X2ME,35090
|
|
88
|
-
opik/cli/usage_report/pdf.py,sha256=
|
|
100
|
+
opik/cli/usage_report/pdf.py,sha256=6VVYY1QViORBtPNz2q-eUKK7AVxOy9DasArfazkjOo8,9087
|
|
89
101
|
opik/cli/usage_report/statistics.py,sha256=u4lcI3rNOmUkvB4Qk2k8FB2gnokGey5DYRgnqWjiNcQ,3002
|
|
90
102
|
opik/cli/usage_report/utils.py,sha256=yh3XEKNJCbbminRjrXH1ZA62eVN7-00IUjX_o0yzusU,8209
|
|
91
103
|
opik/configurator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -94,16 +106,15 @@ opik/configurator/interactive_helpers.py,sha256=KI8xAAamRdPUc4LxXauQeP6iPdznw8nw
|
|
|
94
106
|
opik/configurator/opik_rest_helpers.py,sha256=4CN8ZmIhBfVWmp2fsDsrqUZXrgr5sw_hrihfGSY_kM8,3485
|
|
95
107
|
opik/decorator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
108
|
opik/decorator/arguments_helpers.py,sha256=8agfmugE7ecVSqjzD2r5L20KY95d_URhc7MjE4OBjv4,3027
|
|
97
|
-
opik/decorator/base_track_decorator.py,sha256=
|
|
109
|
+
opik/decorator/base_track_decorator.py,sha256=kzXkPy3MKD6NqsFwQWAE-bnOb1T8MqL42hdslAl17eo,25068
|
|
98
110
|
opik/decorator/error_info_collector.py,sha256=pFNKq5EPUtZgVwCXRM_WK1BzJsDQ8XCDeeX6OtgESq8,420
|
|
99
111
|
opik/decorator/generator_wrappers.py,sha256=jsw4kpzj0BJ5JC81cuRdgzOQJAJY7by-b7zColF34Bk,6562
|
|
100
112
|
opik/decorator/inspect_helpers.py,sha256=aBXLQcKBEa9OZqI5yNjcwUcHqxAkUpDZ7g-E842MRwA,1500
|
|
101
113
|
opik/decorator/span_creation_handler.py,sha256=HQPbx097UuPD407It72xmT7n7-ovqIAAU8HWXZCkE5I,4746
|
|
102
|
-
opik/decorator/tracing_runtime_config.py,sha256=EwytUW8NUxG0Fl91h2Yr7koM4I5Wqp82S5bB2pgsHuA,1183
|
|
103
114
|
opik/decorator/tracker.py,sha256=ScSYD87HSQzZ7dbM4WaCTh6kcqabAtbP_Dzo5LBlEd0,2398
|
|
104
115
|
opik/decorator/context_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
-
opik/decorator/context_manager/span_context_manager.py,sha256=
|
|
106
|
-
opik/decorator/context_manager/trace_context_manager.py,sha256=
|
|
116
|
+
opik/decorator/context_manager/span_context_manager.py,sha256=4MzrleLb_UwSBB1xE2SZ3Uwc1IWzygzQJ7oVcXjvPtU,5184
|
|
117
|
+
opik/decorator/context_manager/trace_context_manager.py,sha256=U_Dk2auvlTAm3jy_iboZ08byeT2OH_xWf8ghcLBt9XI,3041
|
|
107
118
|
opik/decorator/opik_args/__init__.py,sha256=gwW-DhGwcifUyMHTL23vHKpXgvOVywNmZnJJmRZ9wNE,286
|
|
108
119
|
opik/decorator/opik_args/api_classes.py,sha256=E-Lfr4TSCah9MmN5Pvnqv_1K2wX_kBy_Or1d2fxy9WY,2235
|
|
109
120
|
opik/decorator/opik_args/helpers.py,sha256=rPaL-1vBRmIwRBnC7iDh31F9kifpTM0RZ6c_P1uBeCY,3969
|
|
@@ -121,22 +132,23 @@ opik/error_tracking/error_filtering/filter_by_count.py,sha256=vplIt-1_xG8M_pOQWO
|
|
|
121
132
|
opik/error_tracking/error_filtering/filter_by_response_status_code.py,sha256=t_pj6cNWlXFfC2UDW_2eixLefFSbRxQ-ABTzc-D4DZs,1229
|
|
122
133
|
opik/error_tracking/error_filtering/filter_chain.py,sha256=LZc_EN8HjCpwAPpuuR2ObMP3d7Ydu7cF9nVxLKJSQJM,606
|
|
123
134
|
opik/error_tracking/error_filtering/filter_chain_builder.py,sha256=e_LVqR3dez4Lr-P_j3LRQ3gcekfTWlSeoSLB1_fW5kI,954
|
|
124
|
-
opik/evaluation/__init__.py,sha256=
|
|
135
|
+
opik/evaluation/__init__.py,sha256=HS1KWRficBRUrLuibRzeryHVuBkQe21hNFTBK-36iio,298
|
|
125
136
|
opik/evaluation/asyncio_support.py,sha256=PgEiRj9Oy_feQk2ETYbN4Bmfta5JtQc90d6ORMMI4W0,1551
|
|
126
|
-
opik/evaluation/evaluation_result.py,sha256=
|
|
127
|
-
opik/evaluation/evaluator.py,sha256=
|
|
137
|
+
opik/evaluation/evaluation_result.py,sha256=lcLNUmKujCSs2TUR0S0b3WZThjov516dbwMbJ3TiqRU,6407
|
|
138
|
+
opik/evaluation/evaluator.py,sha256=o_NziYHWaBOavwC1OtytAXpUP8756zJ1uamuLsT8teU,38387
|
|
128
139
|
opik/evaluation/preprocessing.py,sha256=QJWbOO-psXDCzCIFp8qq4dFMkQhQCe5RmdzUrLXudbo,2444
|
|
129
|
-
opik/evaluation/report.py,sha256=
|
|
130
|
-
opik/evaluation/rest_operations.py,sha256=
|
|
140
|
+
opik/evaluation/report.py,sha256=PGDbEP_8HwG_r6T2YM-EA57vxKLcl59hh9Qqr0tyUqk,5535
|
|
141
|
+
opik/evaluation/rest_operations.py,sha256=Z2p9HC1eF4AaV87aa4VdrnS5K95t-69VStVIz8i5wTU,3197
|
|
131
142
|
opik/evaluation/score_statistics.py,sha256=2oIo3KuttDP_X2RcZn5U0QHVWSY6-Kd4ehP1TdZuIm4,2060
|
|
132
|
-
opik/evaluation/test_case.py,sha256=
|
|
143
|
+
opik/evaluation/test_case.py,sha256=LibThCvQ1JuBfSKDqKNNmKjSLPNGncb7Dz_XjPooV6A,316
|
|
133
144
|
opik/evaluation/test_result.py,sha256=ArCVEx5CKMf6jgXTMSUVeo5a2VvlEjjcJhBF8G5THUg,248
|
|
134
|
-
opik/evaluation/types.py,sha256
|
|
145
|
+
opik/evaluation/types.py,sha256=Lkc0pRVTpb9JMbYWDt-MRxBg1tIiCNiQxopuwlY7g7I,391
|
|
135
146
|
opik/evaluation/engine/__init__.py,sha256=VxBL8We13iKMZTJpv8uYDw8j-OR2Tf4hzKPrjMAPnE8,69
|
|
136
|
-
opik/evaluation/engine/engine.py,sha256=
|
|
147
|
+
opik/evaluation/engine/engine.py,sha256=h3inBice3Yyw0LfQw31yOyPaylO9NahfJkZOhCbgtrw,14221
|
|
137
148
|
opik/evaluation/engine/evaluation_tasks_executor.py,sha256=QBjpd2NLmKkTfk0Bp0rBrYKgRzn_oRwXE-_s5aAr6ks,1241
|
|
138
149
|
opik/evaluation/engine/exception_analyzer.py,sha256=AZwvCO_NvE7sB0cgOzrkdwf8WBRK26SyYZvXStSKW_Q,429
|
|
139
|
-
opik/evaluation/engine/helpers.py,sha256
|
|
150
|
+
opik/evaluation/engine/helpers.py,sha256=QwbXUgHdf5TyxZLvhdEN_F_DOXc9HPtBEalPwiBZG68,2165
|
|
151
|
+
opik/evaluation/engine/metrics_evaluator.py,sha256=4bv7bMzAK6NS40FAKH1ege_T7pguPPoIDcvL64P_QjQ,8183
|
|
140
152
|
opik/evaluation/engine/types.py,sha256=TXCn41uvSQkb-R3Sz4NfvlSjjHafknP0QmVSSbCz_cE,150
|
|
141
153
|
opik/evaluation/metrics/__init__.py,sha256=n18zYJl4dIDcoOG2IT7088MyPSfdj0ZROB9qgwaXQWM,5151
|
|
142
154
|
opik/evaluation/metrics/aggregated_metric.py,sha256=5W9_c6ZydJrHLCEfx9lA-zDPjpf35dTkQ7r2vOoyTVo,3627
|
|
@@ -250,7 +262,7 @@ opik/evaluation/metrics/llm_judges/usefulness/parser.py,sha256=sfo0KRvAWRfqQ-_8g
|
|
|
250
262
|
opik/evaluation/metrics/llm_judges/usefulness/template.py,sha256=ikcZF_XFC3JHOz89iO5wSkwOKzdmnKURdQT2-ZmEXK4,1951
|
|
251
263
|
opik/evaluation/models/__init__.py,sha256=lrvltVQUXz106TUCTlftH22sse053DCW9-KP3iMk5Ag,460
|
|
252
264
|
opik/evaluation/models/base_model.py,sha256=h5BgCvgAPlDujTEVP43IgMc8BvdlwI2gP5J57sJ1hfk,7208
|
|
253
|
-
opik/evaluation/models/model_capabilities.py,sha256=
|
|
265
|
+
opik/evaluation/models/model_capabilities.py,sha256=DwdZ3-lEbGtQ3xqI5Itw7RMxHd75akmUHuucFofvFFw,5616
|
|
254
266
|
opik/evaluation/models/models_factory.py,sha256=brwecymXBmy99nOpgakcTiHTwbrdjQXi-iRGRf_xYrM,1140
|
|
255
267
|
opik/evaluation/models/langchain/__init__.py,sha256=HTdvdqdJnxLq7z6PKDodo-dsjwla3M-cBv9gjRPEjIc,87
|
|
256
268
|
opik/evaluation/models/langchain/langchain_chat_model.py,sha256=wPfmuQB_WuCkDNyh7ytRdNxZgDW5HzyT21onLC9f7SA,5679
|
|
@@ -259,7 +271,7 @@ opik/evaluation/models/langchain/opik_monitoring.py,sha256=ukhGasg_UPseg73aAZMTs
|
|
|
259
271
|
opik/evaluation/models/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
260
272
|
opik/evaluation/models/litellm/litellm_chat_model.py,sha256=o1s8HIopu1WGEXAMVcloy5V3c6xETVdfjYRmZOWcA0s,14851
|
|
261
273
|
opik/evaluation/models/litellm/opik_monitor.py,sha256=OjMM0gvzc-kmhnpOT1BSZFyMRBJeTJCiKTD976CEhqI,2800
|
|
262
|
-
opik/evaluation/models/litellm/util.py,sha256=
|
|
274
|
+
opik/evaluation/models/litellm/util.py,sha256=fDT1JN71Vmi3LLbn2_xEBsxSKepq1Pg3mJevoU3El0k,4378
|
|
263
275
|
opik/evaluation/models/litellm/warning_filters.py,sha256=GDbO-Z529DYrBi2R67EDr-G4KFQVpPCc_yvOKlGeN_o,1054
|
|
264
276
|
opik/evaluation/samplers/__init__.py,sha256=I9yH-5I06sl68DDVspVMtmPs4T1VVVq7qXg8kRuwcTU,168
|
|
265
277
|
opik/evaluation/samplers/base_dataset_sampler.py,sha256=dt97VqzShMpTlaHBnwvhA9O33R9nLiRDI2jpuL7s5lI,1178
|
|
@@ -301,15 +313,16 @@ opik/guardrails/guards/topic.py,sha256=ydsaxzdoGOxtXNHmzr8LWmGK0k7jrnOzY_HnNuLkm
|
|
|
301
313
|
opik/healthcheck/__init__.py,sha256=ErdYCXVehzDJVxqRx2xysLNTXzYevAWZPfgAGb7Ve04,2019
|
|
302
314
|
opik/healthcheck/checks.py,sha256=_KVYjJ4oT8NX3dnPyOcz4I3HnN4x2FLLl2OjysYhnis,1072
|
|
303
315
|
opik/healthcheck/rich_representation.py,sha256=uzvdxa_fa7IhBSY4K7-T9pOBTM3dkf3SZeclpGcQLwc,3331
|
|
304
|
-
opik/hooks/__init__.py,sha256=
|
|
316
|
+
opik/hooks/__init__.py,sha256=nuphD_cqLRgvv-MwovI7rxEQcuDdMVdVS_qRT6-ZD8w,475
|
|
317
|
+
opik/hooks/anonymizer_hook.py,sha256=tJ1gpbsPXNIEql27mDueLuR6IfCbnA2n-0m8W0QLRnU,973
|
|
305
318
|
opik/hooks/httpx_client_hook.py,sha256=hQjFwEq67AqC_H2J1jORzfbEkhtICd8zMvn2AcJ4_M8,3877
|
|
306
319
|
opik/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
320
|
opik/integrations/adk/__init__.py,sha256=7XMgY3vFCTwElaRscaNhoAxrS3QpTS-5h-YdET4X-2s,571
|
|
308
321
|
opik/integrations/adk/callback_context_info_extractors.py,sha256=_7Xqm4yV5wmwWynlbPIZoX9OQSm5vU33_Rb-MiB1MUc,1037
|
|
309
|
-
opik/integrations/adk/helpers.py,sha256=
|
|
310
|
-
opik/integrations/adk/legacy_opik_tracer.py,sha256=
|
|
311
|
-
opik/integrations/adk/opik_tracer.py,sha256
|
|
312
|
-
opik/integrations/adk/recursive_callback_injector.py,sha256
|
|
322
|
+
opik/integrations/adk/helpers.py,sha256=r5_E-jYmO6SEsG-yFxr_KzjPGTWpO4tPdPxZRopZqBo,1384
|
|
323
|
+
opik/integrations/adk/legacy_opik_tracer.py,sha256=7K78XIpYgbRkttBB7xK0i6ha284LKtP5-djvpYaaAco,13861
|
|
324
|
+
opik/integrations/adk/opik_tracer.py,sha256=GxM0oIJzi7jzKfZpO7vo-0PqoJBVBzEzk0h1vt75B5o,13032
|
|
325
|
+
opik/integrations/adk/recursive_callback_injector.py,sha256=-ZAR3Fl0r13hgDlPceQNdc4La_nmRBX43WhjcqpIBDs,4090
|
|
313
326
|
opik/integrations/adk/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
327
|
opik/integrations/adk/graph/mermaid_graph_builder.py,sha256=ay8nl895Z6xBgkn2Qe539I6sVolYGkOou8PTZPAG2jE,4806
|
|
315
328
|
opik/integrations/adk/graph/nodes.py,sha256=rq8nlK8QMIvOA76NJ4qjSfZPcuF4YKq8c-yYR2GYGz4,3127
|
|
@@ -320,7 +333,7 @@ opik/integrations/adk/patchers/llm_response_wrapper.py,sha256=zbalSFn4fdo7AV4TkG
|
|
|
320
333
|
opik/integrations/adk/patchers/patchers.py,sha256=_BiCCC52zozA6MEXdhSLOAKJIxmBGo0NOiqTjHFYhd8,2720
|
|
321
334
|
opik/integrations/adk/patchers/adk_otel_tracer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
322
335
|
opik/integrations/adk/patchers/adk_otel_tracer/llm_span_helpers.py,sha256=Jzs35dcuUuKGtN6oAbUEKvGq7iJtSLJOtTrfu0oA5wU,776
|
|
323
|
-
opik/integrations/adk/patchers/adk_otel_tracer/opik_adk_otel_tracer.py,sha256=
|
|
336
|
+
opik/integrations/adk/patchers/adk_otel_tracer/opik_adk_otel_tracer.py,sha256=jN4YDPjPSCra1a60RDuLOnuMBzAAszvQvfufc9QWRG0,8282
|
|
324
337
|
opik/integrations/aisuite/__init__.py,sha256=3S9H8Yqw8tZrCAo9NGIwrQ4kwwmFScMxzc7QT5MWrjU,70
|
|
325
338
|
opik/integrations/aisuite/aisuite_decorator.py,sha256=iC1ZOH4fCxd1WYrbpSVqf0r2oC3x6lJdsll8cSZOE44,5057
|
|
326
339
|
opik/integrations/aisuite/opik_tracker.py,sha256=qi_VceAUjSivDxTEJf7HvdxATtKMSe3s2VN6-ir7ku0,1083
|
|
@@ -359,7 +372,7 @@ opik/integrations/crewai/patchers/flow.py,sha256=iXrFGvQ9u8Esq3tMPa24DLK--VToKqi
|
|
|
359
372
|
opik/integrations/crewai/patchers/litellm_completion.py,sha256=6Hdia1f274i2N-NEFy6gYV__xa6OwZb7DqnkqEVq0kI,826
|
|
360
373
|
opik/integrations/crewai/patchers/llm_client.py,sha256=xkzcvBz03PEqf2sqUBSygl6V_pv7rKKA40cztEH7sm0,5905
|
|
361
374
|
opik/integrations/dspy/__init__.py,sha256=uj84RHuemNllWl1JIAmMOurhFeCHhMatNtL35HhIJUQ,63
|
|
362
|
-
opik/integrations/dspy/callback.py,sha256=
|
|
375
|
+
opik/integrations/dspy/callback.py,sha256=CLkcCPSbargzBmFqW-Pdh2uy5utUiD_5h_6GNEAK2Bc,11574
|
|
363
376
|
opik/integrations/dspy/graph.py,sha256=4fUpie26vnmqgyfD-ctnUA6AmQ8OUqBDuYJkK8352zY,3009
|
|
364
377
|
opik/integrations/genai/__init__.py,sha256=FHxg7rTCifGSghBRDVHMGeAqgRaMgne8mfZ6Hshg9wA,127
|
|
365
378
|
opik/integrations/genai/encoder_extension.py,sha256=-3Qy4RQBUTcu_I__lS4FtAbtWHPnpZZPE1tZOLPWC50,621
|
|
@@ -373,15 +386,15 @@ opik/integrations/guardrails/guardrails_tracker.py,sha256=Vnjv9xrlAuNl7NIUoml8bW
|
|
|
373
386
|
opik/integrations/haystack/__init__.py,sha256=LcPV42joJx3X2VCJzxYiPjsqyyrNwxlPshcwnmkdrFc,71
|
|
374
387
|
opik/integrations/haystack/constants.py,sha256=NM_7HWwyl-aQjIG678A2kPBcC6CYtxhARUjOXlp1-cw,1024
|
|
375
388
|
opik/integrations/haystack/converters.py,sha256=oeZOT0KIu_Wz0dKrQVkN8dw2U1Z18sNsnw4NXOJpBa8,917
|
|
376
|
-
opik/integrations/haystack/opik_connector.py,sha256=
|
|
389
|
+
opik/integrations/haystack/opik_connector.py,sha256=dQcgdMA7ebI0_a2_OZJd275cEc-WZZqEreYplKANelI,6100
|
|
377
390
|
opik/integrations/haystack/opik_span_bridge.py,sha256=2Bsk9bhmpXYd6d1mcvca8fxPeBPXgK1qnMuDXxjF4vY,10318
|
|
378
|
-
opik/integrations/haystack/opik_tracer.py,sha256=
|
|
391
|
+
opik/integrations/haystack/opik_tracer.py,sha256=dYIOaKpvZNHSe3ayC_1xXSqLOWbqucbLJvKIJKUYVZY,6596
|
|
379
392
|
opik/integrations/langchain/__init__.py,sha256=K4jg-lGHhWGBBQXV0ulE2c1dM-D-QuxIVGjstVYbp-8,181
|
|
380
393
|
opik/integrations/langchain/base_llm_patcher.py,sha256=JVS7SA7ewiS968zdzhgkc_KeFjgmVeJhMQ8cXHfSQJ8,721
|
|
381
394
|
opik/integrations/langchain/helpers.py,sha256=Noy80A5Q5cTS_-01lSw8kGNgGF4ybLjEXEC4zQ2R-3M,3324
|
|
382
395
|
opik/integrations/langchain/langgraph_async_context_bridge.py,sha256=TvbdnjF1_xNYoh60wxtJKfxaDWc8rDptEM8O3voEtgk,4848
|
|
383
396
|
opik/integrations/langchain/opik_encoder_extension.py,sha256=cMIAzy4efcGIujkBJEC9AI0nLxo6JBdD2M-XZufCFeE,393
|
|
384
|
-
opik/integrations/langchain/opik_tracer.py,sha256=
|
|
397
|
+
opik/integrations/langchain/opik_tracer.py,sha256=Zh-Ra2xTjJwdOsk9UneEPjgjhj2I5BOsFP6vvJnS8w0,33523
|
|
385
398
|
opik/integrations/langchain/provider_usage_extractors/__init__.py,sha256=bzbbJPILg2lXgKkwJx5bFMTz3E8oaewPPy7oRHq7T7A,115
|
|
386
399
|
opik/integrations/langchain/provider_usage_extractors/anthropic_usage_extractor.py,sha256=dEfM3kaOksYDLyEXHHbumN4Pyj_dp_bKwz3Am8a9-RQ,3356
|
|
387
400
|
opik/integrations/langchain/provider_usage_extractors/anthropic_vertexai_usage_extractor.py,sha256=445jpQ9xfKCyG0sHk65IxCiu20Qrg1etSeAPmcYZX8A,2196
|
|
@@ -401,17 +414,17 @@ opik/integrations/litellm/litellm_completion_decorator.py,sha256=G_Trx7DgF0IEAA5
|
|
|
401
414
|
opik/integrations/litellm/opik_tracker.py,sha256=We6MnOuXpdHsozhrq85F2MlBgoVjyRHU_LfZymXwGXw,1334
|
|
402
415
|
opik/integrations/litellm/stream_patchers.py,sha256=MQ_u04cBagb9gZxhmAYFzMCef1RPCHeAjZDtY2Gcftc,5918
|
|
403
416
|
opik/integrations/llama_index/__init__.py,sha256=_XTf-7078WHlMylgBs0pp7-rf90W-3pU0voi6BJz3M4,89
|
|
404
|
-
opik/integrations/llama_index/callback.py,sha256=
|
|
417
|
+
opik/integrations/llama_index/callback.py,sha256=JqBgTOGqrhgLD9QvYXAFL8GErZivsAiAYN5HIQYlmDU,8823
|
|
405
418
|
opik/integrations/llama_index/event_parsing_utils.py,sha256=do9sIZnp3EvQn8JzrNncI-LM8gp34UKvoivYj_1HD30,6308
|
|
406
419
|
opik/integrations/openai/__init__.py,sha256=f6SqadPPj0QpMoUoYkxjUxvwSUposIBuexsktOofT5s,67
|
|
407
420
|
opik/integrations/openai/chat_completion_chunks_aggregator.py,sha256=BV4MsnRsCvV_enOqCYAyW8b5vemsjGQ64N-6ddLsyhY,2261
|
|
408
421
|
opik/integrations/openai/openai_chat_completions_decorator.py,sha256=3F7_6WAm5NyitTCuE_Y9kltYexQlswk5PDYpAQg3dkY,6741
|
|
409
422
|
opik/integrations/openai/openai_responses_decorator.py,sha256=6C3kBF3bwMWCJn79HybgqsH2tmIH0KgBNQg7are1cdM,4738
|
|
410
|
-
opik/integrations/openai/opik_tracker.py,sha256=
|
|
423
|
+
opik/integrations/openai/opik_tracker.py,sha256=FO6r4P5vqo-bPFY94nUMgKPDNmWuoNDNpL-Qup3BBAo,5270
|
|
411
424
|
opik/integrations/openai/response_events_aggregator.py,sha256=tRoo1gz_c4XAQZRrj0TuySF9_l-h6ma_-h9YuD8_gmM,966
|
|
412
425
|
opik/integrations/openai/stream_patchers.py,sha256=L_0LKKFFc67rMW8gkbAgQwsGgk-t05BaswU6Niollr0,9087
|
|
413
426
|
opik/integrations/openai/agents/__init__.py,sha256=IQLssf69eiMPrkT9MuKX3XjsHsd-c2qrx6Rw1RSg8do,93
|
|
414
|
-
opik/integrations/openai/agents/opik_tracing_processor.py,sha256=
|
|
427
|
+
opik/integrations/openai/agents/opik_tracing_processor.py,sha256=lgPExgR1hDrafamYNrjRf-3LpX_luj7CHQ76pD4vQI0,10718
|
|
415
428
|
opik/integrations/openai/agents/span_data_parsers.py,sha256=8v7ZCg7sVe6SFtt3KpOE77rQzsdU3xy_5cGp3TZN3CQ,4451
|
|
416
429
|
opik/integrations/sagemaker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
417
430
|
opik/integrations/sagemaker/auth.py,sha256=TGbyifHMA_K1uvU5Kxjg2jRKt2qHQnLUJju3Y_Rt7jk,1244
|
|
@@ -429,11 +442,12 @@ opik/llm_usage/unknown_usage.py,sha256=gv_fo2Qsm-MpGpF-XA-_Ikp_PTEic2V2p5KFyoE7o
|
|
|
429
442
|
opik/message_processing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
443
|
opik/message_processing/api.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
431
444
|
opik/message_processing/arguments_utils.py,sha256=r4e9EqjyFPDW0GlE07rgs6Cp1mqB59jChu_4bqIH1Sc,755
|
|
445
|
+
opik/message_processing/encoder_helpers.py,sha256=q--clfQfq8Wls2CtC11V-H4u4pfeH12iWHfQb2Lr6Hk,3022
|
|
432
446
|
opik/message_processing/message_processors.py,sha256=-EcIgcFAqY3BRaexbAdRDsnLPjUxzrEYxSUqwMJY0C4,2530
|
|
433
447
|
opik/message_processing/message_processors_chain.py,sha256=JxOfh9Obqmuo8ohlrE5EZ_R70hkJNukrXwjSns2rQzE,3741
|
|
434
448
|
opik/message_processing/message_queue.py,sha256=GqyfqdUQT1szJTrr42N8kwmcAGtiSPNcwBwiHkX01yc,2497
|
|
435
|
-
opik/message_processing/messages.py,sha256=
|
|
436
|
-
opik/message_processing/online_message_processor.py,sha256=
|
|
449
|
+
opik/message_processing/messages.py,sha256=uKlF-QUrllvQwfVev_Z7WhnxwNFR19okhC_E9ItSM6U,8321
|
|
450
|
+
opik/message_processing/online_message_processor.py,sha256=WsSRKW0mZ0yfD3-TUz9MeLUzslEtq6-Bss8e0wiA_uc,12905
|
|
437
451
|
opik/message_processing/queue_consumer.py,sha256=Gh80-tBnTmSc-32R_8_o2XMCW1eBISravl0Rbvmr0kk,3344
|
|
438
452
|
opik/message_processing/streamer.py,sha256=74pEHkXogq9ovMNeiBR2AbS50bg35SZxHKrUIv2Xwc8,3816
|
|
439
453
|
opik/message_processing/streamer_constructors.py,sha256=WL91AgdSsdOn0yWgTvEVlNZ0Yz8d-y_x9utVMrIPi1Q,2078
|
|
@@ -441,7 +455,7 @@ opik/message_processing/batching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
441
455
|
opik/message_processing/batching/base_batcher.py,sha256=lOZd2NvofVeDDamRUL8bFOG97Un8oliiQExOGNy9MbM,2945
|
|
442
456
|
opik/message_processing/batching/batch_manager.py,sha256=a5fozFqzBhk1hgy7SQ2DWHrRpL2RuwkHiCgeXf61kQM,1355
|
|
443
457
|
opik/message_processing/batching/batch_manager_constuctors.py,sha256=SOP0pq9WDQYNNHCiuwyBnb6UhitGvtwISt1MD0bTMPM,3775
|
|
444
|
-
opik/message_processing/batching/batchers.py,sha256=
|
|
458
|
+
opik/message_processing/batching/batchers.py,sha256=AKc5K0TkD6H0vJQaLT3tGFvu3mw90j8x2g4oAOF267g,8035
|
|
445
459
|
opik/message_processing/batching/flushing_thread.py,sha256=0g_Dg43aAueXiAkibojA0wpqVxqAN3yjzcbFA6pWCJ0,809
|
|
446
460
|
opik/message_processing/batching/sequence_splitter.py,sha256=dOb2g2zUGwAlYQMDm3-ds_G9AigGE0r8Re3WTHA4F4U,3486
|
|
447
461
|
opik/message_processing/emulation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -458,8 +472,8 @@ opik/plugins/pytest/test_run_content.py,sha256=uYJ_xIxBpNWaJqgNYCMGMmzOhC5t5OQmM
|
|
|
458
472
|
opik/plugins/pytest/test_runs_storage.py,sha256=j1GSQmAiPBc080jjP0IsFVV5sbKZdwwjtvfBStn89hM,354
|
|
459
473
|
opik/rate_limit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
460
474
|
opik/rate_limit/rate_limit.py,sha256=r5DroR6j7nSZTdZAJ5aev4SVCndyIdXRMdwUAWam4sg,722
|
|
461
|
-
opik/rest_api/__init__.py,sha256=
|
|
462
|
-
opik/rest_api/client.py,sha256=
|
|
475
|
+
opik/rest_api/__init__.py,sha256=tNtnkZDvAWJ_0BOCBZpdMOuC8Ko_QdholOhYGeeibs8,32662
|
|
476
|
+
opik/rest_api/client.py,sha256=jpUFLR_68WTvEEjcSMRY4_amAhtSU5SWD76OHuy7Xi8,15185
|
|
463
477
|
opik/rest_api/environment.py,sha256=ZAucPFBlQ5g1vrxPMLEM6e79nXXzcBO8HUDi7bEcOFo,158
|
|
464
478
|
opik/rest_api/raw_client.py,sha256=xfStotsIUYmsUYODlPC9fwypMWAYtwxXxgPSDWA4odM,5972
|
|
465
479
|
opik/rest_api/alerts/__init__.py,sha256=OUzOpz0qbHx4BZi1YcudDVLf5OlVSsBXzWpNn9p3ik8,189
|
|
@@ -500,9 +514,12 @@ opik/rest_api/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9Ds
|
|
|
500
514
|
opik/rest_api/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
501
515
|
opik/rest_api/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
502
516
|
opik/rest_api/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
|
|
517
|
+
opik/rest_api/dashboards/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
518
|
+
opik/rest_api/dashboards/client.py,sha256=IBpsPobpHRxaQCYhDkV-fk09zBwDQ2UhN1n0S02oiTI,13885
|
|
519
|
+
opik/rest_api/dashboards/raw_client.py,sha256=IfLzgQiMr1vgNjeaUOzFoOV7Kuhno-TMnXM8xj3nVwA,22925
|
|
503
520
|
opik/rest_api/datasets/__init__.py,sha256=2GgXleo5yN3Qw5lhk-woGGvMKlmB7Y8Kfd53KpnZYBs,217
|
|
504
|
-
opik/rest_api/datasets/client.py,sha256=
|
|
505
|
-
opik/rest_api/datasets/raw_client.py,sha256=
|
|
521
|
+
opik/rest_api/datasets/client.py,sha256=MRnIuA94Gxp4ApJ65x0GQlpH0f8JgSepfjqGbagOGQA,71289
|
|
522
|
+
opik/rest_api/datasets/raw_client.py,sha256=JcPbHhhS6_bKd4MGsZn6mUa-TzYq3pok7UX16ogJb6Q,112505
|
|
506
523
|
opik/rest_api/datasets/types/__init__.py,sha256=AZRB1YoMnPs-6qrUMUGO5kDB2nAQ2f8GhKI8VPmnldQ,274
|
|
507
524
|
opik/rest_api/datasets/types/dataset_update_visibility.py,sha256=iRUTfgelAWV8izSh0-AYdhgKWpd8ZQktAvP1S64RP4U,168
|
|
508
525
|
opik/rest_api/datasets/types/dataset_write_visibility.py,sha256=bgzyifPU85WKm4qjH2aFIPBZBKjh0cOI4mW79NrwTps,167
|
|
@@ -515,8 +532,8 @@ opik/rest_api/errors/not_implemented_error.py,sha256=E_FFObYnoOIvwtVEhZlv_EllZ-G
|
|
|
515
532
|
opik/rest_api/errors/unauthorized_error.py,sha256=mryinHCAaknn5St2VF17R9XybZUcWRRYWEjxg63dQSA,340
|
|
516
533
|
opik/rest_api/errors/unprocessable_entity_error.py,sha256=JqxtzIhvjkpQDqbT9Q-go1n-gyv9PsYqq0ng_ZYyBMo,347
|
|
517
534
|
opik/rest_api/experiments/__init__.py,sha256=heFeqIrzBZ9skABEuxZQDQxbasNCoUvpstZ63-z-a_I,303
|
|
518
|
-
opik/rest_api/experiments/client.py,sha256=
|
|
519
|
-
opik/rest_api/experiments/raw_client.py,sha256=
|
|
535
|
+
opik/rest_api/experiments/client.py,sha256=azbIL-NmGdauf7BXwOhMziWQoa_tgDvhazrL0b2KEN0,40657
|
|
536
|
+
opik/rest_api/experiments/raw_client.py,sha256=ALLwaB9lBwbqe2q-mxzA5LZbXNTEq_q5S465D8crtNg,70670
|
|
520
537
|
opik/rest_api/experiments/types/__init__.py,sha256=HeuQobxV-WWCfwI0Md4Zih6k4foF8zYdSXyQOeOB8oA,427
|
|
521
538
|
opik/rest_api/experiments/types/experiment_update_status.py,sha256=2vG_diT3hbgpUYUoYTJvEZE8YZj0-_T3MI9XM8OJfYY,183
|
|
522
539
|
opik/rest_api/experiments/types/experiment_update_type.py,sha256=3Axs8ueNVCMcLtdgbqzSoVmq4uLWz621m_6lB2vhxoM,178
|
|
@@ -526,7 +543,7 @@ opik/rest_api/feedback_definitions/__init__.py,sha256=ne7HgyLEvKxJY6MfW-2Elt3w2H
|
|
|
526
543
|
opik/rest_api/feedback_definitions/client.py,sha256=sGnYMUweplfGxqufWmUrYhNW5UYCoXY_7_MvuRxaKLQ,13459
|
|
527
544
|
opik/rest_api/feedback_definitions/raw_client.py,sha256=cfikzSJPI3D6KMjuH01ggRppBukw3iKO2XbZvhxQFNI,20191
|
|
528
545
|
opik/rest_api/feedback_definitions/types/__init__.py,sha256=TRbzsJrVOC-aqeaMI398YSrdZvONBfy9w2-_ZeTzgDc,222
|
|
529
|
-
opik/rest_api/feedback_definitions/types/find_feedback_definitions_request_type.py,sha256=
|
|
546
|
+
opik/rest_api/feedback_definitions/types/find_feedback_definitions_request_type.py,sha256=TE_zKBXfZ6CSxTKexXBVxNXYMSX7TryiAD41QC4rWFM,197
|
|
530
547
|
opik/rest_api/guardrails/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
531
548
|
opik/rest_api/guardrails/client.py,sha256=hajOnzJj8susxz_JuvMfw97deiGnFBK5bV30ttepDp4,3496
|
|
532
549
|
opik/rest_api/guardrails/raw_client.py,sha256=RyYU6LPMer9oL6kQGwXxyOgjLvfEMaD_AUVpkSuu3m0,3768
|
|
@@ -542,10 +559,10 @@ opik/rest_api/open_telemetry_ingestion/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg
|
|
|
542
559
|
opik/rest_api/open_telemetry_ingestion/client.py,sha256=kWJjNjjcVxx3Wm9a-8FSM00mPf23AJ8u0LyLlTDK3VU,2910
|
|
543
560
|
opik/rest_api/open_telemetry_ingestion/raw_client.py,sha256=QEBeUVL_1GwscsFB4TbH3dKmrMuKi5NZUNDbZu6zbJY,3418
|
|
544
561
|
opik/rest_api/optimizations/__init__.py,sha256=sONODh3m0nAMzx_iwRf-hvmp7D1bLus-2i4oEkL9HKI,169
|
|
545
|
-
opik/rest_api/optimizations/client.py,sha256=
|
|
546
|
-
opik/rest_api/optimizations/raw_client.py,sha256=
|
|
562
|
+
opik/rest_api/optimizations/client.py,sha256=1F5Hafqrums_ho4uJkiZwZlhsWWHyeewPjlnPfZA5iE,26418
|
|
563
|
+
opik/rest_api/optimizations/raw_client.py,sha256=4CWgPYA-n5KGIl917Q1DDBJpoy1n36TnbNFo7LjCI2U,42469
|
|
547
564
|
opik/rest_api/optimizations/types/__init__.py,sha256=ZuDpaGFRIRf6jD6JeS74Pw8WgxS9dyjRWPOeJslbxSE,190
|
|
548
|
-
opik/rest_api/optimizations/types/optimization_update_status.py,sha256=
|
|
565
|
+
opik/rest_api/optimizations/types/optimization_update_status.py,sha256=0qqMBJy2qCmbI1N_w_jnqwchb7Q93xv3Pp4FxP2StPA,215
|
|
549
566
|
opik/rest_api/projects/__init__.py,sha256=QI8IVRv5tiBIZ_PH-E5J5iK9vPwQg1QlBFPGXE4O_Zw,409
|
|
550
567
|
opik/rest_api/projects/client.py,sha256=_zf2JN59W-XJz_Mpm2kJP6IjNY_wuAmrfyMjePZ9y4s,23989
|
|
551
568
|
opik/rest_api/projects/raw_client.py,sha256=sbkAn8YjoDO8XjQsQhlC3Gd59PDZhW78IfQPEoSZoaw,44916
|
|
@@ -554,10 +571,12 @@ opik/rest_api/projects/types/project_metric_request_public_interval.py,sha256=sk
|
|
|
554
571
|
opik/rest_api/projects/types/project_metric_request_public_metric_type.py,sha256=9V-dWJ7JsKQAeUnsqKj8BQR1HyqNW1oG382sD1e0GAk,407
|
|
555
572
|
opik/rest_api/projects/types/project_update_visibility.py,sha256=v1vw9G4PcYueHLrdS-1H0kVKR90htFRb6ROfrwrbaWI,168
|
|
556
573
|
opik/rest_api/projects/types/project_write_visibility.py,sha256=pfyJG97yOeGerc11HQ9J-jPPHDzRwVw2Apfx70bq4bY,167
|
|
557
|
-
opik/rest_api/prompts/__init__.py,sha256=
|
|
558
|
-
opik/rest_api/prompts/client.py,sha256=
|
|
559
|
-
opik/rest_api/prompts/raw_client.py,sha256=
|
|
560
|
-
opik/rest_api/prompts/types/__init__.py,sha256=
|
|
574
|
+
opik/rest_api/prompts/__init__.py,sha256=zeaDhVnOMSatH44QGm1CQA6d-jIXrg6apdpigATuhoA,303
|
|
575
|
+
opik/rest_api/prompts/client.py,sha256=I_CJXA0wJ3loZTURzJlq93wbJSjBTsc0LOr7qmOqVb4,26384
|
|
576
|
+
opik/rest_api/prompts/raw_client.py,sha256=JbLBK8MV-890K-VFObJSF78A4KMlgb7beDyo-GuLZ5Y,54385
|
|
577
|
+
opik/rest_api/prompts/types/__init__.py,sha256=aZT5dHAK6DdGO_TSJ3yzv_sgQHd-A5cEhiSxveCYbXs,419
|
|
578
|
+
opik/rest_api/prompts/types/create_prompt_version_detail_template_structure.py,sha256=zJ3nPK_pD9EIMwePTBfmOs7S1ouZ2-d64HFsktBXkmk,182
|
|
579
|
+
opik/rest_api/prompts/types/prompt_write_template_structure.py,sha256=OHoEeqBnlPuS8gb6mRWqIqGquma1-v4hzMCZF9ryQLU,168
|
|
561
580
|
opik/rest_api/prompts/types/prompt_write_type.py,sha256=KWml--cEos40UgR8dpoLydoiRMqevYayOcZFFfi7QNk,161
|
|
562
581
|
opik/rest_api/redirect/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
563
582
|
opik/rest_api/redirect/client.py,sha256=AlCdWU-JW1ZObqmHIwHK5vfBMB7BePtpAG2S6GTyVxU,10453
|
|
@@ -565,23 +584,22 @@ opik/rest_api/redirect/raw_client.py,sha256=dJPAR9e8qSG53aUXjMwPFE6P1T-57lkHGOkm
|
|
|
565
584
|
opik/rest_api/service_toggles/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
566
585
|
opik/rest_api/service_toggles/client.py,sha256=ERP8KsDr7xLNprYjJv3f1m_cfBfuzKcC-nPc6FaLS_A,2866
|
|
567
586
|
opik/rest_api/service_toggles/raw_client.py,sha256=9DTWsSlX3QdCXudsq31D3qnaU724d2jajFzyVJq4LPc,3442
|
|
568
|
-
opik/rest_api/spans/__init__.py,sha256=
|
|
569
|
-
opik/rest_api/spans/client.py,sha256=
|
|
570
|
-
opik/rest_api/spans/raw_client.py,sha256=
|
|
571
|
-
opik/rest_api/spans/types/__init__.py,sha256=
|
|
587
|
+
opik/rest_api/spans/__init__.py,sha256=Qzij-Wkr1XRPUw8PSayouFfoKQeAESkx3RdODg6fE0M,415
|
|
588
|
+
opik/rest_api/spans/client.py,sha256=QOks0bUgYszCM-sF6FG9U0l8fXM9E3WBFs77iQ6TZpg,57174
|
|
589
|
+
opik/rest_api/spans/raw_client.py,sha256=j5EZczuEwAsmZvC_UMbfpSTDyFL18RSxKoZE8Z9pPeQ,86314
|
|
590
|
+
opik/rest_api/spans/types/__init__.py,sha256=W9IvlLWEoq7PafMxmS8cc2WLi7FmT7JSJ1oIvxPCJFY,566
|
|
572
591
|
opik/rest_api/spans/types/find_feedback_score_names_1_request_type.py,sha256=TDLW07Qn5nTBMw7AoOYLsy5V_IHWcwNHtVR7tgIbb5c,197
|
|
573
592
|
opik/rest_api/spans/types/get_span_stats_request_type.py,sha256=rOz164MRpYQFavQ5CwcmsoGbdTdsxtYT7rPrw0e725A,186
|
|
574
593
|
opik/rest_api/spans/types/get_spans_by_project_request_type.py,sha256=WIsSLuOdRe6uO3nP22NdaOVRcQNoG-0nyLuM1pZgMgg,191
|
|
575
594
|
opik/rest_api/spans/types/span_search_stream_request_public_type.py,sha256=FszNz7VL1yvASzdn4pItxwaaoQF4BwPD0TE5ADsfepE,196
|
|
576
|
-
opik/rest_api/spans/types/span_update_type.py,sha256=dgmKxvLPQRkcFkxr4zLMAd3-yUgYr1SrUNKfEnmovzc,177
|
|
577
595
|
opik/rest_api/system_usage/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
578
596
|
opik/rest_api/system_usage/client.py,sha256=YC3KmWEo-KFRq5k_887kQxMQKxk8CSurv51HlfjOyMk,11819
|
|
579
597
|
opik/rest_api/system_usage/raw_client.py,sha256=_wf0d5RcVWytOPMxwBWU3R0qAPdOOQM7nSektKBAYiA,17971
|
|
580
598
|
opik/rest_api/traces/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
581
|
-
opik/rest_api/traces/client.py,sha256=
|
|
582
|
-
opik/rest_api/traces/raw_client.py,sha256=
|
|
583
|
-
opik/rest_api/types/__init__.py,sha256=
|
|
584
|
-
opik/rest_api/types/aggregation_data.py,sha256=
|
|
599
|
+
opik/rest_api/traces/client.py,sha256=7qB_pNW2i61D8qE6JYIZKIvnGYuYRb5tAQEOA66hIfA,94433
|
|
600
|
+
opik/rest_api/traces/raw_client.py,sha256=uA4epV24RNCrXpqviV2CnBwLsjaJJK1Gb68s5Wk0jyI,145158
|
|
601
|
+
opik/rest_api/types/__init__.py,sha256=xYpWE-v9QO-lZEbBamnqqZvxoJe4qDbS1x1MVh4F-gg,43958
|
|
602
|
+
opik/rest_api/types/aggregation_data.py,sha256=jdR7RAHeKJ6PJaFThXegucMsWUCE9WrsBKLOv8h-MLY,1039
|
|
585
603
|
opik/rest_api/types/alert.py,sha256=CADSJOK5EYzYoMBtulkGhbtkVtVv7DcfrDZzSYfbc1s,1152
|
|
586
604
|
opik/rest_api/types/alert_alert_type.py,sha256=vl-UeQ0yXf9nmiQJ7UQKsRUla6zLtCh2CdVJ4649kTg,171
|
|
587
605
|
opik/rest_api/types/alert_page_public.py,sha256=_O8IiigOHFaED8Beo44IoZjuqi7p_PntJ8kSDcPlX84,781
|
|
@@ -590,10 +608,10 @@ opik/rest_api/types/alert_public_alert_type.py,sha256=MWsqlygKDGGX5gccL4TegWZvqe
|
|
|
590
608
|
opik/rest_api/types/alert_trigger.py,sha256=SnSavsId1Xu-RuQZmNegtG22vN6zz-E6to3NyOVAgA0,929
|
|
591
609
|
opik/rest_api/types/alert_trigger_config.py,sha256=px6GVVXjufm3Xa7usDvSKksOlYV0wFDeeB4k23sPddo,980
|
|
592
610
|
opik/rest_api/types/alert_trigger_config_public.py,sha256=aNOZgLd4FQVOLQB8UaNzKpXwF8B3BfzWXoaqzGSiu5s,1005
|
|
593
|
-
opik/rest_api/types/alert_trigger_config_public_type.py,sha256
|
|
594
|
-
opik/rest_api/types/alert_trigger_config_type.py,sha256=
|
|
611
|
+
opik/rest_api/types/alert_trigger_config_public_type.py,sha256=-Gq-JnkQ3cokQOz4y9LL7VDE8KUWv6ZNzwgVqLeyOdI,281
|
|
612
|
+
opik/rest_api/types/alert_trigger_config_type.py,sha256=AG1PDZBJmmJm_dx1JzlYjs3pRJdC4ESIx7bsi5wgV24,275
|
|
595
613
|
opik/rest_api/types/alert_trigger_config_write.py,sha256=-XxVPUnQosYRO4dWe9gvuCOMDm3WsIibKPdEz1sp_-o,727
|
|
596
|
-
opik/rest_api/types/alert_trigger_config_write_type.py,sha256
|
|
614
|
+
opik/rest_api/types/alert_trigger_config_write_type.py,sha256=PhljmAjeTUvVEh6pYkBr2LBzkCuFmhcsvK62pSWWaGc,280
|
|
597
615
|
opik/rest_api/types/alert_trigger_event_type.py,sha256=MXyE8cYr_wJlZdcn9knnOuI6D9gkwbo6l7-4lO25ev4,454
|
|
598
616
|
opik/rest_api/types/alert_trigger_public.py,sha256=8jPKbEMZEUQ8rObmdl4qrhcFSVYxlQZXXYeyxMV7WOw,973
|
|
599
617
|
opik/rest_api/types/alert_trigger_public_event_type.py,sha256=26m1Dlcwp5PStBav9Eu4ZXiPVlnnc6NEG7t7YeC1XT8,460
|
|
@@ -617,33 +635,45 @@ opik/rest_api/types/assistant_message_role.py,sha256=tS-h-rY9n1Puh2Bce820YuruWJW
|
|
|
617
635
|
opik/rest_api/types/attachment.py,sha256=38MVHC9jDM9ZzRfq7UIs0CmuaAOET9lOmOU_p0GSlHI,598
|
|
618
636
|
opik/rest_api/types/attachment_page.py,sha256=6i7WiLstZ8moNmvWqtFVNrlXKmSH8Wh_kWT8syFD4-8,928
|
|
619
637
|
opik/rest_api/types/auth_details_holder.py,sha256=mxThXlfOBdd92_jb_RkSRce_6W2u-i3TEg3XUghm6A4,146
|
|
620
|
-
opik/rest_api/types/automation_rule_evaluator.py,sha256=
|
|
621
|
-
opik/rest_api/types/automation_rule_evaluator_llm_as_judge.py,sha256=
|
|
622
|
-
opik/rest_api/types/automation_rule_evaluator_llm_as_judge_public.py,sha256=
|
|
623
|
-
opik/rest_api/types/automation_rule_evaluator_llm_as_judge_write.py,sha256=
|
|
624
|
-
opik/rest_api/types/
|
|
625
|
-
opik/rest_api/types/automation_rule_evaluator_page_public.py,sha256
|
|
626
|
-
opik/rest_api/types/automation_rule_evaluator_public.py,sha256=
|
|
627
|
-
opik/rest_api/types/
|
|
628
|
-
opik/rest_api/types/
|
|
629
|
-
opik/rest_api/types/
|
|
630
|
-
opik/rest_api/types/
|
|
631
|
-
opik/rest_api/types/
|
|
632
|
-
opik/rest_api/types/
|
|
633
|
-
opik/rest_api/types/
|
|
634
|
-
opik/rest_api/types/
|
|
635
|
-
opik/rest_api/types/
|
|
636
|
-
opik/rest_api/types/
|
|
637
|
-
opik/rest_api/types/
|
|
638
|
-
opik/rest_api/types/
|
|
639
|
-
opik/rest_api/types/
|
|
640
|
-
opik/rest_api/types/
|
|
641
|
-
opik/rest_api/types/
|
|
638
|
+
opik/rest_api/types/automation_rule_evaluator.py,sha256=dqFJbG73rdqT-2qPc9ZIMPb8sVQUjbyKU4Fgpu0xlMI,4578
|
|
639
|
+
opik/rest_api/types/automation_rule_evaluator_llm_as_judge.py,sha256=a7Zrxi8G4gkRy1nV4vGtZSvZEx0rp2nR3qgqE-cF6pw,721
|
|
640
|
+
opik/rest_api/types/automation_rule_evaluator_llm_as_judge_public.py,sha256=Jq74iQKCUmVLaDZ93YUDUY4bNkLvYPtYh_6JuGGkHlY,765
|
|
641
|
+
opik/rest_api/types/automation_rule_evaluator_llm_as_judge_write.py,sha256=HHbjLBsdqOg4lUKIDT8io4VItcoXVHNSg5G2w0WAHWw,758
|
|
642
|
+
opik/rest_api/types/automation_rule_evaluator_object_object_public.py,sha256=ZvSR0rP519BG4qfNrT1gHBZwd83nHTud1ZXS73lH5wg,4940
|
|
643
|
+
opik/rest_api/types/automation_rule_evaluator_page_public.py,sha256=-ZwpOqWDsGkSwEUIqw8KmqrHzwvsA5rmidpjmXDhlP4,893
|
|
644
|
+
opik/rest_api/types/automation_rule_evaluator_public.py,sha256=D6fmuSuQWM_yAfPUEHFvJqKmN3sjGAF9BYtBoBFdzcA,4808
|
|
645
|
+
opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge.py,sha256=gFkKPE33XrBGdu48A_OwlR3lWcn97od1lhxvyr8rzuk,735
|
|
646
|
+
opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge_public.py,sha256=OYy3GD3YwQaFG8hBTO__8X8wX2qjq_djGuMbaTwonko,779
|
|
647
|
+
opik/rest_api/types/automation_rule_evaluator_span_llm_as_judge_write.py,sha256=QoMYtl3VopppLN4m8nGsl9jOR94dRA9h1d7QvvdWgwg,772
|
|
648
|
+
opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge.py,sha256=AFLoA6mljgeyITm8_RlI1eOnoSSPiPPHsUdAg6nRYuA,786
|
|
649
|
+
opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_public.py,sha256=rUpnQn9FV0ofgRfgNrnn-yLlRU2Mk_SLF0rRqK2zCRI,830
|
|
650
|
+
opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_write.py,sha256=OQPf4AZepBwTWNAFMeQdt76QTBqW3GzO7WU8s5j6e7k,823
|
|
651
|
+
opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python.py,sha256=OzPuE6Uzk1l8nn1vwwo-jvtwtGJrEBEqG2n99YxNrhw,839
|
|
652
|
+
opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_public.py,sha256=0dOzNEN-ndkO5K5NztzJRDTVsfacRuAqpCUjJF_NHAQ,883
|
|
653
|
+
opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_write.py,sha256=8UaEv0qUigSPf_actWj7P3-qK7lwVy7yPmFMlg6Xx_c,876
|
|
654
|
+
opik/rest_api/types/automation_rule_evaluator_update.py,sha256=Luvjw9k3P1Yts8Y_9UAJPKr_FI0SUADTyY4zimbI8pk,4338
|
|
655
|
+
opik/rest_api/types/automation_rule_evaluator_update_llm_as_judge.py,sha256=fNgGwkfqkj9oEtBWSeY2J19L5tit5o2hul1ujHIXY9Q,727
|
|
656
|
+
opik/rest_api/types/automation_rule_evaluator_update_span_llm_as_judge.py,sha256=U_3A-E4y2PLkskFRWtlxC4Ka6ah-lCKNcUfpe4e0MAM,741
|
|
657
|
+
opik/rest_api/types/automation_rule_evaluator_update_trace_thread_llm_as_judge.py,sha256=y99gX4bqoFVa-WLiI5tRyH5GcE9KUEmNDkgasblIPKQ,792
|
|
658
|
+
opik/rest_api/types/automation_rule_evaluator_update_trace_thread_user_defined_metric_python.py,sha256=OgPhOfouaVJbDwV-khwcaWbFK3FQcIfsv9L7ECjzsGw,845
|
|
659
|
+
opik/rest_api/types/automation_rule_evaluator_update_user_defined_metric_python.py,sha256=JIctFWhwFn5GWrjNY4tmW7iqkc5WN2XRBXyeVtrMpp4,780
|
|
660
|
+
opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python.py,sha256=mV5394truWSHmNDt2Rbo5OIhe6Ylb5yHSsIceQiJd-w,774
|
|
661
|
+
opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_public.py,sha256=lHcv20j7yX7vU-vfJYUO2xqVVJ5V-1aTQiBaJHadyzY,818
|
|
662
|
+
opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_write.py,sha256=6QBA9g6CRTa0AHJEENW1LV7LC6LEJGItPLAJPpRV0dA,811
|
|
663
|
+
opik/rest_api/types/automation_rule_evaluator_write.py,sha256=37ArplqqSawTQ7Eu1_yGn-S-ukEAXamEQ0Qwxdwj1d4,4465
|
|
642
664
|
opik/rest_api/types/avg_value_stat_public.py,sha256=_XsZneEKZJHtpB3FoLfYpv8GjLgslhR9rMJI8wGEjlg,552
|
|
643
665
|
opik/rest_api/types/batch_delete.py,sha256=sFLwmODktE3trBlhbMRdtKiZR-XO_EX7pOnqhUe55YI,530
|
|
644
666
|
opik/rest_api/types/batch_delete_by_project.py,sha256=ifKpu95L6_o3yK3aMNTpKxMiE0VNtlZO0PG5XbrhHgM,583
|
|
645
667
|
opik/rest_api/types/bi_information.py,sha256=wv07T9cCXS6KtE1xyO7YgTD-mP9EKDD6wOy2jqXaHGc,629
|
|
646
668
|
opik/rest_api/types/bi_information_response.py,sha256=GyIFJJh_BilYdtpXEYybgJwzKY_D7UBzKHPwKVVs3vw,627
|
|
669
|
+
opik/rest_api/types/boolean_feedback_definition.py,sha256=_LvEV2IXNOwbmtMnEHLVJ4CJlN4ewfXX7UMDnpdofPg,860
|
|
670
|
+
opik/rest_api/types/boolean_feedback_definition_create.py,sha256=caHNVoyf-acLJM44pTSM_JBycFypBY70zP5QMLtfaKg,661
|
|
671
|
+
opik/rest_api/types/boolean_feedback_definition_public.py,sha256=OsaO_4SpZXm6FHtBAWkSs_bVVii3bIo0CM5TR-QqgYA,885
|
|
672
|
+
opik/rest_api/types/boolean_feedback_definition_update.py,sha256=lZY9qA3TM3pz2aylPQwPjkXi6Hf96H0xPCnhhyM3cDo,661
|
|
673
|
+
opik/rest_api/types/boolean_feedback_detail.py,sha256=XYcflE-jFSO0N6765-gyWVpokXY9vVOVEEjXMesTqgs,880
|
|
674
|
+
opik/rest_api/types/boolean_feedback_detail_create.py,sha256=syQoAa0oY9lNzVgxB8xOwZSDbnxAjpjZ3IjqS1hrtV4,886
|
|
675
|
+
opik/rest_api/types/boolean_feedback_detail_public.py,sha256=n-GO9kmVrJvjvbAaYW1rEN-K8WVaM6_Q7fxRfG0L1dk,886
|
|
676
|
+
opik/rest_api/types/boolean_feedback_detail_update.py,sha256=g5tkb5hWc6s2CuOopR9ojkL0dLHAWHYpgRTdY_bgYUo,886
|
|
647
677
|
opik/rest_api/types/categorical_feedback_definition.py,sha256=M7Q-TtR4nsxG70F8DZEAUoKQq-1Iyi1-gu6F4L_ENxM,876
|
|
648
678
|
opik/rest_api/types/categorical_feedback_definition_create.py,sha256=imK8S1aT6qP3Zwqtm2Pq6nvbLczTepKNTB4a5F69BiI,677
|
|
649
679
|
opik/rest_api/types/categorical_feedback_definition_public.py,sha256=Lsk52ewxblXu4n9-4OszeOZqmB2KQBPwftmzjIWml98,901
|
|
@@ -677,25 +707,36 @@ opik/rest_api/types/complete_multipart_upload_request.py,sha256=ORbFtak4Uq7PDYZd
|
|
|
677
707
|
opik/rest_api/types/complete_multipart_upload_request_entity_type.py,sha256=Qnx2zJR4XA_AsoGY0jJ3RJ7M2qEL-hMmMnUGsiSqxWo,181
|
|
678
708
|
opik/rest_api/types/completion_tokens_details.py,sha256=7tl34yBEwhBKmOte8gOjPEtmAUU2bo-6fgvsrqzF3m4,566
|
|
679
709
|
opik/rest_api/types/count_value_stat_public.py,sha256=aTw4z69L6aFCrESoi_5LABlvW8Tfzl_h8t1doXpEomo,552
|
|
710
|
+
opik/rest_api/types/dashboard_page_public.py,sha256=aBd8hfjxj39K1T8UWECXF-o-RKE2IMNx8D8oq2cxecE,797
|
|
711
|
+
opik/rest_api/types/dashboard_public.py,sha256=DwKEXWCPIBvrmGeUc9COzIwq9O1TXCrSXs0SlU9ZVco,983
|
|
680
712
|
opik/rest_api/types/data_point_double.py,sha256=9d2QfW5QZOBK5_gu5NZlrmbblT4cNUTKUgXxTyulBD8,593
|
|
681
713
|
opik/rest_api/types/data_point_number_public.py,sha256=JNUbvIerAyc7r2jQcH8zRmMllOTe3YtCxvggFmEpXnE,599
|
|
682
|
-
opik/rest_api/types/dataset.py,sha256=
|
|
714
|
+
opik/rest_api/types/dataset.py,sha256=cE1KSMLNSpyPY8kIiNpcXYyQ60LWDHkUJAGQGgnbk2c,1499
|
|
683
715
|
opik/rest_api/types/dataset_expansion.py,sha256=johA_FHcQNuNe_OyPuRFeqO87CmZSTqT68aFPSgYBdk,1197
|
|
684
716
|
opik/rest_api/types/dataset_expansion_response.py,sha256=z890ceuu8ST6fXPWLc-2ihYM_rRiKcEAUr3imYsOeS8,1096
|
|
685
|
-
opik/rest_api/types/dataset_item.py,sha256=
|
|
717
|
+
opik/rest_api/types/dataset_item.py,sha256=Ml7WUyfAqtanIXgtN5IEL76G_WXQKV4dgr3GGGbSb-E,1239
|
|
686
718
|
opik/rest_api/types/dataset_item_batch.py,sha256=4Dl99c-gZ2JCiJojedPEe7W1WylUL0q1QAIvIbgMJUc,839
|
|
687
|
-
opik/rest_api/types/dataset_item_compare.py,sha256=
|
|
719
|
+
opik/rest_api/types/dataset_item_compare.py,sha256=NrsdV4RjWYFqI8lJ78vNW2Z83hVUMBpO4j0SIzMyYVM,1290
|
|
688
720
|
opik/rest_api/types/dataset_item_compare_source.py,sha256=zQ0ZlxySzgmnC42yYycK30bu6DsTIWHIw6vF5qvy4K4,182
|
|
689
|
-
opik/rest_api/types/
|
|
690
|
-
opik/rest_api/types/
|
|
691
|
-
opik/rest_api/types/
|
|
721
|
+
opik/rest_api/types/dataset_item_filter.py,sha256=S2DJ5iIdJLmjCqh0MWksFxI2e2271kvPHhESSCersWI,757
|
|
722
|
+
opik/rest_api/types/dataset_item_filter_operator.py,sha256=HlylEE1PSngJgrRK3XSNJ8lGW3gt6ayawVdbXQuXRQk,380
|
|
723
|
+
opik/rest_api/types/dataset_item_page_compare.py,sha256=taEzyLs97D40wcj8-kIG6D9dhyPy393v65BVGiu8fVs,1174
|
|
724
|
+
opik/rest_api/types/dataset_item_page_public.py,sha256=NyigpkwB59aFwoyGVgNdPBxQORprQaToX3Bp7QoNMhQ,1167
|
|
725
|
+
opik/rest_api/types/dataset_item_public.py,sha256=Zae_Kzoa08-a2tdf-YqmsWlZBZH8p-1je3oS-EuNhqw,1283
|
|
692
726
|
opik/rest_api/types/dataset_item_public_source.py,sha256=XHwWF8Xe1C8Q1StZ5bMZKRyPcA9MvbFQQhGK4tWDgFM,181
|
|
693
727
|
opik/rest_api/types/dataset_item_source.py,sha256=DGak4s8fn5vPgZysHz2cWPMAxOJeolb8SJ2EwUL7ync,175
|
|
694
|
-
opik/rest_api/types/
|
|
728
|
+
opik/rest_api/types/dataset_item_update.py,sha256=kriek2j4RpMmtGchBzaIauyc_ZpgD1ATQiWr6-o7x3E,1007
|
|
729
|
+
opik/rest_api/types/dataset_item_write.py,sha256=9-9JB8IINvQpbvUrFcGGXHapMMWA5BYQgL4GhiIO8us,827
|
|
695
730
|
opik/rest_api/types/dataset_item_write_source.py,sha256=uukz1qfe4G5TUm-9cIZnuXQYuRcY2ikzEuzkbkvZqmw,180
|
|
696
731
|
opik/rest_api/types/dataset_page_public.py,sha256=8RPozbHkJ33K70UnO7jZ5FksVQqOC6gxBshzw4u1iL0,941
|
|
697
|
-
opik/rest_api/types/dataset_public.py,sha256=
|
|
732
|
+
opik/rest_api/types/dataset_public.py,sha256=DHgX-dEzX8SA9etE7OFCFwTvCIrnIACZDGOQXQ_iFkE,1543
|
|
733
|
+
opik/rest_api/types/dataset_public_status.py,sha256=ESXfOJ58hqK00l8IoNOrnEZRisDIZLKvsuMamvLOX5Q,191
|
|
698
734
|
opik/rest_api/types/dataset_public_visibility.py,sha256=_5ZuoYt_0qCEKBC3TLVw3R-1rM4Q1mleiaAxIqUtGc8,168
|
|
735
|
+
opik/rest_api/types/dataset_status.py,sha256=WF8gs5tlSMz4lGlJaoK2HXjE0_heUkGaYXysoR6REWg,185
|
|
736
|
+
opik/rest_api/types/dataset_version_diff.py,sha256=OyUlhfU8x72gZglaRHl0yiGHt4d6J50asgwsIgVKDpo,729
|
|
737
|
+
opik/rest_api/types/dataset_version_diff_stats.py,sha256=QlCS6okJTxt8AKLZY1khxkjtR5wBQxkBq3t1G40ymGY,1042
|
|
738
|
+
opik/rest_api/types/dataset_version_page_public.py,sha256=ZmpU0P-th-kjnBAIdKMkWnTgR_W5SwgCfbegnN9D_Rc,760
|
|
739
|
+
opik/rest_api/types/dataset_version_public.py,sha256=YjCywLKuT8bUY12qNu0OAlF8qzwKRwZRzqo5Ut7PUa4,1557
|
|
699
740
|
opik/rest_api/types/dataset_visibility.py,sha256=tDy7GBfbbPYsWQc2Xdmeg2TpSIaWZ-spylwrl3y78cU,162
|
|
700
741
|
opik/rest_api/types/delete_attachments_request.py,sha256=GoMwg7LYYbtvO5AS405MIHt-Ot3aQdpvqOOQPX4HOUM,730
|
|
701
742
|
opik/rest_api/types/delete_attachments_request_entity_type.py,sha256=WE8M3BCJ9WjH1z0tMFCHniXV5Q-0dFAQ7i5g7i5QIas,175
|
|
@@ -712,7 +753,7 @@ opik/rest_api/types/error_message.py,sha256=au6X8fMB8SQEgEGuk28OJmT_fw2fKz5J3xt2
|
|
|
712
753
|
opik/rest_api/types/error_message_detail.py,sha256=_kEw-oxN1K-WykRARF0IuApSvrXPCTYnNnqFGqanXSs,631
|
|
713
754
|
opik/rest_api/types/error_message_detailed.py,sha256=cPZqgjB2xc00DNJYVLZGBqxL6dI_rT8B9IxqorKiy4A,566
|
|
714
755
|
opik/rest_api/types/error_message_public.py,sha256=nnzy0fVd7DH4vei14y7z-Khb58KWk0ZjnItcY6inEUE,631
|
|
715
|
-
opik/rest_api/types/experiment.py,sha256=
|
|
756
|
+
opik/rest_api/types/experiment.py,sha256=ubt6fj0HvSN0hRwOsSqYImz0qCrJhcmExHKZ6mGsndY,2066
|
|
716
757
|
opik/rest_api/types/experiment_group_aggregations_response.py,sha256=WZqmHzxyuDwsrwJ64whbQyo2jV6nV4_pdwYADovJvdo,686
|
|
717
758
|
opik/rest_api/types/experiment_group_response.py,sha256=oBbNgrf1QOnw7hOUb4iUabzcjDGudxuMrnBSuCJG4w0,714
|
|
718
759
|
opik/rest_api/types/experiment_item.py,sha256=HZsN1BIiO0sfBwK9xObzk_8NCHUNzBiCt5QRDp6YbUI,1508
|
|
@@ -725,17 +766,20 @@ opik/rest_api/types/experiment_item_public.py,sha256=hepmAMb45AV86wUVzumP2XTVxaV
|
|
|
725
766
|
opik/rest_api/types/experiment_item_public_trace_visibility_mode.py,sha256=y65yiow8iFpM3OpqD4EV2wvdKJdJRCt7UQkhoU5YyaM,184
|
|
726
767
|
opik/rest_api/types/experiment_item_trace_visibility_mode.py,sha256=IlO7A4Gay678ve4vq_id4_DqTBZ58txZXxW31cqmBxU,178
|
|
727
768
|
opik/rest_api/types/experiment_page_public.py,sha256=WsmSJnoCzAohieYcKdRCpdfCI9kNq7TPz3lFdOjS5WI,953
|
|
728
|
-
opik/rest_api/types/experiment_public.py,sha256=
|
|
769
|
+
opik/rest_api/types/experiment_public.py,sha256=cC6RNDNVLXtjgJhuDcq_FGy39vndiOH1Cu77cCUxmt8,2230
|
|
729
770
|
opik/rest_api/types/experiment_public_status.py,sha256=YewK-YmihxIGQaiuvyCYRCwSyDfMLsKqMJ_FHUgKuqk,183
|
|
730
771
|
opik/rest_api/types/experiment_public_type.py,sha256=u8FTczXnrXYnJSXaIJ0rhj_c0lEnOqplWCIL8vn3CrE,178
|
|
772
|
+
opik/rest_api/types/experiment_score.py,sha256=3RqgZKaJb8DzNke8eA6V38tMUFMfNbQr3ld5222uLI8,539
|
|
773
|
+
opik/rest_api/types/experiment_score_public.py,sha256=OEbr_81Z1IIwo5OCCA2VOYZn9A2T3mxeTb_S8WqONu0,545
|
|
774
|
+
opik/rest_api/types/experiment_score_write.py,sha256=IaeexV3jK9i27hQkIr8o4PhNIfu0NpR7rm9sUjx67wM,544
|
|
731
775
|
opik/rest_api/types/experiment_status.py,sha256=4qXZLJHN8CT2vz0L-zt37H7y5LE8r8hAWZVNGK9Ygg0,177
|
|
732
776
|
opik/rest_api/types/experiment_type.py,sha256=nsUqlZKQX3uyonTGJvWGSinFd0xeuQLmTpiDXTZ_Ztg,172
|
|
733
777
|
opik/rest_api/types/export_trace_service_request.py,sha256=wDT1OW4opngSUM9aqZUwMyyGpSdXlIEVcUBp9BeIW-8,135
|
|
734
|
-
opik/rest_api/types/feedback.py,sha256=
|
|
735
|
-
opik/rest_api/types/feedback_create.py,sha256=
|
|
778
|
+
opik/rest_api/types/feedback.py,sha256=yMFpog1cJXzqxVXwO40Wfo9ocNo_6P8O41eQUgMB33I,3498
|
|
779
|
+
opik/rest_api/types/feedback_create.py,sha256=CiaZZh81xmZ2pWNKjiYBpP2v767mffYVEmYL0Y1ODJE,2418
|
|
736
780
|
opik/rest_api/types/feedback_definition_page_public.py,sha256=sVm4gzSdDNj01ixyuGDdwQuX_JvPihxPASoXJ1gIIHA,764
|
|
737
|
-
opik/rest_api/types/feedback_object_public.py,sha256=
|
|
738
|
-
opik/rest_api/types/feedback_public.py,sha256=
|
|
781
|
+
opik/rest_api/types/feedback_object_public.py,sha256=_dMxEiQjmgS7_w07o_hH5MuRpZE1nzxDwqOVZ_USHPc,3645
|
|
782
|
+
opik/rest_api/types/feedback_public.py,sha256=dnGulJOL9pyzcWsmQnyfFUJgdqpX86WOV1Cj6WWqQ30,3597
|
|
739
783
|
opik/rest_api/types/feedback_score.py,sha256=UarR8VD9eZSkRAnue-jI-WBuYYKDATBOLZJAnbEal1s,1045
|
|
740
784
|
opik/rest_api/types/feedback_score_average.py,sha256=ys1S9NKYqnzhqVKGnIW4e-r1jQdHr0MhrmQOpsdrWXI,544
|
|
741
785
|
opik/rest_api/types/feedback_score_average_detailed.py,sha256=h6S9-N_ODGiiQPGFwkjCmbRNgeVjohyfZCndiO0veIk,552
|
|
@@ -750,10 +794,10 @@ opik/rest_api/types/feedback_score_compare_source.py,sha256=QWO1YlGH8fl6bAP2-y7E
|
|
|
750
794
|
opik/rest_api/types/feedback_score_experiment_item_bulk_write_view.py,sha256=k13A9cZUxgu3eJmhk7cMYU9pV5OwBEYjzSA4Qb-hYvU,1244
|
|
751
795
|
opik/rest_api/types/feedback_score_experiment_item_bulk_write_view_source.py,sha256=Qf9i90ti7X9OwZhH_gs-oDQk3GGRJzDJo8H9gScSC7M,201
|
|
752
796
|
opik/rest_api/types/feedback_score_names.py,sha256=r3XCMGx6gIkm7g2jW4-7isAWCxXv540ye1ppRvjymeA,604
|
|
753
|
-
opik/rest_api/types/feedback_score_public.py,sha256=
|
|
797
|
+
opik/rest_api/types/feedback_score_public.py,sha256=eYBq3znkiYP07XwAR9YsNkmlNTt1WO6vC72PiHTzqHw,1190
|
|
754
798
|
opik/rest_api/types/feedback_score_public_source.py,sha256=K6-hVxlrUFhyzsK-YsJsWAU1K8r_Pet2y5b7ptnlHMw,180
|
|
755
799
|
opik/rest_api/types/feedback_score_source.py,sha256=Jpi71oFKmqXRd-BXh-WcU9ombcKp1qaK243ZUCoMhEk,174
|
|
756
|
-
opik/rest_api/types/feedback_update.py,sha256=
|
|
800
|
+
opik/rest_api/types/feedback_update.py,sha256=Tm1DQLkjiesy-wfPO7ByUJtfQseJCwREawKLdxHkozo,2418
|
|
757
801
|
opik/rest_api/types/function.py,sha256=iKajPtFb5aIjwDs1AaHBHXwyKX8pMVBpww-KO3TeEJk,729
|
|
758
802
|
opik/rest_api/types/function_call.py,sha256=kHQKXzoGq8TNLY8EBsRLkZY8ukmWrS9-H6Ql73ZzjYs,586
|
|
759
803
|
opik/rest_api/types/group_content.py,sha256=S7PdBMFG2YPSZb1VurCiS4MCcZh8VJSbWv8NdaFtHoM,544
|
|
@@ -770,6 +814,9 @@ opik/rest_api/types/guardrail_write_result.py,sha256=kJCMWOOWdNNkEU9Ih1i0-4ju7Pz
|
|
|
770
814
|
opik/rest_api/types/guardrails_validation.py,sha256=PWp60D-lMvIQiN8LVNYo7xvpmSCp4AiH-XZN9CBQVxI,634
|
|
771
815
|
opik/rest_api/types/guardrails_validation_public.py,sha256=1iN6r-gzaUs7W-_wqSfPaQ_8b9yFESGJeMH6ocpixSs,659
|
|
772
816
|
opik/rest_api/types/ids_holder.py,sha256=4TRWIAWkrHkQBeC8PUFefLYPtOUILQw3JY8dq9qPSWw,528
|
|
817
|
+
opik/rest_api/types/image_url.py,sha256=qWSOHhSmc2nF59R5uLxA3QpE7dFWj0yNjVVCTcMcH0E,554
|
|
818
|
+
opik/rest_api/types/image_url_public.py,sha256=4lVBmwXqW5ex4q79N7mr5rHHe3nKEtLtkywq22dJSZk,560
|
|
819
|
+
opik/rest_api/types/image_url_write.py,sha256=K-2ds2V4bmjQjfI5Oq_7CviGe28SQ7ldaY0qDIiW_Yc,559
|
|
773
820
|
opik/rest_api/types/json_list_string.py,sha256=at5dHhUELnKf-ogKqfv1faUav2wOZf0dle5Z7Rs5iTE,228
|
|
774
821
|
opik/rest_api/types/json_list_string_compare.py,sha256=gHOkLowvBAhSrPtNghzYtrVgqFZ_9poM1qMh5VJXAzE,235
|
|
775
822
|
opik/rest_api/types/json_list_string_experiment_item_bulk_write_view.py,sha256=Qf_P5bC-5PFZPdoOjPSXSLQuyD5qzTfg16R6rxAFYCE,255
|
|
@@ -783,15 +830,18 @@ opik/rest_api/types/json_schema.py,sha256=fx4k3a3soFVj2q4SkELCX6METRnnFy_w8ulsHb
|
|
|
783
830
|
opik/rest_api/types/llm_as_judge_code.py,sha256=ENDDnl2fDq47n-71nTFY2gIrTxpBO2Bnc_iBBC6DPx0,991
|
|
784
831
|
opik/rest_api/types/llm_as_judge_code_public.py,sha256=WFw2RgEdeD4ZqWGcxVD3JEebzYmm-nfZbE5MVw2v6L8,1054
|
|
785
832
|
opik/rest_api/types/llm_as_judge_code_write.py,sha256=C-rnicAnkW9QkwryA3rDJjmmx9OjGtk2zLv5S17Rkt8,1044
|
|
786
|
-
opik/rest_api/types/llm_as_judge_message.py,sha256=
|
|
787
|
-
opik/rest_api/types/
|
|
833
|
+
opik/rest_api/types/llm_as_judge_message.py,sha256=nukSKWSOkk4YUHtwSpjYSYkIRFiBRraGonLCpO7j1tk,894
|
|
834
|
+
opik/rest_api/types/llm_as_judge_message_content.py,sha256=oTV20_NTD9RKhWuMYJK9d9jf-ny8QnrXfAbuRP0U7NU,729
|
|
835
|
+
opik/rest_api/types/llm_as_judge_message_content_public.py,sha256=C9HJ_zGqePWO51OnhnRMwiKa57ZWPsVdAaGedaIGU8Y,773
|
|
836
|
+
opik/rest_api/types/llm_as_judge_message_content_write.py,sha256=27fRs544vrVsSXR6HNIlD8-Nx4Qi1InMjbDphamKZkw,766
|
|
837
|
+
opik/rest_api/types/llm_as_judge_message_public.py,sha256=y6rrBq1uyIcyUBjpRbU8GltPk8FiuAGx3Wqvku2AYQY,938
|
|
788
838
|
opik/rest_api/types/llm_as_judge_message_public_role.py,sha256=58kwfZkxKSv7Dttkyte9-ywqiJUq-kyq7--TRYbttFo,216
|
|
789
839
|
opik/rest_api/types/llm_as_judge_message_role.py,sha256=BsyFKrlT_CvCw2XrQhu0cair6KwLbv3Xr_49SJLApis,210
|
|
790
|
-
opik/rest_api/types/llm_as_judge_message_write.py,sha256=
|
|
840
|
+
opik/rest_api/types/llm_as_judge_message_write.py,sha256=CFdWi-MJx-J5BOCul1jZN3YallsfBWhKWKOnReXNPOo,931
|
|
791
841
|
opik/rest_api/types/llm_as_judge_message_write_role.py,sha256=VizzRiseDu4QRf3YwxRvTdvGesc7XbtJeOuNhcxXlMM,215
|
|
792
|
-
opik/rest_api/types/llm_as_judge_model_parameters.py,sha256=
|
|
793
|
-
opik/rest_api/types/llm_as_judge_model_parameters_public.py,sha256=
|
|
794
|
-
opik/rest_api/types/llm_as_judge_model_parameters_write.py,sha256=
|
|
842
|
+
opik/rest_api/types/llm_as_judge_model_parameters.py,sha256=9rBWteIrAED7WEAmzElf_MSVFVSaatDJUPr-STPUnIc,681
|
|
843
|
+
opik/rest_api/types/llm_as_judge_model_parameters_public.py,sha256=TlJB7CgKqRgKQoYHn05YumNFzBK5AjZFB6BT7IiQViM,706
|
|
844
|
+
opik/rest_api/types/llm_as_judge_model_parameters_write.py,sha256=kEbmromxUMbNOWshNXS6matBbWRMa8-0dvsUApSslAk,702
|
|
795
845
|
opik/rest_api/types/llm_as_judge_output_schema.py,sha256=bZlyZ9roLUGkXpg1bQ_1i2Uifj2M8O5k01jkvEIg0Es,659
|
|
796
846
|
opik/rest_api/types/llm_as_judge_output_schema_public.py,sha256=z7eIJhnJMOelr2oKuCAetNHZzD4t5vuwRW3spu5RDXY,684
|
|
797
847
|
opik/rest_api/types/llm_as_judge_output_schema_public_type.py,sha256=5B9pn00myGdn1JSj2CUEtNVN3OHPikNnf5XWNddxMyI,188
|
|
@@ -814,13 +864,17 @@ opik/rest_api/types/numerical_feedback_detail.py,sha256=ztBjFv6LKQk7T-4SYIK40DPA
|
|
|
814
864
|
opik/rest_api/types/numerical_feedback_detail_create.py,sha256=wgzX5RYNZRcRA4nlzZGKOPZ2ErEjd2hUYeWADsflAu4,552
|
|
815
865
|
opik/rest_api/types/numerical_feedback_detail_public.py,sha256=OkNnQtvgr5sDb6GXphsjVwqx7f6bSvv4BGu9zk27fBI,552
|
|
816
866
|
opik/rest_api/types/numerical_feedback_detail_update.py,sha256=sPt7Sy1xhPTks6OLSXUNaCKd1QVxUDBfT8wthrtCQ4E,552
|
|
817
|
-
opik/rest_api/types/optimization.py,sha256=
|
|
867
|
+
opik/rest_api/types/optimization.py,sha256=2DZThBwTtJfKVgrsgy9O2e_H20zLN32hs7GoGXyN4Bc,1387
|
|
818
868
|
opik/rest_api/types/optimization_page_public.py,sha256=lYO1tIhZlclPdP1f7h6Dyws0vQjBgRoGihF8CAFluhY,961
|
|
819
|
-
opik/rest_api/types/optimization_public.py,sha256=
|
|
820
|
-
opik/rest_api/types/optimization_public_status.py,sha256=
|
|
821
|
-
opik/rest_api/types/optimization_status.py,sha256=
|
|
822
|
-
opik/rest_api/types/
|
|
823
|
-
opik/rest_api/types/
|
|
869
|
+
opik/rest_api/types/optimization_public.py,sha256=YPm-LVzM2lhSypXjYu-3bez7_hcTvQJHWXIUYXeiyjI,1469
|
|
870
|
+
opik/rest_api/types/optimization_public_status.py,sha256=LdB33kp54d6x9v7wPK8zbJIz_JUwZlqYNoal5NbIVrc,215
|
|
871
|
+
opik/rest_api/types/optimization_status.py,sha256=rk_ThbIGN8ltekw6xP-ks9XEY3O9mxxi7wN7DoWSyYA,209
|
|
872
|
+
opik/rest_api/types/optimization_studio_config.py,sha256=gxWPTWigjyo1j7nbATX2eloJCPXQH8J1fqL-7VwxIUw,837
|
|
873
|
+
opik/rest_api/types/optimization_studio_config_public.py,sha256=tlD9RvgNNd1Y69W_gFS_-WeuWjhGKaDJ7RjvKP-0JsY,919
|
|
874
|
+
opik/rest_api/types/optimization_studio_config_write.py,sha256=hscQJAUBU0u6B4kHujKj3Ea3FvrXacXSCcicQs8Qns0,906
|
|
875
|
+
opik/rest_api/types/optimization_studio_log.py,sha256=igDziXRq3phOZxDdHe1QIkQvCvv2KzR-SAccEedNkXM,680
|
|
876
|
+
opik/rest_api/types/optimization_write.py,sha256=0nE90mslVDAeSS_ksbv7iF896WoJsiEVoKFKpDt6w3U,1071
|
|
877
|
+
opik/rest_api/types/optimization_write_status.py,sha256=vfmBh89CbdFWQkYNGrPYTv5RbymLYEzZu1niNQ-o75Y,214
|
|
824
878
|
opik/rest_api/types/page_columns.py,sha256=ven005ba1wGOUVhnxclDEOSMfRS33E3PMdCsjpnpW2A,588
|
|
825
879
|
opik/rest_api/types/percentage_value_stat_public.py,sha256=7bVc2rNv_2jdvNMdm7sGkr4F3qzUp0_QRcl1Zra_3g8,637
|
|
826
880
|
opik/rest_api/types/percentage_values.py,sha256=e66C1GqLMKiQgsiDSkjfGIHJoaKo6UXFnHptzCkLb2M,872
|
|
@@ -840,21 +894,27 @@ opik/rest_api/types/project_stats_public.py,sha256=U3UpsnG-qOfB2ecoeiy0S72ayclyc
|
|
|
840
894
|
opik/rest_api/types/project_stats_summary.py,sha256=IiHf3NrUx_ntLO7vXk1u4LOT5GSjBD2kHTACF13XlkI,650
|
|
841
895
|
opik/rest_api/types/project_stats_summary_item.py,sha256=9S2iJZhMhjldKXD4gqLNKwWfNgKdXXqloIJMCcS8sGo,1205
|
|
842
896
|
opik/rest_api/types/project_visibility.py,sha256=fHZYjDR2YaL_wiAy4PDYjL9UZCnKOCFsqK_O9jUp8kc,162
|
|
843
|
-
opik/rest_api/types/prompt.py,sha256=
|
|
844
|
-
opik/rest_api/types/prompt_detail.py,sha256=
|
|
897
|
+
opik/rest_api/types/prompt.py,sha256=x82JmFqfxT5rJ4EITZ6rQGpteAFj1tJ5OmYtNHxk-O8,1519
|
|
898
|
+
opik/rest_api/types/prompt_detail.py,sha256=QWJ5r5N26ht9ZQsPcYP78qsmeSYY2Rk-QbalwqQrVLk,1309
|
|
899
|
+
opik/rest_api/types/prompt_detail_template_structure.py,sha256=nfE6aYCJm_wVQWFgcmV2a8JXxiIPYrBDt7gZDGnssPM,169
|
|
845
900
|
opik/rest_api/types/prompt_page_public.py,sha256=YB3Z9wEDLqaX685tQcJqWZaRJhjMJ-MVOBGyxeOmBjU,937
|
|
846
|
-
opik/rest_api/types/prompt_public.py,sha256=
|
|
901
|
+
opik/rest_api/types/prompt_public.py,sha256=H6B6-nPqJF4p2z8AnEgHpb6VqSsvVytd4Xpal484MvQ,1190
|
|
902
|
+
opik/rest_api/types/prompt_public_template_structure.py,sha256=-WSaLorTUoJZOSKrZR1u0HpY4bgh2hsQXiSOpmPkybM,169
|
|
903
|
+
opik/rest_api/types/prompt_template_structure.py,sha256=fvdh-4_pM8PfdCjT5PILl85OWDiP6KWlLhfasPy9OEg,163
|
|
847
904
|
opik/rest_api/types/prompt_tokens_details.py,sha256=aSaVm1DtyUUnE5ReUIWa8ehWKnN7uOD-8g0xb5VrXdU,559
|
|
848
905
|
opik/rest_api/types/prompt_type.py,sha256=W04Awz_ONrrehPoJLQSgJpXlNy3h_u3IIj-72ePCWh8,156
|
|
849
|
-
opik/rest_api/types/prompt_version.py,sha256=
|
|
850
|
-
opik/rest_api/types/prompt_version_detail.py,sha256=
|
|
906
|
+
opik/rest_api/types/prompt_version.py,sha256=JcdnQ80GQkJi1kwKP27jxK_t7hdXl4xiOovt3NVLrW8,1428
|
|
907
|
+
opik/rest_api/types/prompt_version_detail.py,sha256=x_rfJuGeDkUdUPwFfsxq5ijoRcvql3JRYMDag5Go_RM,1491
|
|
908
|
+
opik/rest_api/types/prompt_version_detail_template_structure.py,sha256=Hre-rz4eNYUGlclSIChjXu9itPz2hmx5oo_I9E5Sqpk,176
|
|
851
909
|
opik/rest_api/types/prompt_version_detail_type.py,sha256=roFsS6l5ez5cFtLtKsUfMCV-kmaQJWWMvyCvrWD7OP0,169
|
|
852
910
|
opik/rest_api/types/prompt_version_link.py,sha256=PW9tA9foz9uAlLFerw-xtIWPnaEOBCN9p8L4KUtJVhc,650
|
|
853
911
|
opik/rest_api/types/prompt_version_link_public.py,sha256=8vT-_zPsc3cdc-zwzMXrY6YF4qiM1_o9-F4xqHdI6nQ,656
|
|
854
912
|
opik/rest_api/types/prompt_version_link_write.py,sha256=naajdsinLCAqcYK9yYIFUFDnD6yq_e1q45zyKUt2DqY,527
|
|
855
913
|
opik/rest_api/types/prompt_version_page_public.py,sha256=BrpX2EI9HKgtOHnIKQBTskGk-l0SWHF_TFlpgnGEks4,756
|
|
856
|
-
opik/rest_api/types/prompt_version_public.py,sha256=
|
|
914
|
+
opik/rest_api/types/prompt_version_public.py,sha256=BO3pHCFhAtX266Ng6eyK6tkBHw2XRYKd91-oiFWMMkQ,1435
|
|
915
|
+
opik/rest_api/types/prompt_version_public_template_structure.py,sha256=a26UNDDLqL2h4alkqmlibEI_HwkS0--IqRVmqL_Ux7s,176
|
|
857
916
|
opik/rest_api/types/prompt_version_public_type.py,sha256=Ehj7e1kAdutXqMjhM8Pros8ype1ZhMcPPcnklacuA54,169
|
|
917
|
+
opik/rest_api/types/prompt_version_template_structure.py,sha256=HDUW24wF8IVXjBiKHa7EleSJxuZv7_5h6lwjbfEDIrs,170
|
|
858
918
|
opik/rest_api/types/prompt_version_type.py,sha256=biU9zF1I8qzY57CpXgHiBytiFut_vsGxOVI6NfLI8Cg,163
|
|
859
919
|
opik/rest_api/types/provider_api_key.py,sha256=_fOjp1fuMYRxVesdqfd9aKF-iRbY_dTkkynlHdtOBwA,1490
|
|
860
920
|
opik/rest_api/types/provider_api_key_page_public.py,sha256=hePdTZsPSubnkYvb-IYF4rvck6YLMKaGD6zEhAq2j_4,933
|
|
@@ -865,26 +925,54 @@ opik/rest_api/types/response_format.py,sha256=dAd6OB-v-OFwW6xflvQSRLYItichT7vkkR
|
|
|
865
925
|
opik/rest_api/types/response_format_type.py,sha256=iO-mwElwEw3fZRHI9FZxoNvOFEZNwft3cZkswncKrNo,180
|
|
866
926
|
opik/rest_api/types/result.py,sha256=yFJsKaECrqryRjG9mpWH618gRPBKkOIV9GBMeOY5Jks,624
|
|
867
927
|
opik/rest_api/types/results_number_public.py,sha256=UaDPg43u3h07RyucJuC-TDXzf8X9iNX6onbwGHepnuo,679
|
|
868
|
-
opik/rest_api/types/score_name.py,sha256=
|
|
869
|
-
opik/rest_api/types/service_toggles_config.py,sha256=
|
|
928
|
+
opik/rest_api/types/score_name.py,sha256=ZMpOwWYSBw_dBCe8gHduUX8Wnv7H3QS9FTYm27cXAuk,578
|
|
929
|
+
opik/rest_api/types/service_toggles_config.py,sha256=g4A3WR_IXSrxp-6TdOX82wn9tWxPoENa0cAS-3hVLCM,1871
|
|
870
930
|
opik/rest_api/types/span.py,sha256=m_rJFdNOGXEsoNLYDRm5KzJsCgDrHlGxb675_5SK_aU,2172
|
|
871
931
|
opik/rest_api/types/span_batch.py,sha256=AcvTfaxa_xyGZn57GvYAq0jwQNqSdsEYJSAqCm1NjkE,554
|
|
932
|
+
opik/rest_api/types/span_enrichment_options.py,sha256=GRMdZWKD8fQ25SY4PBbQjESkEUVOywd7DTi0Monlpdw,1252
|
|
872
933
|
opik/rest_api/types/span_experiment_item_bulk_write_view.py,sha256=6Z7UX0rK6O-cl_qGrBRDpB_UREFTTl4BQuzkmWJR32c,1780
|
|
873
934
|
opik/rest_api/types/span_experiment_item_bulk_write_view_type.py,sha256=-R8aklFZiIIb-6_s37YCXFHzIcM-WxnwE_0l_FMyAcM,198
|
|
935
|
+
opik/rest_api/types/span_filter.py,sha256=pG_hkL8mrbPCFphTFYojQAYJuKO8Yqp-ItoUIvtJ3Co,728
|
|
936
|
+
opik/rest_api/types/span_filter_operator.py,sha256=Erlq0VduevYZhelTmatYAD2bGegJeWglp2iwRpG468w,373
|
|
874
937
|
opik/rest_api/types/span_filter_public.py,sha256=5o19zLy4YUsEu8Jr-2AoaHXvrBgl6wFQw0EdadPeGWo,753
|
|
875
938
|
opik/rest_api/types/span_filter_public_operator.py,sha256=QRuiY1sCYBIVs_kXK0m-38Fk8HZYblQBCg0nT8G4-k0,379
|
|
939
|
+
opik/rest_api/types/span_filter_write.py,sha256=Gsle36vvEvW6nVp3cQLrmKVZrKokRNynO78u8i3iVs4,749
|
|
940
|
+
opik/rest_api/types/span_filter_write_operator.py,sha256=JOFiq-YaSR0UECz41KhBCSw6gWURottQm5NqjiP6IsE,378
|
|
941
|
+
opik/rest_api/types/span_llm_as_judge_code.py,sha256=yS9KBg7DxOOFrWCJQTtE2N0zXQpzIGhbprHXU0GfeO0,995
|
|
942
|
+
opik/rest_api/types/span_llm_as_judge_code_public.py,sha256=OlzEdIvnBA4r4gw8oVWdtXOU_0j1YoVA3RK1OcU8zBE,1058
|
|
943
|
+
opik/rest_api/types/span_llm_as_judge_code_write.py,sha256=6CVX0S6B-Y8EFHM4VjFV2TInOGc90b71bxr3pdY7OLY,1048
|
|
876
944
|
opik/rest_api/types/span_page_public.py,sha256=OIUQUlNPAWVaF3ZLu8dx3UaULyDZYWK9gyxzcv1TMKE,929
|
|
877
945
|
opik/rest_api/types/span_public.py,sha256=UcFGJFWPpMNDb5-SPZOkYzfS2KVu8TOd9PWBECcOPNA,2285
|
|
878
946
|
opik/rest_api/types/span_public_type.py,sha256=Q5j-P2eVB3D3kPGeIW4B6LpVSW3_24xKM6Jem4Iu-M8,177
|
|
879
947
|
opik/rest_api/types/span_type.py,sha256=QUu_LXrqILyVnSA6xOgBhC1yoOXqlYVrlutxChCERWM,171
|
|
948
|
+
opik/rest_api/types/span_update.py,sha256=y-gPG3aMEykuK4dhkf-E6u9OfoE7Jbfv5dPQ_1mGFtI,1613
|
|
949
|
+
opik/rest_api/types/span_update_type.py,sha256=dgmKxvLPQRkcFkxr4zLMAd3-yUgYr1SrUNKfEnmovzc,177
|
|
880
950
|
opik/rest_api/types/span_write.py,sha256=qTisjjHzFRgsA7v6NY9FmQbWy6T1ZQl4Ve0FKUpxOZ8,1674
|
|
881
951
|
opik/rest_api/types/span_write_type.py,sha256=kEr_Exe9L8oLBJ14e2vhfTk5TRJ1jRIVFljnqmDFBS0,176
|
|
882
952
|
opik/rest_api/types/spans_count_response.py,sha256=J_O_FwWFHvIyFDvTL3RePZe7IR5p_cg23L4hxzFeSoA,651
|
|
883
953
|
opik/rest_api/types/start_multipart_upload_response.py,sha256=1YNX0R5hRfh-bAlt-2_N3c7JJwLi4v-yOx0u8BnlsK0,576
|
|
884
954
|
opik/rest_api/types/stream_options.py,sha256=V31ZwpiFz7ZliEv_-8_GqplQIQE-GnplAZsU9sHLbog,554
|
|
955
|
+
opik/rest_api/types/studio_evaluation.py,sha256=pLCERA98IMsIrrwzbr8F9fTgy7eVl-i7XEVK0q594Kw,588
|
|
956
|
+
opik/rest_api/types/studio_evaluation_public.py,sha256=iEbYPoO7EXIgRwxhGqMSKjNQefCHwDfmbQ2ivtIgB9M,613
|
|
957
|
+
opik/rest_api/types/studio_evaluation_write.py,sha256=qsLjczGXuH6iX4q4tmLbipkKeum7kITkR5T8VqrgbmU,609
|
|
958
|
+
opik/rest_api/types/studio_llm_model.py,sha256=mR1wf2MNdwIj1jvKomSvVRYGDBnQmLyVBoXFQ5OCZ0g,603
|
|
959
|
+
opik/rest_api/types/studio_llm_model_public.py,sha256=5XzEoLGsFXkwG1DKhZhAlYjt6X6G31aLJZSGdFHHEg8,628
|
|
960
|
+
opik/rest_api/types/studio_llm_model_write.py,sha256=V5GJIB2dCx7MxZLvTTWukubYsfvLcJBEEhpWqwkkXOk,624
|
|
961
|
+
opik/rest_api/types/studio_message.py,sha256=wbXwxR_hkJAcXQbAHwcYYzMkfasKFc5GWMtlOJrajJg,537
|
|
962
|
+
opik/rest_api/types/studio_message_public.py,sha256=J30fKVQPcMDF9NzlHEwNZlFKfpUdkHkyw3ednvGRvDM,543
|
|
963
|
+
opik/rest_api/types/studio_message_write.py,sha256=eS7KDho82TY5hhfFASq7ADcDyGHklnBSpPf_v-MQkOs,542
|
|
964
|
+
opik/rest_api/types/studio_metric.py,sha256=ZMReZcBV2Ug802cqrDwcpo9YBknl_0WDTUFDtQcCuzY,600
|
|
965
|
+
opik/rest_api/types/studio_metric_public.py,sha256=vorg8EiB2aR_W_jaAbHZsEzsAzXVerbzISPqT1r0PIU,625
|
|
966
|
+
opik/rest_api/types/studio_metric_write.py,sha256=BJw-_HU6OB0lzu0URa2boJgtXEzyhFJB9H5glTmPx6k,621
|
|
967
|
+
opik/rest_api/types/studio_optimizer.py,sha256=EVZzsOifJNFGYuMtl45axc6Te72nTKjvnb1QL_LqgAI,603
|
|
968
|
+
opik/rest_api/types/studio_optimizer_public.py,sha256=A4cNnuV8vldg0k5nINu4IWQc8aXZt3M3IjRHaat-G-o,628
|
|
969
|
+
opik/rest_api/types/studio_optimizer_write.py,sha256=4TVSsa6xYEKgn8wXbHr6tTBCjHMO_BUriNtZQUMlo3A,624
|
|
970
|
+
opik/rest_api/types/studio_prompt.py,sha256=_zK_AYXXWLgwotYrAKrPE9uMpyDonNPWxmYmIVxx73Q,588
|
|
971
|
+
opik/rest_api/types/studio_prompt_public.py,sha256=NgMgr6R_ou-0P8J9iKPw2-syyhaDxCpd1c3OzVXTN3s,613
|
|
972
|
+
opik/rest_api/types/studio_prompt_write.py,sha256=MJF1yTDWLvlGZ5RgasoTQBdM3O0P-_sNWg1fBLKds-I,609
|
|
885
973
|
opik/rest_api/types/tool.py,sha256=wCJlwIHUOgqxTYc3Mqd6obmXpVu57JqdNFhdNAmEKWw,636
|
|
886
974
|
opik/rest_api/types/tool_call.py,sha256=LlJI7c3nEjuJGvjXnLufxhoAzLw-AURqORdUeVKiPxY,728
|
|
887
|
-
opik/rest_api/types/trace.py,sha256=
|
|
975
|
+
opik/rest_api/types/trace.py,sha256=KeYXujJK5K0LeNGF-yN9RO-ioMohskGRCvoGEVcYNb8,2696
|
|
888
976
|
opik/rest_api/types/trace_batch.py,sha256=EEk3vpZEgSPLCu6dOimNlMeI3bN4zrA7rcxMqW9I7JA,559
|
|
889
977
|
opik/rest_api/types/trace_count_response.py,sha256=JU6R90YojTCQgZB_7hj0e0pqmhdosGKo6tHUKmgqus8,652
|
|
890
978
|
opik/rest_api/types/trace_enrichment_options.py,sha256=i5toDIuazU3Ygt4RmVjnS6DHlAC7McZIwsrEm8404iA,1368
|
|
@@ -896,36 +984,43 @@ opik/rest_api/types/trace_filter_public_operator.py,sha256=8g-uVcK7gZifqB5a5WKM_
|
|
|
896
984
|
opik/rest_api/types/trace_filter_write.py,sha256=sCp2jdkJbMJ7616Dy6ZI4OSCYW2-aySuRsnG2hy9ook,753
|
|
897
985
|
opik/rest_api/types/trace_filter_write_operator.py,sha256=gc8WNi4OkicualVI2LF7PQmZ6vMKXBY5pd-NHAGSnOc,379
|
|
898
986
|
opik/rest_api/types/trace_page_public.py,sha256=UbMhxCLLkPC8VtqDhPntivH8ClGQ_SkE29fFL4Z4Vrk,933
|
|
899
|
-
opik/rest_api/types/trace_public.py,sha256=
|
|
987
|
+
opik/rest_api/types/trace_public.py,sha256=_b3mEQFPgAuHuLecTU5Yoh1qILGbUd3xOKINlSX7I3o,2706
|
|
900
988
|
opik/rest_api/types/trace_public_visibility_mode.py,sha256=7RK1HK5El725ENaXbPcnSbICW-vEVlrLDD-PkbiQ3-Y,170
|
|
901
989
|
opik/rest_api/types/trace_thread.py,sha256=hBZfKMKJ3NtnAIjs_ouJNMcnRj16a9Ng0coa0glFXjc,1686
|
|
902
990
|
opik/rest_api/types/trace_thread_filter.py,sha256=UPgeonDevXy5dT7CPTYDy8nICIwNx8DBsC67O4c03G4,757
|
|
903
991
|
opik/rest_api/types/trace_thread_filter_operator.py,sha256=fboquBB9WkyYl1Uqlfz69v2Yo6_kxb2QT_RLQAb1rsI,380
|
|
904
992
|
opik/rest_api/types/trace_thread_filter_public.py,sha256=wKJXXbRvvqkIQIKAkPKdn_WaeTATgaKn0Y0UbE5KjZY,782
|
|
905
993
|
opik/rest_api/types/trace_thread_filter_public_operator.py,sha256=BuxEDOEJK_lJ0wnThQsPUWxRtaZhrhC0dJ3ERMrcHr4,386
|
|
994
|
+
opik/rest_api/types/trace_thread_filter_write.py,sha256=oLZlTy9tjGWDL_1q3VKJ7i_5ryD3DQ2ESv29CA2U_ew,778
|
|
995
|
+
opik/rest_api/types/trace_thread_filter_write_operator.py,sha256=SsnMoyAllTMAR9ZQb_0AtLBdWQDT0cf6eR2Fus9VouM,385
|
|
906
996
|
opik/rest_api/types/trace_thread_identifier.py,sha256=6Mj4qlS9jkwwXiJq4xjh-9tuTLk1msllewgjnqipg4Y,666
|
|
907
997
|
opik/rest_api/types/trace_thread_llm_as_judge_code.py,sha256=jWcUu7FoKg6oou0OFIMppgg0jiKseSehOjICuVFnjGo,965
|
|
908
998
|
opik/rest_api/types/trace_thread_llm_as_judge_code_public.py,sha256=IibmWqxfvAJMopnTeOBqr1dgjEILMEbFcHvq6Zx8bok,1028
|
|
909
999
|
opik/rest_api/types/trace_thread_llm_as_judge_code_write.py,sha256=8Paoqjw_OtztByyBs7LdwSB7lBPIW-hGbYm80wbWDy0,1018
|
|
910
1000
|
opik/rest_api/types/trace_thread_page.py,sha256=QMoJmgb4TmF5AcCvf0uNAfuPZKo2ewFtaDtCjdV5tzQ,933
|
|
911
1001
|
opik/rest_api/types/trace_thread_status.py,sha256=ohg0LKmSpv0NSbdxrf25xocQ0FvwlIWpvWSsJZbe76g,163
|
|
1002
|
+
opik/rest_api/types/trace_thread_update.py,sha256=zwYeVkGwofrMmyKBUiHhb9Oz8HajcF9otxyHTmQ8wG4,561
|
|
912
1003
|
opik/rest_api/types/trace_thread_user_defined_metric_python_code.py,sha256=Y3mYhxj1D0XUX0oHjaMw2WrJaK-SeqtIJMUa6j6M9nk,547
|
|
913
1004
|
opik/rest_api/types/trace_thread_user_defined_metric_python_code_public.py,sha256=pJkGQblVhGcXTeEMlY23JLbAhEQPmFM4_GWxHFLaF4M,553
|
|
914
1005
|
opik/rest_api/types/trace_thread_user_defined_metric_python_code_write.py,sha256=DKivUgd3vw-vtXbrUiLWPdnhTsJ81oGXiFiGG1UVJpc,552
|
|
1006
|
+
opik/rest_api/types/trace_update.py,sha256=Mn9-WWmL8510kfVpJTrD5YnsaaqRcp4_wQh8iXzFHVY,1303
|
|
915
1007
|
opik/rest_api/types/trace_visibility_mode.py,sha256=uQpiAsSaSiOMpkkE9b7EjQ6qMGMT8hpRWcNVsTPXtEA,164
|
|
916
1008
|
opik/rest_api/types/trace_write.py,sha256=crSd96EDYVF106JAnjvtF4qswKIBLBrH_SPOkbJMep0,1281
|
|
917
1009
|
opik/rest_api/types/usage.py,sha256=0jMLPiOAmjxduduQIrMcE7la_b9M0_6uugt7EEt3eWA,910
|
|
918
1010
|
opik/rest_api/types/user_defined_metric_python_code.py,sha256=b21-JnooaEMXvU9uI2CEip13-7yTiiZKyNO-l6DNU84,573
|
|
919
1011
|
opik/rest_api/types/user_defined_metric_python_code_public.py,sha256=9Y_xaUEBMSXEs8EAo1L2zDn_giWp3fna3fG80iiZWKA,579
|
|
920
1012
|
opik/rest_api/types/user_defined_metric_python_code_write.py,sha256=9qrEBMfRHzg702QoTZSgC5cTR_ntml2003tYgoo3wIQ,578
|
|
921
|
-
opik/rest_api/types/value_entry.py,sha256=
|
|
922
|
-
opik/rest_api/types/value_entry_compare.py,sha256=
|
|
1013
|
+
opik/rest_api/types/value_entry.py,sha256=eYroq2PsXQEA2n0Jgjss5cLW8TsaF5M2Bzp3C5Z_8rE,896
|
|
1014
|
+
opik/rest_api/types/value_entry_compare.py,sha256=K87Yt9jsFQD-NLRqgAGVaNe4P0zU102aFiVHydOJufU,925
|
|
923
1015
|
opik/rest_api/types/value_entry_compare_source.py,sha256=Ve-ArLNcZMqBNKcoTdEvo_cJfHKn7exJ_5WlhECbZx4,178
|
|
924
|
-
opik/rest_api/types/value_entry_experiment_item_bulk_write_view.py,sha256=
|
|
1016
|
+
opik/rest_api/types/value_entry_experiment_item_bulk_write_view.py,sha256=zLQQYomXKoL9R-LfDM4dX-0VVk_NS1zBwrk_Ym2CgGo,1009
|
|
925
1017
|
opik/rest_api/types/value_entry_experiment_item_bulk_write_view_source.py,sha256=b1AD8ivgFk6m_VWrSpSMK3UpsYtP_-7xrQCQBD3V0aY,198
|
|
926
|
-
opik/rest_api/types/value_entry_public.py,sha256=
|
|
1018
|
+
opik/rest_api/types/value_entry_public.py,sha256=POJ34ANJjOog7osnustG5g5Z1R5jA7rIHNBMhxEu5t8,921
|
|
927
1019
|
opik/rest_api/types/value_entry_public_source.py,sha256=JHPEAaQ2VWYpxrKW632H9kbvdakcyxplirz2VdJO468,177
|
|
928
1020
|
opik/rest_api/types/value_entry_source.py,sha256=88mwTzeHkFYIOdyGPuXmdDrBdf-90hGwSbXPySv7cbU,171
|
|
1021
|
+
opik/rest_api/types/video_url.py,sha256=jLH1x4HkD0TN3e3w0x5Pcxu41L0ndwwMn6Wr60kNCyg,514
|
|
1022
|
+
opik/rest_api/types/video_url_public.py,sha256=tk1CL0Iad_Kviqgi_UhUWZkMQAeXUdipR8ShY-Zszj8,520
|
|
1023
|
+
opik/rest_api/types/video_url_write.py,sha256=-9lw8d0C8owAEV0KodGD3a6MOgEJEWQS4QhZ1cfecsM,519
|
|
929
1024
|
opik/rest_api/types/webhook.py,sha256=pdPQOioolHGsaS-_Y9xplabk7pawl2yFJ3YLvPRGy-8,916
|
|
930
1025
|
opik/rest_api/types/webhook_examples.py,sha256=eCkDuTtsDmJs7s73GyrrCuSIrFvMkU8owIPh9W0wtSw,619
|
|
931
1026
|
opik/rest_api/types/webhook_public.py,sha256=6oTwGOHigPlWXiexUq7ZU-wp856k1a0pjiUKeNsp92Y,922
|
|
@@ -961,9 +1056,9 @@ opik/validation/parameters_validator.py,sha256=Hz8dcDKH7sQC94H9HjCFRPmSd5iTm79h8
|
|
|
961
1056
|
opik/validation/result.py,sha256=0poOSya4AJQYrtfpHUqh-kQfLOS0hOyjujaclSws5do,709
|
|
962
1057
|
opik/validation/validator.py,sha256=dPmgvQALyaPQzrdOhJRP0WRW2-HL5cUqq_-cR5Jlz0M,149
|
|
963
1058
|
opik/validation/validator_helpers.py,sha256=IlVW5obsMmohCBn3O29FYVuTg1crECnJpAzpnrYiYAw,4382
|
|
964
|
-
opik-1.9.
|
|
965
|
-
opik-1.9.
|
|
966
|
-
opik-1.9.
|
|
967
|
-
opik-1.9.
|
|
968
|
-
opik-1.9.
|
|
969
|
-
opik-1.9.
|
|
1059
|
+
opik-1.9.39.dist-info/licenses/LICENSE,sha256=dh-gqdlfYDxrJDrNx4UmXYLfLjY9hL1hMfJzLkb1_lY,11372
|
|
1060
|
+
opik-1.9.39.dist-info/METADATA,sha256=1VGM1LNE9xS0AFbBJVaym9TSMic7tp0n_R60j9xGjbk,34041
|
|
1061
|
+
opik-1.9.39.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1062
|
+
opik-1.9.39.dist-info/entry_points.txt,sha256=w0286wCciHEW75__VFhoJvymCiYKhCMKhHmLrBpQmbU,83
|
|
1063
|
+
opik-1.9.39.dist-info/top_level.txt,sha256=2oMiKnSx98Cvff0wEIdJ7r2dkKvy7xalZ-yFuc9O49Y,5
|
|
1064
|
+
opik-1.9.39.dist-info/RECORD,,
|