opik 1.6.4__py3-none-any.whl → 1.9.71__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 +33 -2
- 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/attachment/__init__.py +5 -0
- opik/api_objects/attachment/attachment.py +20 -0
- opik/api_objects/attachment/attachment_context.py +36 -0
- opik/api_objects/attachment/attachments_extractor.py +153 -0
- opik/api_objects/attachment/client.py +220 -0
- opik/api_objects/attachment/converters.py +51 -0
- opik/api_objects/attachment/decoder.py +18 -0
- opik/api_objects/attachment/decoder_base64.py +83 -0
- opik/api_objects/attachment/decoder_helpers.py +137 -0
- opik/api_objects/conversation/__init__.py +0 -0
- opik/api_objects/conversation/conversation_factory.py +43 -0
- opik/api_objects/conversation/conversation_thread.py +49 -0
- opik/api_objects/data_helpers.py +79 -0
- opik/api_objects/dataset/dataset.py +107 -45
- opik/api_objects/dataset/rest_operations.py +12 -3
- opik/api_objects/experiment/experiment.py +81 -45
- opik/api_objects/experiment/experiment_item.py +2 -1
- opik/api_objects/experiment/experiments_client.py +64 -0
- opik/api_objects/experiment/helpers.py +35 -11
- opik/api_objects/experiment/rest_operations.py +88 -19
- opik/api_objects/helpers.py +104 -7
- opik/api_objects/local_recording.py +81 -0
- opik/api_objects/opik_client.py +872 -174
- opik/api_objects/opik_query_language.py +136 -18
- opik/api_objects/optimization/__init__.py +3 -0
- opik/api_objects/optimization/optimization.py +39 -0
- opik/api_objects/prompt/__init__.py +13 -1
- 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 +210 -0
- opik/api_objects/prompt/chat/chat_prompt_template.py +350 -0
- opik/api_objects/prompt/chat/content_renderer_registry.py +203 -0
- opik/api_objects/prompt/client.py +193 -41
- opik/api_objects/prompt/text/__init__.py +1 -0
- opik/api_objects/prompt/text/prompt.py +174 -0
- opik/api_objects/prompt/text/prompt_template.py +55 -0
- opik/api_objects/prompt/types.py +29 -0
- opik/api_objects/rest_stream_parser.py +98 -0
- opik/api_objects/search_helpers.py +89 -0
- opik/api_objects/span/span_client.py +165 -45
- opik/api_objects/span/span_data.py +136 -25
- opik/api_objects/threads/__init__.py +0 -0
- opik/api_objects/threads/threads_client.py +185 -0
- opik/api_objects/trace/trace_client.py +72 -36
- opik/api_objects/trace/trace_data.py +112 -26
- opik/api_objects/validation_helpers.py +3 -3
- opik/cli/__init__.py +5 -0
- opik/cli/__main__.py +6 -0
- opik/cli/configure.py +66 -0
- opik/cli/exports/__init__.py +131 -0
- opik/cli/exports/dataset.py +278 -0
- opik/cli/exports/experiment.py +784 -0
- opik/cli/exports/project.py +685 -0
- opik/cli/exports/prompt.py +578 -0
- opik/cli/exports/utils.py +406 -0
- opik/cli/harbor.py +39 -0
- opik/cli/healthcheck.py +21 -0
- opik/cli/imports/__init__.py +439 -0
- opik/cli/imports/dataset.py +143 -0
- opik/cli/imports/experiment.py +1192 -0
- opik/cli/imports/project.py +262 -0
- opik/cli/imports/prompt.py +177 -0
- opik/cli/imports/utils.py +280 -0
- opik/cli/main.py +49 -0
- opik/cli/proxy.py +93 -0
- opik/cli/usage_report/__init__.py +16 -0
- opik/cli/usage_report/charts.py +783 -0
- opik/cli/usage_report/cli.py +274 -0
- opik/cli/usage_report/constants.py +9 -0
- opik/cli/usage_report/extraction.py +749 -0
- opik/cli/usage_report/pdf.py +244 -0
- opik/cli/usage_report/statistics.py +78 -0
- opik/cli/usage_report/utils.py +235 -0
- opik/config.py +62 -4
- opik/configurator/configure.py +45 -6
- opik/configurator/opik_rest_helpers.py +4 -1
- opik/context_storage.py +164 -65
- opik/datetime_helpers.py +12 -0
- opik/decorator/arguments_helpers.py +9 -1
- opik/decorator/base_track_decorator.py +298 -146
- opik/decorator/context_manager/__init__.py +0 -0
- opik/decorator/context_manager/span_context_manager.py +123 -0
- opik/decorator/context_manager/trace_context_manager.py +84 -0
- opik/decorator/generator_wrappers.py +3 -2
- opik/decorator/inspect_helpers.py +11 -0
- opik/decorator/opik_args/__init__.py +13 -0
- opik/decorator/opik_args/api_classes.py +71 -0
- opik/decorator/opik_args/helpers.py +120 -0
- opik/decorator/span_creation_handler.py +49 -21
- opik/decorator/tracker.py +9 -1
- opik/dict_utils.py +3 -3
- opik/environment.py +13 -1
- opik/error_tracking/api.py +1 -1
- opik/error_tracking/before_send.py +6 -5
- opik/error_tracking/environment_details.py +29 -7
- opik/error_tracking/error_filtering/filter_by_response_status_code.py +42 -0
- opik/error_tracking/error_filtering/filter_chain_builder.py +14 -3
- opik/evaluation/__init__.py +14 -2
- opik/evaluation/engine/engine.py +280 -82
- opik/evaluation/engine/evaluation_tasks_executor.py +15 -10
- opik/evaluation/engine/helpers.py +34 -9
- opik/evaluation/engine/metrics_evaluator.py +237 -0
- opik/evaluation/engine/types.py +5 -4
- opik/evaluation/evaluation_result.py +169 -2
- opik/evaluation/evaluator.py +659 -58
- opik/evaluation/metrics/__init__.py +121 -6
- opik/evaluation/metrics/aggregated_metric.py +92 -0
- opik/evaluation/metrics/arguments_helpers.py +15 -21
- opik/evaluation/metrics/arguments_validator.py +38 -0
- opik/evaluation/metrics/base_metric.py +20 -10
- opik/evaluation/metrics/conversation/__init__.py +48 -0
- opik/evaluation/metrics/conversation/conversation_thread_metric.py +79 -0
- opik/evaluation/metrics/conversation/conversation_turns_factory.py +39 -0
- opik/evaluation/metrics/conversation/g_eval_wrappers.py +19 -0
- opik/evaluation/metrics/conversation/helpers.py +84 -0
- opik/evaluation/metrics/conversation/heuristics/__init__.py +14 -0
- opik/evaluation/metrics/conversation/heuristics/degeneration/__init__.py +3 -0
- opik/evaluation/metrics/conversation/heuristics/degeneration/metric.py +189 -0
- opik/evaluation/metrics/conversation/heuristics/degeneration/phrases.py +12 -0
- opik/evaluation/metrics/conversation/heuristics/knowledge_retention/__init__.py +3 -0
- opik/evaluation/metrics/conversation/heuristics/knowledge_retention/metric.py +172 -0
- opik/evaluation/metrics/conversation/llm_judges/__init__.py +32 -0
- opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/__init__.py +0 -0
- opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/metric.py +274 -0
- opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/schema.py +16 -0
- opik/evaluation/metrics/conversation/llm_judges/conversational_coherence/templates.py +95 -0
- opik/evaluation/metrics/conversation/llm_judges/g_eval_wrappers.py +442 -0
- opik/evaluation/metrics/conversation/llm_judges/session_completeness/__init__.py +0 -0
- opik/evaluation/metrics/conversation/llm_judges/session_completeness/metric.py +295 -0
- opik/evaluation/metrics/conversation/llm_judges/session_completeness/schema.py +22 -0
- opik/evaluation/metrics/conversation/llm_judges/session_completeness/templates.py +139 -0
- opik/evaluation/metrics/conversation/llm_judges/user_frustration/__init__.py +0 -0
- opik/evaluation/metrics/conversation/llm_judges/user_frustration/metric.py +277 -0
- opik/evaluation/metrics/conversation/llm_judges/user_frustration/schema.py +16 -0
- opik/evaluation/metrics/conversation/llm_judges/user_frustration/templates.py +135 -0
- opik/evaluation/metrics/conversation/types.py +34 -0
- opik/evaluation/metrics/conversation_types.py +9 -0
- opik/evaluation/metrics/heuristics/bertscore.py +107 -0
- opik/evaluation/metrics/heuristics/bleu.py +43 -16
- opik/evaluation/metrics/heuristics/chrf.py +127 -0
- opik/evaluation/metrics/heuristics/contains.py +50 -11
- opik/evaluation/metrics/heuristics/distribution_metrics.py +331 -0
- opik/evaluation/metrics/heuristics/equals.py +4 -1
- opik/evaluation/metrics/heuristics/gleu.py +113 -0
- opik/evaluation/metrics/heuristics/is_json.py +9 -3
- opik/evaluation/metrics/heuristics/language_adherence.py +123 -0
- opik/evaluation/metrics/heuristics/levenshtein_ratio.py +6 -5
- opik/evaluation/metrics/heuristics/meteor.py +119 -0
- opik/evaluation/metrics/heuristics/prompt_injection.py +150 -0
- opik/evaluation/metrics/heuristics/readability.py +129 -0
- opik/evaluation/metrics/heuristics/regex_match.py +4 -1
- opik/evaluation/metrics/heuristics/rouge.py +148 -0
- opik/evaluation/metrics/heuristics/sentiment.py +98 -0
- opik/evaluation/metrics/heuristics/spearman.py +88 -0
- opik/evaluation/metrics/heuristics/tone.py +155 -0
- opik/evaluation/metrics/heuristics/vader_sentiment.py +77 -0
- opik/evaluation/metrics/llm_judges/answer_relevance/metric.py +27 -30
- opik/evaluation/metrics/llm_judges/answer_relevance/parser.py +27 -0
- opik/evaluation/metrics/llm_judges/answer_relevance/templates.py +10 -10
- opik/evaluation/metrics/llm_judges/context_precision/metric.py +28 -31
- opik/evaluation/metrics/llm_judges/context_precision/parser.py +27 -0
- opik/evaluation/metrics/llm_judges/context_precision/template.py +7 -7
- opik/evaluation/metrics/llm_judges/context_recall/metric.py +27 -31
- opik/evaluation/metrics/llm_judges/context_recall/parser.py +27 -0
- opik/evaluation/metrics/llm_judges/context_recall/template.py +7 -7
- opik/evaluation/metrics/llm_judges/factuality/metric.py +7 -26
- opik/evaluation/metrics/llm_judges/factuality/parser.py +35 -0
- opik/evaluation/metrics/llm_judges/factuality/template.py +1 -1
- opik/evaluation/metrics/llm_judges/g_eval/__init__.py +5 -0
- opik/evaluation/metrics/llm_judges/g_eval/metric.py +244 -113
- opik/evaluation/metrics/llm_judges/g_eval/parser.py +161 -0
- opik/evaluation/metrics/llm_judges/g_eval/presets.py +209 -0
- opik/evaluation/metrics/llm_judges/g_eval_presets/__init__.py +36 -0
- opik/evaluation/metrics/llm_judges/g_eval_presets/agent_assessment.py +77 -0
- opik/evaluation/metrics/llm_judges/g_eval_presets/bias_classifier.py +181 -0
- opik/evaluation/metrics/llm_judges/g_eval_presets/compliance_risk.py +41 -0
- opik/evaluation/metrics/llm_judges/g_eval_presets/prompt_uncertainty.py +41 -0
- opik/evaluation/metrics/llm_judges/g_eval_presets/qa_suite.py +146 -0
- opik/evaluation/metrics/llm_judges/hallucination/metric.py +23 -27
- opik/evaluation/metrics/llm_judges/hallucination/parser.py +29 -0
- opik/evaluation/metrics/llm_judges/hallucination/template.py +2 -4
- opik/evaluation/metrics/llm_judges/llm_juries/__init__.py +3 -0
- opik/evaluation/metrics/llm_judges/llm_juries/metric.py +76 -0
- opik/evaluation/metrics/llm_judges/moderation/metric.py +23 -28
- opik/evaluation/metrics/llm_judges/moderation/parser.py +27 -0
- opik/evaluation/metrics/llm_judges/moderation/template.py +2 -2
- opik/evaluation/metrics/llm_judges/parsing_helpers.py +26 -0
- opik/evaluation/metrics/llm_judges/structure_output_compliance/__init__.py +0 -0
- opik/evaluation/metrics/llm_judges/structure_output_compliance/metric.py +144 -0
- opik/evaluation/metrics/llm_judges/structure_output_compliance/parser.py +79 -0
- opik/evaluation/metrics/llm_judges/structure_output_compliance/schema.py +15 -0
- opik/evaluation/metrics/llm_judges/structure_output_compliance/template.py +50 -0
- opik/evaluation/metrics/llm_judges/syc_eval/__init__.py +0 -0
- opik/evaluation/metrics/llm_judges/syc_eval/metric.py +252 -0
- opik/evaluation/metrics/llm_judges/syc_eval/parser.py +82 -0
- opik/evaluation/metrics/llm_judges/syc_eval/template.py +155 -0
- opik/evaluation/metrics/llm_judges/trajectory_accuracy/__init__.py +3 -0
- opik/evaluation/metrics/llm_judges/trajectory_accuracy/metric.py +171 -0
- opik/evaluation/metrics/llm_judges/trajectory_accuracy/parser.py +38 -0
- opik/evaluation/metrics/llm_judges/trajectory_accuracy/templates.py +65 -0
- opik/evaluation/metrics/llm_judges/usefulness/metric.py +23 -32
- opik/evaluation/metrics/llm_judges/usefulness/parser.py +28 -0
- opik/evaluation/metrics/ragas_metric.py +112 -0
- opik/evaluation/models/__init__.py +10 -0
- opik/evaluation/models/base_model.py +140 -18
- opik/evaluation/models/langchain/__init__.py +3 -0
- opik/evaluation/models/langchain/langchain_chat_model.py +166 -0
- opik/evaluation/models/langchain/message_converters.py +106 -0
- opik/evaluation/models/langchain/opik_monitoring.py +23 -0
- opik/evaluation/models/litellm/litellm_chat_model.py +186 -40
- opik/evaluation/models/litellm/opik_monitor.py +24 -21
- opik/evaluation/models/litellm/util.py +125 -0
- opik/evaluation/models/litellm/warning_filters.py +16 -4
- opik/evaluation/models/model_capabilities.py +187 -0
- opik/evaluation/models/models_factory.py +25 -3
- opik/evaluation/preprocessing.py +92 -0
- opik/evaluation/report.py +70 -12
- opik/evaluation/rest_operations.py +49 -45
- opik/evaluation/samplers/__init__.py +4 -0
- opik/evaluation/samplers/base_dataset_sampler.py +40 -0
- opik/evaluation/samplers/random_dataset_sampler.py +48 -0
- opik/evaluation/score_statistics.py +66 -0
- opik/evaluation/scorers/__init__.py +4 -0
- opik/evaluation/scorers/scorer_function.py +55 -0
- opik/evaluation/scorers/scorer_wrapper_metric.py +130 -0
- opik/evaluation/test_case.py +3 -2
- opik/evaluation/test_result.py +1 -0
- opik/evaluation/threads/__init__.py +0 -0
- opik/evaluation/threads/context_helper.py +32 -0
- opik/evaluation/threads/evaluation_engine.py +181 -0
- opik/evaluation/threads/evaluation_result.py +18 -0
- opik/evaluation/threads/evaluator.py +120 -0
- opik/evaluation/threads/helpers.py +51 -0
- opik/evaluation/types.py +9 -1
- opik/exceptions.py +116 -3
- opik/file_upload/__init__.py +0 -0
- opik/file_upload/base_upload_manager.py +39 -0
- opik/file_upload/file_upload_monitor.py +14 -0
- opik/file_upload/file_uploader.py +141 -0
- opik/file_upload/mime_type.py +9 -0
- opik/file_upload/s3_multipart_upload/__init__.py +0 -0
- opik/file_upload/s3_multipart_upload/file_parts_strategy.py +89 -0
- opik/file_upload/s3_multipart_upload/s3_file_uploader.py +86 -0
- opik/file_upload/s3_multipart_upload/s3_upload_error.py +29 -0
- opik/file_upload/thread_pool.py +17 -0
- opik/file_upload/upload_client.py +114 -0
- opik/file_upload/upload_manager.py +255 -0
- opik/file_upload/upload_options.py +37 -0
- opik/format_helpers.py +17 -0
- opik/guardrails/__init__.py +4 -0
- opik/guardrails/guardrail.py +157 -0
- opik/guardrails/guards/__init__.py +5 -0
- opik/guardrails/guards/guard.py +17 -0
- opik/guardrails/guards/pii.py +47 -0
- opik/guardrails/guards/topic.py +76 -0
- opik/guardrails/rest_api_client.py +34 -0
- opik/guardrails/schemas.py +24 -0
- opik/guardrails/tracing.py +61 -0
- opik/healthcheck/__init__.py +2 -1
- opik/healthcheck/checks.py +2 -2
- opik/healthcheck/rich_representation.py +1 -1
- opik/hooks/__init__.py +23 -0
- opik/hooks/anonymizer_hook.py +36 -0
- opik/hooks/httpx_client_hook.py +112 -0
- opik/httpx_client.py +75 -4
- opik/id_helpers.py +18 -0
- opik/integrations/adk/__init__.py +14 -0
- opik/integrations/adk/callback_context_info_extractors.py +32 -0
- opik/integrations/adk/graph/__init__.py +0 -0
- opik/integrations/adk/graph/mermaid_graph_builder.py +128 -0
- opik/integrations/adk/graph/nodes.py +101 -0
- opik/integrations/adk/graph/subgraph_edges_builders.py +41 -0
- opik/integrations/adk/helpers.py +48 -0
- opik/integrations/adk/legacy_opik_tracer.py +381 -0
- opik/integrations/adk/opik_tracer.py +370 -0
- opik/integrations/adk/patchers/__init__.py +4 -0
- opik/integrations/adk/patchers/adk_otel_tracer/__init__.py +0 -0
- opik/integrations/adk/patchers/adk_otel_tracer/llm_span_helpers.py +30 -0
- opik/integrations/adk/patchers/adk_otel_tracer/opik_adk_otel_tracer.py +201 -0
- opik/integrations/adk/patchers/litellm_wrappers.py +91 -0
- opik/integrations/adk/patchers/llm_response_wrapper.py +105 -0
- opik/integrations/adk/patchers/patchers.py +64 -0
- opik/integrations/adk/recursive_callback_injector.py +126 -0
- opik/integrations/aisuite/aisuite_decorator.py +8 -3
- opik/integrations/aisuite/opik_tracker.py +1 -0
- opik/integrations/anthropic/messages_create_decorator.py +8 -3
- opik/integrations/anthropic/opik_tracker.py +0 -1
- opik/integrations/bedrock/converse/__init__.py +0 -0
- opik/integrations/bedrock/converse/chunks_aggregator.py +188 -0
- opik/integrations/bedrock/{converse_decorator.py → converse/converse_decorator.py} +18 -8
- opik/integrations/bedrock/invoke_agent_decorator.py +12 -7
- opik/integrations/bedrock/invoke_model/__init__.py +0 -0
- opik/integrations/bedrock/invoke_model/chunks_aggregator/__init__.py +78 -0
- opik/integrations/bedrock/invoke_model/chunks_aggregator/api.py +45 -0
- opik/integrations/bedrock/invoke_model/chunks_aggregator/base.py +23 -0
- opik/integrations/bedrock/invoke_model/chunks_aggregator/claude.py +121 -0
- opik/integrations/bedrock/invoke_model/chunks_aggregator/format_detector.py +107 -0
- opik/integrations/bedrock/invoke_model/chunks_aggregator/llama.py +108 -0
- opik/integrations/bedrock/invoke_model/chunks_aggregator/mistral.py +118 -0
- opik/integrations/bedrock/invoke_model/chunks_aggregator/nova.py +99 -0
- opik/integrations/bedrock/invoke_model/invoke_model_decorator.py +178 -0
- opik/integrations/bedrock/invoke_model/response_types.py +34 -0
- opik/integrations/bedrock/invoke_model/stream_wrappers.py +122 -0
- opik/integrations/bedrock/invoke_model/usage_converters.py +87 -0
- opik/integrations/bedrock/invoke_model/usage_extraction.py +108 -0
- opik/integrations/bedrock/opik_tracker.py +43 -4
- opik/integrations/bedrock/types.py +19 -0
- opik/integrations/crewai/crewai_decorator.py +34 -56
- opik/integrations/crewai/opik_tracker.py +31 -10
- opik/integrations/crewai/patchers/__init__.py +5 -0
- opik/integrations/crewai/patchers/flow.py +118 -0
- opik/integrations/crewai/patchers/litellm_completion.py +30 -0
- opik/integrations/crewai/patchers/llm_client.py +207 -0
- opik/integrations/dspy/callback.py +246 -84
- opik/integrations/dspy/graph.py +88 -0
- opik/integrations/dspy/parsers.py +168 -0
- opik/integrations/genai/encoder_extension.py +2 -6
- opik/integrations/genai/generate_content_decorator.py +20 -13
- opik/integrations/guardrails/guardrails_decorator.py +4 -0
- opik/integrations/harbor/__init__.py +17 -0
- opik/integrations/harbor/experiment_service.py +269 -0
- opik/integrations/harbor/opik_tracker.py +528 -0
- opik/integrations/haystack/constants.py +35 -0
- opik/integrations/haystack/converters.py +1 -2
- opik/integrations/haystack/opik_connector.py +28 -6
- opik/integrations/haystack/opik_span_bridge.py +284 -0
- opik/integrations/haystack/opik_tracer.py +124 -222
- opik/integrations/langchain/__init__.py +3 -1
- opik/integrations/langchain/helpers.py +96 -0
- opik/integrations/langchain/langgraph_async_context_bridge.py +131 -0
- opik/integrations/langchain/langgraph_tracer_injector.py +88 -0
- opik/integrations/langchain/opik_encoder_extension.py +2 -2
- opik/integrations/langchain/opik_tracer.py +641 -206
- opik/integrations/langchain/provider_usage_extractors/__init__.py +5 -0
- opik/integrations/langchain/provider_usage_extractors/anthropic_usage_extractor.py +101 -0
- opik/integrations/langchain/provider_usage_extractors/anthropic_vertexai_usage_extractor.py +67 -0
- opik/integrations/langchain/provider_usage_extractors/bedrock_usage_extractor.py +94 -0
- opik/integrations/langchain/provider_usage_extractors/google_generative_ai_usage_extractor.py +109 -0
- opik/integrations/langchain/provider_usage_extractors/groq_usage_extractor.py +92 -0
- opik/integrations/langchain/provider_usage_extractors/langchain_run_helpers/__init__.py +15 -0
- opik/integrations/langchain/provider_usage_extractors/langchain_run_helpers/helpers.py +134 -0
- opik/integrations/langchain/provider_usage_extractors/langchain_run_helpers/langchain_usage.py +163 -0
- opik/integrations/langchain/provider_usage_extractors/openai_usage_extractor.py +124 -0
- opik/integrations/langchain/provider_usage_extractors/provider_usage_extractor_protocol.py +29 -0
- opik/integrations/langchain/provider_usage_extractors/usage_extractor.py +48 -0
- opik/integrations/langchain/provider_usage_extractors/vertexai_usage_extractor.py +109 -0
- opik/integrations/litellm/__init__.py +5 -0
- opik/integrations/litellm/completion_chunks_aggregator.py +115 -0
- opik/integrations/litellm/litellm_completion_decorator.py +242 -0
- opik/integrations/litellm/opik_tracker.py +43 -0
- opik/integrations/litellm/stream_patchers.py +151 -0
- opik/integrations/llama_index/callback.py +179 -78
- opik/integrations/llama_index/event_parsing_utils.py +29 -9
- opik/integrations/openai/agents/opik_tracing_processor.py +204 -32
- opik/integrations/openai/agents/span_data_parsers.py +15 -6
- opik/integrations/openai/chat_completion_chunks_aggregator.py +1 -1
- opik/integrations/openai/{openai_decorator.py → openai_chat_completions_decorator.py} +45 -35
- opik/integrations/openai/openai_responses_decorator.py +158 -0
- opik/integrations/openai/opik_tracker.py +94 -13
- opik/integrations/openai/response_events_aggregator.py +36 -0
- opik/integrations/openai/stream_patchers.py +125 -15
- opik/integrations/sagemaker/auth.py +5 -1
- opik/jsonable_encoder.py +29 -1
- opik/llm_usage/base_original_provider_usage.py +15 -8
- opik/llm_usage/bedrock_usage.py +8 -2
- opik/llm_usage/google_usage.py +6 -1
- opik/llm_usage/llm_usage_info.py +6 -0
- opik/llm_usage/{openai_usage.py → openai_chat_completions_usage.py} +2 -12
- opik/llm_usage/{openai_agent_usage.py → openai_responses_usage.py} +7 -15
- opik/llm_usage/opik_usage.py +36 -10
- opik/llm_usage/opik_usage_factory.py +35 -19
- opik/logging_messages.py +19 -7
- opik/message_processing/arguments_utils.py +22 -0
- opik/message_processing/batching/base_batcher.py +45 -17
- opik/message_processing/batching/batch_manager.py +22 -10
- opik/message_processing/batching/batch_manager_constuctors.py +36 -11
- opik/message_processing/batching/batchers.py +167 -44
- opik/message_processing/batching/flushing_thread.py +0 -3
- opik/message_processing/batching/sequence_splitter.py +50 -5
- opik/message_processing/emulation/__init__.py +0 -0
- opik/message_processing/emulation/emulator_message_processor.py +578 -0
- opik/message_processing/emulation/local_emulator_message_processor.py +140 -0
- opik/message_processing/emulation/models.py +162 -0
- opik/message_processing/encoder_helpers.py +79 -0
- opik/message_processing/message_queue.py +79 -0
- opik/message_processing/messages.py +154 -12
- opik/message_processing/preprocessing/__init__.py +0 -0
- opik/message_processing/preprocessing/attachments_preprocessor.py +70 -0
- opik/message_processing/preprocessing/batching_preprocessor.py +53 -0
- opik/message_processing/preprocessing/constants.py +1 -0
- opik/message_processing/preprocessing/file_upload_preprocessor.py +38 -0
- opik/message_processing/preprocessing/preprocessor.py +36 -0
- opik/message_processing/processors/__init__.py +0 -0
- opik/message_processing/processors/attachments_extraction_processor.py +146 -0
- opik/message_processing/processors/message_processors.py +92 -0
- opik/message_processing/processors/message_processors_chain.py +96 -0
- opik/message_processing/processors/online_message_processor.py +324 -0
- opik/message_processing/queue_consumer.py +61 -13
- opik/message_processing/streamer.py +102 -31
- opik/message_processing/streamer_constructors.py +67 -12
- opik/opik_context.py +103 -11
- opik/plugins/pytest/decorator.py +2 -2
- opik/plugins/pytest/experiment_runner.py +3 -2
- opik/plugins/pytest/hooks.py +6 -4
- opik/rate_limit/__init__.py +0 -0
- opik/rate_limit/rate_limit.py +25 -0
- opik/rest_api/__init__.py +643 -11
- opik/rest_api/alerts/__init__.py +7 -0
- opik/rest_api/alerts/client.py +667 -0
- opik/rest_api/alerts/raw_client.py +1015 -0
- opik/rest_api/alerts/types/__init__.py +7 -0
- opik/rest_api/alerts/types/get_webhook_examples_request_alert_type.py +5 -0
- opik/rest_api/annotation_queues/__init__.py +4 -0
- opik/rest_api/annotation_queues/client.py +668 -0
- opik/rest_api/annotation_queues/raw_client.py +1019 -0
- opik/rest_api/attachments/__init__.py +17 -0
- opik/rest_api/attachments/client.py +752 -0
- opik/rest_api/attachments/raw_client.py +1125 -0
- opik/rest_api/attachments/types/__init__.py +15 -0
- opik/rest_api/attachments/types/attachment_list_request_entity_type.py +5 -0
- opik/rest_api/attachments/types/download_attachment_request_entity_type.py +5 -0
- opik/rest_api/attachments/types/start_multipart_upload_request_entity_type.py +5 -0
- opik/rest_api/attachments/types/upload_attachment_request_entity_type.py +5 -0
- opik/rest_api/automation_rule_evaluators/__init__.py +2 -0
- opik/rest_api/automation_rule_evaluators/client.py +182 -1162
- opik/rest_api/automation_rule_evaluators/raw_client.py +598 -0
- opik/rest_api/chat_completions/__init__.py +2 -0
- opik/rest_api/chat_completions/client.py +115 -149
- opik/rest_api/chat_completions/raw_client.py +339 -0
- opik/rest_api/check/__init__.py +2 -0
- opik/rest_api/check/client.py +88 -106
- opik/rest_api/check/raw_client.py +258 -0
- opik/rest_api/client.py +112 -212
- opik/rest_api/core/__init__.py +5 -0
- opik/rest_api/core/api_error.py +12 -6
- opik/rest_api/core/client_wrapper.py +4 -14
- opik/rest_api/core/datetime_utils.py +1 -3
- opik/rest_api/core/file.py +2 -5
- opik/rest_api/core/http_client.py +42 -120
- opik/rest_api/core/http_response.py +55 -0
- opik/rest_api/core/jsonable_encoder.py +1 -4
- opik/rest_api/core/pydantic_utilities.py +79 -147
- opik/rest_api/core/query_encoder.py +1 -3
- opik/rest_api/core/serialization.py +10 -10
- 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/__init__.py +5 -0
- opik/rest_api/datasets/client.py +1638 -1091
- opik/rest_api/datasets/raw_client.py +3389 -0
- opik/rest_api/datasets/types/__init__.py +8 -0
- opik/rest_api/datasets/types/dataset_update_visibility.py +5 -0
- opik/rest_api/datasets/types/dataset_write_visibility.py +5 -0
- opik/rest_api/errors/__init__.py +2 -0
- opik/rest_api/errors/bad_request_error.py +4 -3
- opik/rest_api/errors/conflict_error.py +4 -3
- opik/rest_api/errors/forbidden_error.py +4 -2
- opik/rest_api/errors/not_found_error.py +4 -3
- opik/rest_api/errors/not_implemented_error.py +4 -3
- opik/rest_api/errors/unauthorized_error.py +4 -3
- opik/rest_api/errors/unprocessable_entity_error.py +4 -3
- opik/rest_api/experiments/__init__.py +5 -0
- opik/rest_api/experiments/client.py +676 -752
- opik/rest_api/experiments/raw_client.py +1872 -0
- opik/rest_api/experiments/types/__init__.py +10 -0
- opik/rest_api/experiments/types/experiment_update_status.py +5 -0
- opik/rest_api/experiments/types/experiment_update_type.py +5 -0
- opik/rest_api/experiments/types/experiment_write_status.py +5 -0
- opik/rest_api/experiments/types/experiment_write_type.py +5 -0
- opik/rest_api/feedback_definitions/__init__.py +2 -0
- opik/rest_api/feedback_definitions/client.py +96 -370
- opik/rest_api/feedback_definitions/raw_client.py +541 -0
- opik/rest_api/feedback_definitions/types/__init__.py +2 -0
- opik/rest_api/feedback_definitions/types/find_feedback_definitions_request_type.py +1 -3
- opik/rest_api/guardrails/__init__.py +4 -0
- opik/rest_api/guardrails/client.py +104 -0
- opik/rest_api/guardrails/raw_client.py +102 -0
- opik/rest_api/llm_provider_key/__init__.py +2 -0
- opik/rest_api/llm_provider_key/client.py +166 -440
- opik/rest_api/llm_provider_key/raw_client.py +643 -0
- opik/rest_api/llm_provider_key/types/__init__.py +2 -0
- opik/rest_api/llm_provider_key/types/provider_api_key_write_provider.py +1 -1
- opik/rest_api/manual_evaluation/__init__.py +4 -0
- opik/rest_api/manual_evaluation/client.py +347 -0
- opik/rest_api/manual_evaluation/raw_client.py +543 -0
- opik/rest_api/open_telemetry_ingestion/__init__.py +2 -0
- opik/rest_api/open_telemetry_ingestion/client.py +38 -63
- opik/rest_api/open_telemetry_ingestion/raw_client.py +88 -0
- opik/rest_api/optimizations/__init__.py +7 -0
- opik/rest_api/optimizations/client.py +704 -0
- opik/rest_api/optimizations/raw_client.py +920 -0
- opik/rest_api/optimizations/types/__init__.py +7 -0
- opik/rest_api/optimizations/types/optimization_update_status.py +7 -0
- opik/rest_api/projects/__init__.py +10 -1
- opik/rest_api/projects/client.py +180 -855
- opik/rest_api/projects/raw_client.py +1216 -0
- opik/rest_api/projects/types/__init__.py +11 -4
- opik/rest_api/projects/types/project_metric_request_public_interval.py +1 -3
- opik/rest_api/projects/types/project_metric_request_public_metric_type.py +11 -1
- opik/rest_api/projects/types/project_update_visibility.py +5 -0
- opik/rest_api/projects/types/project_write_visibility.py +5 -0
- opik/rest_api/prompts/__init__.py +4 -2
- opik/rest_api/prompts/client.py +381 -970
- opik/rest_api/prompts/raw_client.py +1634 -0
- opik/rest_api/prompts/types/__init__.py +5 -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/raw_client.py +156 -0
- opik/rest_api/redirect/__init__.py +4 -0
- opik/rest_api/redirect/client.py +375 -0
- opik/rest_api/redirect/raw_client.py +566 -0
- opik/rest_api/service_toggles/__init__.py +4 -0
- opik/rest_api/service_toggles/client.py +91 -0
- opik/rest_api/service_toggles/raw_client.py +93 -0
- opik/rest_api/spans/__init__.py +2 -0
- opik/rest_api/spans/client.py +659 -1354
- opik/rest_api/spans/raw_client.py +2383 -0
- opik/rest_api/spans/types/__init__.py +2 -0
- opik/rest_api/spans/types/find_feedback_score_names_1_request_type.py +1 -3
- opik/rest_api/spans/types/get_span_stats_request_type.py +1 -3
- opik/rest_api/spans/types/get_spans_by_project_request_type.py +1 -3
- opik/rest_api/spans/types/span_search_stream_request_public_type.py +1 -3
- opik/rest_api/system_usage/__init__.py +2 -0
- opik/rest_api/system_usage/client.py +157 -216
- opik/rest_api/system_usage/raw_client.py +455 -0
- opik/rest_api/traces/__init__.py +2 -0
- opik/rest_api/traces/client.py +2102 -1625
- opik/rest_api/traces/raw_client.py +4144 -0
- opik/rest_api/types/__init__.py +629 -24
- opik/rest_api/types/aggregation_data.py +27 -0
- opik/rest_api/types/alert.py +33 -0
- opik/rest_api/types/alert_alert_type.py +5 -0
- opik/rest_api/types/alert_page_public.py +24 -0
- opik/rest_api/types/alert_public.py +33 -0
- opik/rest_api/types/alert_public_alert_type.py +5 -0
- opik/rest_api/types/alert_trigger.py +27 -0
- opik/rest_api/types/alert_trigger_config.py +28 -0
- opik/rest_api/types/alert_trigger_config_public.py +28 -0
- opik/rest_api/types/alert_trigger_config_public_type.py +10 -0
- opik/rest_api/types/alert_trigger_config_type.py +10 -0
- opik/rest_api/types/alert_trigger_config_write.py +22 -0
- opik/rest_api/types/alert_trigger_config_write_type.py +10 -0
- opik/rest_api/types/alert_trigger_event_type.py +19 -0
- opik/rest_api/types/alert_trigger_public.py +27 -0
- opik/rest_api/types/alert_trigger_public_event_type.py +19 -0
- opik/rest_api/types/alert_trigger_write.py +23 -0
- opik/rest_api/types/alert_trigger_write_event_type.py +19 -0
- opik/rest_api/types/alert_write.py +28 -0
- opik/rest_api/types/alert_write_alert_type.py +5 -0
- opik/rest_api/types/annotation_queue.py +42 -0
- opik/rest_api/types/annotation_queue_batch.py +27 -0
- opik/rest_api/types/{json_schema_element.py → annotation_queue_item_ids.py} +5 -7
- opik/rest_api/types/annotation_queue_page_public.py +28 -0
- opik/rest_api/types/annotation_queue_public.py +38 -0
- opik/rest_api/types/annotation_queue_public_scope.py +5 -0
- opik/rest_api/types/{workspace_metadata.py → annotation_queue_reviewer.py} +6 -7
- opik/rest_api/types/annotation_queue_reviewer_public.py +20 -0
- opik/rest_api/types/annotation_queue_scope.py +5 -0
- opik/rest_api/types/annotation_queue_write.py +31 -0
- opik/rest_api/types/annotation_queue_write_scope.py +5 -0
- opik/rest_api/types/assistant_message.py +7 -8
- opik/rest_api/types/assistant_message_role.py +1 -3
- opik/rest_api/types/attachment.py +22 -0
- opik/rest_api/types/attachment_page.py +28 -0
- opik/rest_api/types/audio_url.py +19 -0
- opik/rest_api/types/audio_url_public.py +19 -0
- opik/rest_api/types/audio_url_write.py +19 -0
- opik/rest_api/types/automation_rule_evaluator.py +160 -0
- opik/rest_api/types/automation_rule_evaluator_llm_as_judge.py +6 -6
- opik/rest_api/types/automation_rule_evaluator_llm_as_judge_public.py +6 -6
- opik/rest_api/types/automation_rule_evaluator_llm_as_judge_write.py +6 -6
- opik/rest_api/types/automation_rule_evaluator_object_object_public.py +155 -0
- opik/rest_api/types/automation_rule_evaluator_page_public.py +6 -6
- opik/rest_api/types/automation_rule_evaluator_public.py +155 -0
- 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_span_user_defined_metric_python.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_span_user_defined_metric_python_public.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_span_user_defined_metric_python_write.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_public.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_llm_as_judge_write.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_public.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_trace_thread_user_defined_metric_python_write.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_update.py +143 -0
- opik/rest_api/types/automation_rule_evaluator_update_llm_as_judge.py +6 -6
- opik/rest_api/types/automation_rule_evaluator_update_span_llm_as_judge.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_update_span_user_defined_metric_python.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_update_trace_thread_llm_as_judge.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_update_trace_thread_user_defined_metric_python.py +22 -0
- opik/rest_api/types/automation_rule_evaluator_update_user_defined_metric_python.py +6 -6
- opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python.py +6 -6
- opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_public.py +6 -6
- opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_write.py +6 -6
- opik/rest_api/types/automation_rule_evaluator_write.py +143 -0
- opik/rest_api/types/avg_value_stat_public.py +3 -5
- opik/rest_api/types/batch_delete.py +3 -5
- opik/rest_api/types/batch_delete_by_project.py +20 -0
- opik/rest_api/types/bi_information.py +3 -5
- opik/rest_api/types/bi_information_response.py +4 -6
- 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/categorical_feedback_definition.py +5 -7
- opik/rest_api/types/categorical_feedback_definition_create.py +4 -6
- opik/rest_api/types/categorical_feedback_definition_public.py +5 -7
- opik/rest_api/types/categorical_feedback_definition_update.py +4 -6
- opik/rest_api/types/categorical_feedback_detail.py +3 -5
- opik/rest_api/types/categorical_feedback_detail_create.py +3 -5
- opik/rest_api/types/categorical_feedback_detail_public.py +3 -5
- opik/rest_api/types/categorical_feedback_detail_update.py +3 -5
- opik/rest_api/types/chat_completion_choice.py +4 -6
- opik/rest_api/types/chat_completion_response.py +5 -6
- opik/rest_api/types/check.py +22 -0
- opik/rest_api/types/{json_node_compare.py → check_name.py} +1 -1
- opik/rest_api/types/check_public.py +22 -0
- opik/rest_api/types/check_public_name.py +5 -0
- opik/rest_api/types/check_public_result.py +5 -0
- opik/rest_api/types/check_result.py +5 -0
- opik/rest_api/types/chunked_output_json_node.py +4 -6
- opik/rest_api/types/chunked_output_json_node_public.py +4 -6
- opik/rest_api/types/chunked_output_json_node_public_type.py +6 -10
- opik/rest_api/types/chunked_output_json_node_type.py +6 -10
- opik/rest_api/types/column.py +8 -10
- opik/rest_api/types/column_compare.py +8 -10
- opik/rest_api/types/column_public.py +8 -10
- opik/rest_api/types/column_types_item.py +1 -3
- opik/rest_api/types/comment.py +4 -6
- opik/rest_api/types/comment_compare.py +4 -6
- opik/rest_api/types/comment_public.py +4 -6
- opik/rest_api/types/complete_multipart_upload_request.py +33 -0
- opik/rest_api/types/complete_multipart_upload_request_entity_type.py +5 -0
- opik/rest_api/types/completion_tokens_details.py +3 -5
- opik/rest_api/types/count_value_stat_public.py +3 -5
- opik/rest_api/types/dashboard_page_public.py +24 -0
- opik/rest_api/types/dashboard_public.py +30 -0
- opik/rest_api/types/data_point_double.py +21 -0
- opik/rest_api/types/data_point_number_public.py +3 -5
- opik/rest_api/types/dataset.py +14 -6
- opik/rest_api/types/dataset_expansion.py +42 -0
- opik/rest_api/types/dataset_expansion_response.py +39 -0
- opik/rest_api/types/dataset_item.py +9 -8
- opik/rest_api/types/dataset_item_batch.py +3 -5
- opik/rest_api/types/dataset_item_changes_public.py +5 -0
- opik/rest_api/types/dataset_item_compare.py +9 -8
- opik/rest_api/types/dataset_item_compare_source.py +1 -3
- opik/rest_api/types/dataset_item_filter.py +27 -0
- opik/rest_api/types/dataset_item_filter_operator.py +21 -0
- opik/rest_api/types/dataset_item_page_compare.py +10 -7
- opik/rest_api/types/dataset_item_page_public.py +10 -7
- opik/rest_api/types/dataset_item_public.py +9 -8
- opik/rest_api/types/dataset_item_public_source.py +1 -3
- opik/rest_api/types/dataset_item_source.py +1 -3
- opik/rest_api/types/dataset_item_update.py +39 -0
- opik/rest_api/types/dataset_item_write.py +5 -6
- opik/rest_api/types/dataset_item_write_source.py +1 -3
- opik/rest_api/types/dataset_page_public.py +9 -6
- opik/rest_api/types/dataset_public.py +14 -6
- opik/rest_api/types/dataset_public_status.py +5 -0
- opik/rest_api/types/dataset_public_visibility.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 +59 -0
- opik/rest_api/types/dataset_version_summary.py +46 -0
- opik/rest_api/types/dataset_version_summary_public.py +46 -0
- opik/rest_api/types/dataset_visibility.py +5 -0
- opik/rest_api/types/delete_attachments_request.py +23 -0
- opik/rest_api/types/delete_attachments_request_entity_type.py +5 -0
- opik/rest_api/types/delete_feedback_score.py +4 -5
- opik/rest_api/types/delete_ids_holder.py +19 -0
- opik/rest_api/types/delta.py +7 -9
- opik/rest_api/types/error_count_with_deviation.py +21 -0
- opik/rest_api/types/error_count_with_deviation_detailed.py +21 -0
- opik/rest_api/types/error_info.py +3 -5
- opik/rest_api/types/error_info_experiment_item_bulk_write_view.py +21 -0
- opik/rest_api/types/error_info_public.py +3 -5
- opik/rest_api/types/error_info_write.py +3 -5
- opik/rest_api/types/error_message.py +3 -5
- opik/rest_api/types/error_message_detail.py +3 -5
- opik/rest_api/types/error_message_detailed.py +3 -5
- opik/rest_api/types/error_message_public.py +3 -5
- opik/rest_api/types/experiment.py +21 -10
- opik/rest_api/types/experiment_group_aggregations_response.py +20 -0
- opik/rest_api/types/experiment_group_response.py +22 -0
- opik/rest_api/types/experiment_item.py +14 -11
- opik/rest_api/types/experiment_item_bulk_record.py +27 -0
- opik/rest_api/types/experiment_item_bulk_record_experiment_item_bulk_write_view.py +27 -0
- opik/rest_api/types/experiment_item_bulk_upload.py +27 -0
- opik/rest_api/types/experiment_item_compare.py +14 -11
- opik/rest_api/types/experiment_item_compare_trace_visibility_mode.py +5 -0
- opik/rest_api/types/experiment_item_public.py +6 -6
- opik/rest_api/types/experiment_item_public_trace_visibility_mode.py +5 -0
- opik/rest_api/types/experiment_item_trace_visibility_mode.py +5 -0
- opik/rest_api/types/experiment_page_public.py +9 -6
- opik/rest_api/types/experiment_public.py +21 -10
- opik/rest_api/types/experiment_public_status.py +5 -0
- opik/rest_api/types/experiment_public_type.py +5 -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/experiment_status.py +5 -0
- opik/rest_api/types/experiment_type.py +5 -0
- opik/rest_api/types/export_trace_service_request.py +5 -0
- opik/rest_api/types/feedback.py +40 -27
- opik/rest_api/types/feedback_create.py +27 -13
- opik/rest_api/types/feedback_definition_page_public.py +4 -6
- opik/rest_api/types/feedback_object_public.py +40 -27
- opik/rest_api/types/feedback_public.py +40 -27
- opik/rest_api/types/feedback_score.py +7 -7
- opik/rest_api/types/feedback_score_average.py +3 -5
- opik/rest_api/types/feedback_score_average_detailed.py +3 -5
- opik/rest_api/types/feedback_score_average_public.py +3 -5
- opik/rest_api/types/feedback_score_batch.py +4 -6
- opik/rest_api/types/feedback_score_batch_item.py +6 -6
- opik/rest_api/types/feedback_score_batch_item_source.py +1 -3
- opik/rest_api/types/feedback_score_batch_item_thread.py +32 -0
- opik/rest_api/types/feedback_score_batch_item_thread_source.py +5 -0
- opik/rest_api/types/feedback_score_compare.py +7 -7
- opik/rest_api/types/feedback_score_compare_source.py +1 -3
- opik/rest_api/types/feedback_score_experiment_item_bulk_write_view.py +31 -0
- opik/rest_api/types/feedback_score_experiment_item_bulk_write_view_source.py +5 -0
- opik/rest_api/types/feedback_score_names.py +4 -6
- opik/rest_api/types/feedback_score_public.py +11 -7
- opik/rest_api/types/feedback_score_public_source.py +1 -3
- opik/rest_api/types/feedback_score_source.py +1 -3
- opik/rest_api/types/feedback_update.py +27 -13
- opik/rest_api/types/function.py +4 -7
- opik/rest_api/types/function_call.py +3 -5
- opik/rest_api/types/group_content.py +19 -0
- opik/rest_api/types/group_content_with_aggregations.py +21 -0
- opik/rest_api/types/group_detail.py +19 -0
- opik/rest_api/types/group_details.py +20 -0
- opik/rest_api/types/guardrail.py +34 -0
- opik/rest_api/types/guardrail_batch.py +20 -0
- opik/rest_api/types/guardrail_name.py +5 -0
- opik/rest_api/types/guardrail_result.py +5 -0
- opik/rest_api/types/guardrail_write.py +33 -0
- opik/rest_api/types/guardrail_write_name.py +5 -0
- opik/rest_api/types/guardrail_write_result.py +5 -0
- opik/rest_api/types/guardrails_validation.py +21 -0
- opik/rest_api/types/guardrails_validation_public.py +21 -0
- opik/rest_api/types/ids_holder.py +19 -0
- 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/json_list_string.py +7 -0
- opik/rest_api/types/json_list_string_compare.py +7 -0
- opik/rest_api/types/json_list_string_experiment_item_bulk_write_view.py +7 -0
- opik/rest_api/types/json_list_string_public.py +7 -0
- opik/rest_api/types/json_list_string_write.py +7 -0
- opik/rest_api/types/json_schema.py +5 -8
- opik/rest_api/types/llm_as_judge_code.py +8 -12
- opik/rest_api/types/llm_as_judge_code_public.py +8 -12
- opik/rest_api/types/llm_as_judge_code_write.py +8 -12
- opik/rest_api/types/llm_as_judge_message.py +9 -7
- opik/rest_api/types/llm_as_judge_message_content.py +26 -0
- opik/rest_api/types/llm_as_judge_message_content_public.py +26 -0
- opik/rest_api/types/llm_as_judge_message_content_write.py +26 -0
- opik/rest_api/types/llm_as_judge_message_public.py +9 -7
- opik/rest_api/types/llm_as_judge_message_public_role.py +1 -1
- opik/rest_api/types/llm_as_judge_message_role.py +1 -1
- opik/rest_api/types/llm_as_judge_message_write.py +9 -7
- opik/rest_api/types/llm_as_judge_message_write_role.py +1 -1
- opik/rest_api/types/llm_as_judge_model_parameters.py +6 -5
- opik/rest_api/types/llm_as_judge_model_parameters_public.py +6 -5
- opik/rest_api/types/llm_as_judge_model_parameters_write.py +6 -5
- opik/rest_api/types/llm_as_judge_output_schema.py +4 -6
- opik/rest_api/types/llm_as_judge_output_schema_public.py +4 -6
- opik/rest_api/types/llm_as_judge_output_schema_public_type.py +1 -3
- opik/rest_api/types/llm_as_judge_output_schema_type.py +1 -3
- opik/rest_api/types/llm_as_judge_output_schema_write.py +4 -6
- opik/rest_api/types/llm_as_judge_output_schema_write_type.py +1 -3
- opik/rest_api/types/log_item.py +5 -7
- opik/rest_api/types/log_item_level.py +1 -3
- opik/rest_api/types/log_page.py +4 -6
- opik/rest_api/types/manual_evaluation_request.py +38 -0
- opik/rest_api/types/manual_evaluation_request_entity_type.py +5 -0
- opik/rest_api/types/manual_evaluation_response.py +27 -0
- opik/rest_api/types/multipart_upload_part.py +20 -0
- opik/rest_api/types/numerical_feedback_definition.py +5 -7
- opik/rest_api/types/numerical_feedback_definition_create.py +4 -6
- opik/rest_api/types/numerical_feedback_definition_public.py +5 -7
- opik/rest_api/types/numerical_feedback_definition_update.py +4 -6
- opik/rest_api/types/numerical_feedback_detail.py +3 -5
- opik/rest_api/types/numerical_feedback_detail_create.py +3 -5
- opik/rest_api/types/numerical_feedback_detail_public.py +3 -5
- opik/rest_api/types/numerical_feedback_detail_update.py +3 -5
- opik/rest_api/types/optimization.py +37 -0
- opik/rest_api/types/optimization_page_public.py +28 -0
- opik/rest_api/types/optimization_public.py +37 -0
- opik/rest_api/types/optimization_public_status.py +7 -0
- opik/rest_api/types/optimization_status.py +7 -0
- 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 +30 -0
- opik/rest_api/types/optimization_write_status.py +7 -0
- opik/rest_api/types/page_columns.py +4 -6
- opik/rest_api/types/percentage_value_stat_public.py +4 -6
- opik/rest_api/types/percentage_values.py +8 -16
- opik/rest_api/types/percentage_values_detailed.py +8 -16
- opik/rest_api/types/percentage_values_public.py +8 -16
- opik/rest_api/types/project.py +12 -7
- opik/rest_api/types/project_detailed.py +12 -7
- opik/rest_api/types/project_detailed_visibility.py +5 -0
- opik/rest_api/types/project_metric_response_public.py +5 -9
- opik/rest_api/types/project_metric_response_public_interval.py +1 -3
- opik/rest_api/types/project_metric_response_public_metric_type.py +11 -1
- opik/rest_api/types/project_page_public.py +8 -10
- opik/rest_api/types/project_public.py +6 -6
- opik/rest_api/types/project_public_visibility.py +5 -0
- opik/rest_api/types/project_reference.py +31 -0
- opik/rest_api/types/project_reference_public.py +31 -0
- opik/rest_api/types/project_stat_item_object_public.py +8 -17
- opik/rest_api/types/project_stats_public.py +4 -6
- opik/rest_api/types/project_stats_summary.py +4 -6
- opik/rest_api/types/project_stats_summary_item.py +9 -6
- opik/rest_api/types/project_visibility.py +5 -0
- opik/rest_api/types/prompt.py +12 -7
- opik/rest_api/types/prompt_detail.py +12 -7
- opik/rest_api/types/prompt_detail_template_structure.py +5 -0
- opik/rest_api/types/prompt_page_public.py +9 -6
- opik/rest_api/types/prompt_public.py +11 -6
- 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_tokens_details.py +19 -0
- opik/rest_api/types/prompt_version.py +7 -6
- opik/rest_api/types/prompt_version_detail.py +7 -6
- opik/rest_api/types/prompt_version_detail_template_structure.py +5 -0
- opik/rest_api/types/prompt_version_link.py +4 -5
- opik/rest_api/types/prompt_version_link_public.py +4 -5
- opik/rest_api/types/prompt_version_link_write.py +3 -5
- opik/rest_api/types/prompt_version_page_public.py +9 -6
- opik/rest_api/types/prompt_version_public.py +7 -6
- 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/prompt_version_update.py +33 -0
- opik/rest_api/types/provider_api_key.py +18 -8
- opik/rest_api/types/provider_api_key_page_public.py +27 -0
- opik/rest_api/types/provider_api_key_provider.py +1 -1
- opik/rest_api/types/provider_api_key_public.py +18 -8
- opik/rest_api/types/provider_api_key_public_provider.py +1 -1
- opik/rest_api/types/response_format.py +5 -7
- opik/rest_api/types/response_format_type.py +1 -3
- opik/rest_api/types/result.py +21 -0
- opik/rest_api/types/results_number_public.py +4 -6
- opik/rest_api/types/score_name.py +4 -5
- opik/rest_api/types/service_toggles_config.py +44 -0
- opik/rest_api/types/span.py +13 -15
- opik/rest_api/types/span_batch.py +4 -6
- opik/rest_api/types/span_enrichment_options.py +31 -0
- opik/rest_api/types/span_experiment_item_bulk_write_view.py +39 -0
- opik/rest_api/types/span_experiment_item_bulk_write_view_type.py +5 -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_public.py +4 -6
- opik/rest_api/types/span_filter_public_operator.py +2 -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_page_public.py +9 -6
- opik/rest_api/types/span_public.py +19 -16
- opik/rest_api/types/span_public_type.py +1 -1
- opik/rest_api/types/span_type.py +1 -1
- opik/rest_api/types/span_update.py +46 -0
- opik/rest_api/types/span_update_type.py +5 -0
- opik/rest_api/types/span_user_defined_metric_python_code.py +20 -0
- opik/rest_api/types/span_user_defined_metric_python_code_public.py +20 -0
- opik/rest_api/types/span_user_defined_metric_python_code_write.py +20 -0
- opik/rest_api/types/span_write.py +13 -14
- opik/rest_api/types/span_write_type.py +1 -1
- opik/rest_api/types/spans_count_response.py +20 -0
- opik/rest_api/types/start_multipart_upload_response.py +20 -0
- opik/rest_api/types/stream_options.py +3 -5
- 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/tool.py +4 -6
- opik/rest_api/types/tool_call.py +4 -6
- opik/rest_api/types/trace.py +26 -12
- opik/rest_api/types/trace_batch.py +4 -6
- opik/rest_api/types/trace_count_response.py +4 -6
- opik/rest_api/types/trace_enrichment_options.py +32 -0
- opik/rest_api/types/trace_experiment_item_bulk_write_view.py +41 -0
- opik/rest_api/types/trace_filter.py +23 -0
- opik/rest_api/types/trace_filter_operator.py +21 -0
- opik/rest_api/types/trace_filter_public.py +23 -0
- opik/rest_api/types/trace_filter_public_operator.py +21 -0
- opik/rest_api/types/trace_filter_write.py +23 -0
- opik/rest_api/types/trace_filter_write_operator.py +21 -0
- opik/rest_api/types/trace_page_public.py +8 -10
- opik/rest_api/types/trace_public.py +27 -13
- opik/rest_api/types/trace_public_visibility_mode.py +5 -0
- opik/rest_api/types/trace_thread.py +18 -9
- opik/rest_api/types/trace_thread_filter.py +23 -0
- opik/rest_api/types/trace_thread_filter_operator.py +21 -0
- opik/rest_api/types/trace_thread_filter_public.py +23 -0
- opik/rest_api/types/trace_thread_filter_public_operator.py +21 -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_identifier.py +22 -0
- opik/rest_api/types/trace_thread_llm_as_judge_code.py +26 -0
- opik/rest_api/types/trace_thread_llm_as_judge_code_public.py +26 -0
- opik/rest_api/types/trace_thread_llm_as_judge_code_write.py +26 -0
- opik/rest_api/types/trace_thread_page.py +9 -6
- opik/rest_api/types/trace_thread_status.py +5 -0
- opik/rest_api/types/trace_thread_update.py +19 -0
- opik/rest_api/types/trace_thread_user_defined_metric_python_code.py +19 -0
- opik/rest_api/types/trace_thread_user_defined_metric_python_code_public.py +19 -0
- opik/rest_api/types/trace_thread_user_defined_metric_python_code_write.py +19 -0
- opik/rest_api/types/trace_update.py +39 -0
- opik/rest_api/types/trace_visibility_mode.py +5 -0
- opik/rest_api/types/trace_write.py +10 -11
- opik/rest_api/types/usage.py +6 -6
- opik/rest_api/types/user_defined_metric_python_code.py +3 -5
- opik/rest_api/types/user_defined_metric_python_code_public.py +3 -5
- opik/rest_api/types/user_defined_metric_python_code_write.py +3 -5
- opik/rest_api/types/value_entry.py +27 -0
- opik/rest_api/types/value_entry_compare.py +27 -0
- opik/rest_api/types/value_entry_compare_source.py +5 -0
- opik/rest_api/types/value_entry_experiment_item_bulk_write_view.py +27 -0
- opik/rest_api/types/value_entry_experiment_item_bulk_write_view_source.py +5 -0
- opik/rest_api/types/value_entry_public.py +27 -0
- opik/rest_api/types/value_entry_public_source.py +5 -0
- opik/rest_api/types/value_entry_source.py +5 -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/rest_api/types/webhook.py +28 -0
- opik/rest_api/types/webhook_examples.py +19 -0
- opik/rest_api/types/webhook_public.py +28 -0
- opik/rest_api/types/webhook_test_result.py +23 -0
- opik/rest_api/types/webhook_test_result_status.py +5 -0
- opik/rest_api/types/webhook_write.py +23 -0
- opik/rest_api/types/welcome_wizard_tracking.py +22 -0
- opik/rest_api/types/workspace_configuration.py +27 -0
- opik/rest_api/types/workspace_metric_request.py +24 -0
- opik/rest_api/types/workspace_metric_response.py +20 -0
- opik/rest_api/types/workspace_metrics_summary_request.py +23 -0
- opik/rest_api/types/workspace_metrics_summary_response.py +20 -0
- opik/rest_api/types/workspace_name_holder.py +19 -0
- opik/rest_api/types/workspace_spans_count.py +20 -0
- opik/rest_api/types/workspace_trace_count.py +3 -5
- opik/rest_api/welcome_wizard/__init__.py +4 -0
- opik/rest_api/welcome_wizard/client.py +195 -0
- opik/rest_api/welcome_wizard/raw_client.py +208 -0
- opik/rest_api/workspaces/__init__.py +2 -0
- opik/rest_api/workspaces/client.py +550 -77
- opik/rest_api/workspaces/raw_client.py +923 -0
- opik/rest_client_configurator/api.py +1 -0
- opik/rest_client_configurator/retry_decorator.py +1 -0
- opik/s3_httpx_client.py +67 -0
- opik/simulation/__init__.py +6 -0
- opik/simulation/simulated_user.py +99 -0
- opik/simulation/simulator.py +108 -0
- opik/synchronization.py +11 -24
- opik/tracing_runtime_config.py +48 -0
- opik/types.py +48 -2
- opik/url_helpers.py +13 -3
- opik/validation/chat_prompt_messages.py +241 -0
- opik/validation/feedback_score.py +4 -5
- opik/validation/parameter.py +122 -0
- opik/validation/parameters_validator.py +175 -0
- opik/validation/validator.py +30 -2
- opik/validation/validator_helpers.py +147 -0
- opik-1.9.71.dist-info/METADATA +370 -0
- opik-1.9.71.dist-info/RECORD +1110 -0
- {opik-1.6.4.dist-info → opik-1.9.71.dist-info}/WHEEL +1 -1
- opik-1.9.71.dist-info/licenses/LICENSE +203 -0
- opik/api_objects/prompt/prompt.py +0 -107
- opik/api_objects/prompt/prompt_template.py +0 -35
- opik/cli.py +0 -193
- opik/evaluation/metrics/models.py +0 -8
- opik/hooks.py +0 -13
- opik/integrations/bedrock/chunks_aggregator.py +0 -55
- opik/integrations/bedrock/helpers.py +0 -8
- opik/integrations/langchain/google_run_helpers.py +0 -75
- opik/integrations/langchain/openai_run_helpers.py +0 -122
- opik/message_processing/message_processors.py +0 -203
- opik/rest_api/types/delta_role.py +0 -7
- opik/rest_api/types/json_object_schema.py +0 -34
- opik-1.6.4.dist-info/METADATA +0 -270
- opik-1.6.4.dist-info/RECORD +0 -507
- /opik/integrations/bedrock/{stream_wrappers.py → converse/stream_wrappers.py} +0 -0
- {opik-1.6.4.dist-info → opik-1.9.71.dist-info}/entry_points.txt +0 -0
- {opik-1.6.4.dist-info → opik-1.9.71.dist-info}/top_level.txt +0 -0
opik-1.6.4.dist-info/RECORD
DELETED
|
@@ -1,507 +0,0 @@
|
|
|
1
|
-
opik/__init__.py,sha256=AzbsmVNIoE5Kwp3uyc2cNjeZV70BPwUrll9emvwrk7k,1295
|
|
2
|
-
opik/_logging.py,sha256=59NbtFp3Jc_hX_gL6oYicucrH9bnX9I9kl6EKD0u8dM,3104
|
|
3
|
-
opik/cli.py,sha256=qgZsvQFKyw1iaxOdwDvBagmTqWiBV6ftqw0RL36HVmE,5609
|
|
4
|
-
opik/config.py,sha256=T-rSeo5nMuEftu06c2YlkCA0FsF7lLP7mNw3HliiD0c,13744
|
|
5
|
-
opik/context_storage.py,sha256=uU5yghqvInwriVAssAZSCBjuau5DTAq5rlTXN1iVNrM,2759
|
|
6
|
-
opik/datetime_helpers.py,sha256=tjx_dH6k1198WpFWoKedMF5ugS35YFwi4JxOI49qnOA,221
|
|
7
|
-
opik/dict_utils.py,sha256=qOGiTwPuXzGocGbUzg36ESZmS9EShIaSALCxslAuHsA,2291
|
|
8
|
-
opik/environment.py,sha256=2qzbJHRUKUpZkb0TpaNz2FS8q_5quzsyqqFkQHzKC44,2855
|
|
9
|
-
opik/exceptions.py,sha256=1zdupdw5LMm7VkKo4XfF0qo_FadfLC0Zuv3UXvD6neE,1252
|
|
10
|
-
opik/hooks.py,sha256=XD--xaavevyCShal5X51gyeHPhOYCxIilyasKOQ1ZBM,387
|
|
11
|
-
opik/httpx_client.py,sha256=cyhHIJYvif1HoAm6CjFFYCrEJjzMHfStbGnXK8QMQ4k,1493
|
|
12
|
-
opik/id_helpers.py,sha256=G3YVZVsfnHg70FEYXCZ1LTDyHOrmjpl4Pdd2BVDgxO8,1246
|
|
13
|
-
opik/jsonable_encoder.py,sha256=PrYu091gIzuX9RhalILApSzw4NwVu9IqHwMQDZcY-HY,3027
|
|
14
|
-
opik/logging_messages.py,sha256=KwPXEaDOlNgbllfUoDvjq50Zi4qQXSKkwT_ij79rSas,2978
|
|
15
|
-
opik/opik_context.py,sha256=5tNkeSN7dWn6FU5FcmJsgkbMwUw_FNEch6afiyx3g98,5443
|
|
16
|
-
opik/package_version.py,sha256=Yd6nr3cEzJQl3ChSVBP6Qt0EEKMC6OWpt7FTiL5_0R8,270
|
|
17
|
-
opik/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
opik/semantic_version.py,sha256=u7VMQcberN4S6gTaMqoOKhTjxDKyxnrMhsYxP7XbTqU,7226
|
|
19
|
-
opik/synchronization.py,sha256=DYiz8pf814KuTNLJ0Ub6cw4Sx2AayXodcT1GIfOAYIE,1900
|
|
20
|
-
opik/types.py,sha256=Wef4cmhP-aD94A1ebOAIzyYeTAXI9y5zF3Ul0hi6S_o,2386
|
|
21
|
-
opik/url_helpers.py,sha256=-1vDYEhxOIO7vHkDbkPYYc4KO8ZqsObAQY8MhUZB0Xs,2661
|
|
22
|
-
opik/api_key/__init__.py,sha256=4itT83VvTCHZSTd3W_TWpCTJUBjMbhLXu9B-HJ2B_lI,567
|
|
23
|
-
opik/api_key/base64_helper.py,sha256=Mu9tDbm6qhkO_5EnrI2skIXZKllueYj61E_Xe7FbgZE,993
|
|
24
|
-
opik/api_key/opik_api_key.py,sha256=jk58kXDJrp7eV6MUUGu4kapHHlQ5URbEhRXbNzff4ow,3136
|
|
25
|
-
opik/api_objects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
opik/api_objects/constants.py,sha256=d4GdHNj7erGM4eOefPgjxDdb5UmCFX7lVc6ERIy3hb4,206
|
|
27
|
-
opik/api_objects/helpers.py,sha256=GW_K0-CL1fJhPT58t_illYxIl23cb4jbQBwMJTnJ7Bk,2147
|
|
28
|
-
opik/api_objects/opik_client.py,sha256=prejb8Ce5uvSAbLAOJ7WgZc4-GPJpncsxgyrfy8dKDM,38022
|
|
29
|
-
opik/api_objects/opik_query_language.py,sha256=SqZu2PnPv7ttWLjRdJTSXdTt9GTCWeiSYtq1KzUp0DA,10831
|
|
30
|
-
opik/api_objects/validation_helpers.py,sha256=OLu8PU_4nAA-XfR19Tevj5rBUgRsIlpJM3jgVUhTZlI,1700
|
|
31
|
-
opik/api_objects/dataset/__init__.py,sha256=avZ5v9Rp3MjYDTIVtI1kbdKd3XW-N5mEzLK5f9Khxyg,53
|
|
32
|
-
opik/api_objects/dataset/converters.py,sha256=0VVYzHXgr4VMEDzvRHtJ-310VaBkiHNXIfjMeCIa2eo,2994
|
|
33
|
-
opik/api_objects/dataset/dataset.py,sha256=Xqfp4kE1cPGglZ3wtV9BTLf8A2Kc-MscKbfC6p6nG6M,12445
|
|
34
|
-
opik/api_objects/dataset/dataset_item.py,sha256=2EKKUq779NsKY30Z4M-KemwUuKdQ4EbuNOuvW-WzMhY,1434
|
|
35
|
-
opik/api_objects/dataset/rest_operations.py,sha256=iSD1xmCqsI_eWyenjpecK_CruGWs9Q2e2iduh3zKe50,2428
|
|
36
|
-
opik/api_objects/experiment/__init__.py,sha256=8ii3wT0SPHQcT5qW6_-xpgvb7jY3njke9nzifzDjShg,212
|
|
37
|
-
opik/api_objects/experiment/experiment.py,sha256=8xBZoAqJcxjC_xR7Ks-jkHwvPGnOsvIk1SUblusXnEA,3774
|
|
38
|
-
opik/api_objects/experiment/experiment_item.py,sha256=276OcRwSVPGC6SprFllT6DfwPUUMWGGjIQCXgutcb-I,1487
|
|
39
|
-
opik/api_objects/experiment/helpers.py,sha256=QVP7YShpVgesauMD3GxIymPoX5VnDr16dqIgp-aaMiU,2120
|
|
40
|
-
opik/api_objects/experiment/rest_operations.py,sha256=BKftbODZRALlU0MORCUDJ69SQxbGLsGkS8oFFpaiIME,1314
|
|
41
|
-
opik/api_objects/feedback_score/__init__.py,sha256=W1zAZuAQ6RaZCBe-BhpeFp3XeR8w6xrli5kL1Oh_PME,133
|
|
42
|
-
opik/api_objects/feedback_score/converters.py,sha256=-0WCSy2JxtXBJi2xhS2w6Ssr4WLk7IDGFYLAF2h0vNQ,694
|
|
43
|
-
opik/api_objects/prompt/__init__.py,sha256=g1C4cgshS-mhx624e65iR_j5xBYNTpUpKU4KFmFrOGA,56
|
|
44
|
-
opik/api_objects/prompt/client.py,sha256=d3YVRBR2qkef_2QtK1O6FL_PxXhs2v_jxsSTa9ZCLOA,5145
|
|
45
|
-
opik/api_objects/prompt/prompt.py,sha256=94vu5pO2yRnHMryX31D1Vy268DnIwgC5Pv2Zq22Y9gI,3621
|
|
46
|
-
opik/api_objects/prompt/prompt_template.py,sha256=u51gktnDjYTiI7R83NyMg1lw8witKjQlAM6xBCmViP8,1095
|
|
47
|
-
opik/api_objects/span/__init__.py,sha256=Zp32wDuHEvwTVKXzhWS539-mAbKa1vUH7A0-RkpyPsA,171
|
|
48
|
-
opik/api_objects/span/converters.py,sha256=aofNE7yl_pC-b2rgriQZNmIkEy0l-wKMmLzNMqk5ISw,1227
|
|
49
|
-
opik/api_objects/span/span_client.py,sha256=GnVrXyf0_EMTK26EPMh5KvVPWXLCUJMTLQRKOGM3L-0,12305
|
|
50
|
-
opik/api_objects/span/span_data.py,sha256=WQVVEz69pfgylpOvJ7YmByNwS8DIF_mZ6FB2YkciHIw,3335
|
|
51
|
-
opik/api_objects/trace/__init__.py,sha256=LK-Xwp6XfL9GnF4-ah8j4ZWLf4e0Y9zVDl_rdY-4FA0,196
|
|
52
|
-
opik/api_objects/trace/converters.py,sha256=gs99vtUTy6IuBUZW4EjSCg1de0193UoMvYIJvs6d-yw,1050
|
|
53
|
-
opik/api_objects/trace/migration.py,sha256=5bwrz6eT-GpmNEN4qgFiGL4q7FQ_LpGYzc8ErBlYQnI,1862
|
|
54
|
-
opik/api_objects/trace/trace_client.py,sha256=7DYZ_NtUH6J_wqypySuA7vp7HDpCOEloojoEup1MugU,9087
|
|
55
|
-
opik/api_objects/trace/trace_data.py,sha256=KgdasgcbwAjqjm-59yYnfnQcJazFyckx8RJSfrZ2jCU,3110
|
|
56
|
-
opik/configurator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
opik/configurator/configure.py,sha256=dC90QHk8v0jam4n3yXA6hcNYgyt6ArYFpmTnDmBfwo4,18972
|
|
58
|
-
opik/configurator/interactive_helpers.py,sha256=KI8xAAamRdPUc4LxXauQeP6iPdznw8nwG_2iGgW18hs,3865
|
|
59
|
-
opik/configurator/opik_rest_helpers.py,sha256=UHqWW9z8YhLnf8CG_th5--0eby7xRpEsV-iF9yAmxhg,3355
|
|
60
|
-
opik/decorator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
opik/decorator/arguments_helpers.py,sha256=IipnhTdfEIQpkKGNOfc_2p1KTGFm4CkIwylRDuLoRqA,2784
|
|
62
|
-
opik/decorator/base_track_decorator.py,sha256=X3LGHkVh1u_Ie2NWxUenr4rdKjXlbxuTBnQIRGmE9SM,19173
|
|
63
|
-
opik/decorator/error_info_collector.py,sha256=pFNKq5EPUtZgVwCXRM_WK1BzJsDQ8XCDeeX6OtgESq8,420
|
|
64
|
-
opik/decorator/generator_wrappers.py,sha256=hbEPxMVDCqE8aV2WLDQ0q7hVlaNxtWdsvpGZU4Bocyo,6518
|
|
65
|
-
opik/decorator/inspect_helpers.py,sha256=bJnz5eDtk3ZIQYzdNWFpfoBUHZxZrYDUXwOb_0Yw-wg,1079
|
|
66
|
-
opik/decorator/span_creation_handler.py,sha256=CndFNk6odDxt31GYOwhN3Z5pSW9uSfEXiZR-HxgP8q8,3510
|
|
67
|
-
opik/decorator/tracker.py,sha256=_AB-vJpslm5AOtcXaPCXRcBBu5lGDlfOpQ5lQyqPlR0,2243
|
|
68
|
-
opik/error_tracking/__init__.py,sha256=XJebHyX2IqqNdM6cb-MkaGCCTojb-FJbmf6lqQMVqaQ,232
|
|
69
|
-
opik/error_tracking/api.py,sha256=Lap7m0x8Wy9rQ47e-JTAwUYO4_sziNPhd7hYG0GoL_I,1365
|
|
70
|
-
opik/error_tracking/before_send.py,sha256=u4L3YqLs7vUWVTXEVb4-TtGQ4I6ksBHjOlqzNCKm0G4,1684
|
|
71
|
-
opik/error_tracking/environment_details.py,sha256=f2vnpdvejlKG9o-HEl7EFNtvyNcfb1KcjtVyDnJTprw,1691
|
|
72
|
-
opik/error_tracking/logger_setup.py,sha256=FvXEzqDWWTgQxRd92orKRHgYTCRJnp8UxA21wa61XUE,1279
|
|
73
|
-
opik/error_tracking/shutdown_hooks.py,sha256=41_S92KhapekOFbEjaTv9e2z2LxGjaiGUHw7OBEx6fo,1150
|
|
74
|
-
opik/error_tracking/types.py,sha256=DIhCVkcn2AorYB4ktW_7U7udNOuB-jRW6BWW_VzYXCg,75
|
|
75
|
-
opik/error_tracking/user_details.py,sha256=K_sdiKfTSeMJHc3FbIgA0mPwOd1vKMYG0RLXX_s3hHk,1019
|
|
76
|
-
opik/error_tracking/error_filtering/__init__.py,sha256=VDF6GDXh-oRz-zZuIJfW2oUzOfz3-JugcWk57LIp6Hs,100
|
|
77
|
-
opik/error_tracking/error_filtering/event_filter.py,sha256=LU1DJ9RrBNX_j0t64qYeIvBs_TJ1NfTmJ2tsmoaFQKM,174
|
|
78
|
-
opik/error_tracking/error_filtering/filter_by_count.py,sha256=vplIt-1_xG8M_pOQWOetVfLVfh6Yq-uks-Puqq3RJeQ,591
|
|
79
|
-
opik/error_tracking/error_filtering/filter_chain.py,sha256=LZc_EN8HjCpwAPpuuR2ObMP3d7Ydu7cF9nVxLKJSQJM,606
|
|
80
|
-
opik/error_tracking/error_filtering/filter_chain_builder.py,sha256=05EYj97UFFSdBpXmCIOpgWWa008VJHD9_pZd2ZjLH7E,669
|
|
81
|
-
opik/evaluation/__init__.py,sha256=9P2K5V0zAEQjC9tmwJuBemG19UxrfJVIlI-W5Xva1Ts,136
|
|
82
|
-
opik/evaluation/asyncio_support.py,sha256=PgEiRj9Oy_feQk2ETYbN4Bmfta5JtQc90d6ORMMI4W0,1551
|
|
83
|
-
opik/evaluation/evaluation_result.py,sha256=vaE57axrrE85qFJc9p6JCWGw1aymp8m7-7NbwPZeCIg,235
|
|
84
|
-
opik/evaluation/evaluator.py,sha256=rDttPh144fhgsIQMb6vMyMqRiKHh-jy1XHF0NXQ7b5s,13119
|
|
85
|
-
opik/evaluation/report.py,sha256=58gsh2wF_NwVZD2L4M2KaZaiB-tFmJ_A20P28MOLFgs,3413
|
|
86
|
-
opik/evaluation/rest_operations.py,sha256=s49xlQPJuHOBLrFUToQWy7bXMQG4UcSoaS_2-nIj-a8,3044
|
|
87
|
-
opik/evaluation/test_case.py,sha256=AqN99Y2kfAMoXy6QINhrScvIKbz7spg9l8oFhgss7lI,199
|
|
88
|
-
opik/evaluation/test_result.py,sha256=QUhshMXdBLtQlr-ziHL8m_P1L0z7zoJ4idspJhAtRWs,230
|
|
89
|
-
opik/evaluation/types.py,sha256=-hS152TG5UkeMC7J3_5Elp2vQ5_5dB6XLm2mQv0GL_0,180
|
|
90
|
-
opik/evaluation/engine/__init__.py,sha256=VxBL8We13iKMZTJpv8uYDw8j-OR2Tf4hzKPrjMAPnE8,69
|
|
91
|
-
opik/evaluation/engine/engine.py,sha256=0oV9dAEAiTmGz0Juw0NTEH8SILv0fGC7GlIha5CUnBA,6839
|
|
92
|
-
opik/evaluation/engine/evaluation_tasks_executor.py,sha256=ZiBLr03YI4lhzKe1csPBQAHXOvLBvHR3onXkxtLSJVA,1153
|
|
93
|
-
opik/evaluation/engine/exception_analyzer.py,sha256=AZwvCO_NvE7sB0cgOzrkdwf8WBRK26SyYZvXStSKW_Q,429
|
|
94
|
-
opik/evaluation/engine/helpers.py,sha256=fPJnH0phq3zUquVxLbZnncJIEl17MaxZZjILLEav2eU,1341
|
|
95
|
-
opik/evaluation/engine/types.py,sha256=Kc4T_NTg9cwlb3p0KNOPFwfWqj2myQdAJQjJ1uABdHU,152
|
|
96
|
-
opik/evaluation/metrics/__init__.py,sha256=LV1eGMiqemwXb6sAIVcDsd5jb_ooXX2hUNxPGNWuZ3k,1166
|
|
97
|
-
opik/evaluation/metrics/arguments_helpers.py,sha256=OSDgJfeIZdG6wzi-honqKE38YtKUE0Q1psIoKcgANog,2829
|
|
98
|
-
opik/evaluation/metrics/base_metric.py,sha256=SiCqbdqXZGkrEqhmZNA0hXhTItE25PTTfIeF6FFPQKs,2024
|
|
99
|
-
opik/evaluation/metrics/models.py,sha256=hkgn4dr4H11t28aoOZ-1FYCnJQIlfCFluXLJM82PZRg,223
|
|
100
|
-
opik/evaluation/metrics/score_result.py,sha256=A17irniEmODypUYytRzmefk_XxQpbK9SFAXv3ur2Lwo,245
|
|
101
|
-
opik/evaluation/metrics/heuristics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
-
opik/evaluation/metrics/heuristics/bleu.py,sha256=eshbC52tWBKT7CP_cNJ-JpXHjyEkAq6QJBvZ7prCRNc,9807
|
|
103
|
-
opik/evaluation/metrics/heuristics/contains.py,sha256=T9orij2uT2c7a50KhmMOlcVmzMOEx5o5_KaGzltiwhQ,2196
|
|
104
|
-
opik/evaluation/metrics/heuristics/equals.py,sha256=5x8w392JQccy1ITFyWiynXrAnx1WrhY_btXKGeOWjdk,2162
|
|
105
|
-
opik/evaluation/metrics/heuristics/is_json.py,sha256=Cf6mWFJ43nEfUVGICQ3xY3qqaoD5bwmRgEqM7TDMYOU,1602
|
|
106
|
-
opik/evaluation/metrics/heuristics/levenshtein_ratio.py,sha256=5MO3p0LkJcxJ2v_wJOtqWQxjWCJsmwlfF-hLbCLA5Ms,2328
|
|
107
|
-
opik/evaluation/metrics/heuristics/regex_match.py,sha256=GhnETz_B6WLKkDJi56eQe_fX6GUOpcVMYE-7muzvf58,2024
|
|
108
|
-
opik/evaluation/metrics/llm_judges/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
|
-
opik/evaluation/metrics/llm_judges/answer_relevance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
|
-
opik/evaluation/metrics/llm_judges/answer_relevance/metric.py,sha256=k8KNIjYljOiV_StoPBe8tFV2PfC2uEWqzQkn-YGDFAs,7879
|
|
111
|
-
opik/evaluation/metrics/llm_judges/answer_relevance/templates.py,sha256=2Lq6DGTHJU3LK5mHShj6BvLmZWn4p9WUUhhUHMSQJ88,10714
|
|
112
|
-
opik/evaluation/metrics/llm_judges/context_precision/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
|
-
opik/evaluation/metrics/llm_judges/context_precision/metric.py,sha256=Eq5VtsauuYT0bJ7HAjQJgE734JIY_gOvNutZtynbvYw,5794
|
|
114
|
-
opik/evaluation/metrics/llm_judges/context_precision/template.py,sha256=chTDfaXnGHceAzmROwdiATN9F93H5WDmTubRUtsJ3-M,5495
|
|
115
|
-
opik/evaluation/metrics/llm_judges/context_recall/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
-
opik/evaluation/metrics/llm_judges/context_recall/metric.py,sha256=7ik7lvebkBTQXHG_4-CXpfbXjYqcw-ccOK7qF57ynDE,5720
|
|
117
|
-
opik/evaluation/metrics/llm_judges/context_recall/template.py,sha256=leUMP6Yzdrl0Nnf56QnSO2O6a9X0WEuYV4svuowC5pI,6063
|
|
118
|
-
opik/evaluation/metrics/llm_judges/factuality/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
|
-
opik/evaluation/metrics/llm_judges/factuality/metric.py,sha256=VvO2JEhSjS-wiV5Gj7qf491eFUgKLOXLJI7oLBzqkck,5354
|
|
120
|
-
opik/evaluation/metrics/llm_judges/factuality/template.py,sha256=ddLvU6nDbX2HZWwleLiEdPtjqUK4fJCYJSU-Q7MC7pA,5137
|
|
121
|
-
opik/evaluation/metrics/llm_judges/g_eval/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
-
opik/evaluation/metrics/llm_judges/g_eval/metric.py,sha256=SwEZkbbTf_kdvZ9uH2zxRy6RV9HtkmLsxu8ulN-k3zA,7303
|
|
123
|
-
opik/evaluation/metrics/llm_judges/g_eval/template.py,sha256=1e2-z3oNf4cePkiEC6WGoZFK5LfxjmJphgGsQ9bw424,779
|
|
124
|
-
opik/evaluation/metrics/llm_judges/hallucination/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
|
-
opik/evaluation/metrics/llm_judges/hallucination/metric.py,sha256=F_k5ABXSut32AZsXDq7N7ln6PXlc7EL6pNGE2PlFru4,5480
|
|
126
|
-
opik/evaluation/metrics/llm_judges/hallucination/template.py,sha256=XgRk10j6zSL36rutAJQOqJOXjbovDVtZFD3TY22jW40,4591
|
|
127
|
-
opik/evaluation/metrics/llm_judges/moderation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
|
-
opik/evaluation/metrics/llm_judges/moderation/metric.py,sha256=kPEuqJg4pGRocNWhbygrHRIcshSkTWQfH8kBUF8KLvc,4625
|
|
129
|
-
opik/evaluation/metrics/llm_judges/moderation/template.py,sha256=koRzQMgObckzatvD319eCFt_hNgj8bl5ikm3s4hkrns,2536
|
|
130
|
-
opik/evaluation/metrics/llm_judges/usefulness/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
-
opik/evaluation/metrics/llm_judges/usefulness/metric.py,sha256=5o0RGuowpPzot6hQPPO3KmVCkOiAouV8fZ3RnLrzdQ0,4628
|
|
132
|
-
opik/evaluation/metrics/llm_judges/usefulness/template.py,sha256=ikcZF_XFC3JHOz89iO5wSkwOKzdmnKURdQT2-ZmEXK4,1951
|
|
133
|
-
opik/evaluation/models/__init__.py,sha256=B80xX-ogNuGBz4WqXbbI1ghvJeKYgJN8TtGl3EW7LH8,155
|
|
134
|
-
opik/evaluation/models/base_model.py,sha256=B-qgb6i7JjKCNy4upyCk95GnoVt4fXzcCCP3f9sVOfI,2476
|
|
135
|
-
opik/evaluation/models/models_factory.py,sha256=MQDg08WxV2aDFx0BL4B636QIz8_lQAeVwlbCKCLZIOA,379
|
|
136
|
-
opik/evaluation/models/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
137
|
-
opik/evaluation/models/litellm/litellm_chat_model.py,sha256=NB5On50Y5Q-I9tIWMpccT1r891mMvnBK3AuPqYN3Z8g,8883
|
|
138
|
-
opik/evaluation/models/litellm/opik_monitor.py,sha256=aRgaSnlXMGHb5XYPsf27EV9tXu2iJNCE3x0j6KeoVnM,2688
|
|
139
|
-
opik/evaluation/models/litellm/warning_filters.py,sha256=TdEffDdPoO97p5dQcS3310yYcLEYqwrtDjIQbn4xIUM,969
|
|
140
|
-
opik/forwarding_server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
-
opik/forwarding_server/app.py,sha256=9oa7BWpV2NY4dAmuCLbar6BQhexOSrBbPn4e_l85LYA,9864
|
|
142
|
-
opik/forwarding_server/utils.py,sha256=3i4epnaYopelyF7X_Y1vRPDYPjWs43fDqUei0PVnRDI,3107
|
|
143
|
-
opik/healthcheck/__init__.py,sha256=3lDte6c3V4qVzG26e86E63zJCe1eAGS6hrf-ITz1vSM,1988
|
|
144
|
-
opik/healthcheck/checks.py,sha256=3lWOdoA8A7JdifOuQufYsWUUp1Sscz49k_orq_CTg8I,1077
|
|
145
|
-
opik/healthcheck/rich_representation.py,sha256=GuMfN9nOihvS7j4_4omLlENojUdTI0IRidkNYrCDfSo,3326
|
|
146
|
-
opik/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
|
-
opik/integrations/aisuite/__init__.py,sha256=3S9H8Yqw8tZrCAo9NGIwrQ4kwwmFScMxzc7QT5MWrjU,70
|
|
148
|
-
opik/integrations/aisuite/aisuite_decorator.py,sha256=8sWzfkh8d3zEvQr9UOfJHRnDyseZVpATnUYvfCWhH60,4963
|
|
149
|
-
opik/integrations/aisuite/opik_tracker.py,sha256=s30QcfeGOyJ71gJDPiX9OqXiL6dq7IcEJEGVsWDstU0,1082
|
|
150
|
-
opik/integrations/anthropic/__init__.py,sha256=9Yxpd0-xcY7AXC5X_9tyZ1MtX5_t7F4cxHF4_ptPY_M,74
|
|
151
|
-
opik/integrations/anthropic/messages_batch_decorator.py,sha256=D068ReM9aGWo1i_7rX_l8_jT8S2gqN1-lWmNIbezidg,397
|
|
152
|
-
opik/integrations/anthropic/messages_create_decorator.py,sha256=scMPX029FpsaoIE45okv76MwsQAXkrIeUGpGSjG7Y7Y,4800
|
|
153
|
-
opik/integrations/anthropic/opik_tracker.py,sha256=Wlzi47qH1sNMjnQNBKP8i4T5Negsmn5OI7Dm1bBbKvo,3982
|
|
154
|
-
opik/integrations/anthropic/stream_patchers.py,sha256=srTu8IidcbB7qk5-HrZL4vI95418Cs8P4XFv9XWstIQ,12326
|
|
155
|
-
opik/integrations/bedrock/__init__.py,sha256=vIRKoazn-BZbJH98GfYFeUtn9mr2edcFtEt1mYOcFPo,69
|
|
156
|
-
opik/integrations/bedrock/chunks_aggregator.py,sha256=-qpZOmpp79PGOEr7LWohw1jE2D3Jp1pO6AJy9Vvj0QM,1962
|
|
157
|
-
opik/integrations/bedrock/converse_decorator.py,sha256=Cvs5U0SG2Tc9d0Pofr4qU9B2aTk1TFC8m1bdJCHtgHM,3836
|
|
158
|
-
opik/integrations/bedrock/helpers.py,sha256=xRvMIkEbSogJSCSyUxxQzLt7ZN9yjwLNmgLr6HDtgX4,188
|
|
159
|
-
opik/integrations/bedrock/invoke_agent_decorator.py,sha256=vddkeeolqwGlQRoKW9RbV56790QBFAUDJxAD6YAB8mE,3459
|
|
160
|
-
opik/integrations/bedrock/opik_tracker.py,sha256=WqJu4atV9FE8XLzCuAJDyQm8j85H0r_KO2jWfIkdBLo,2284
|
|
161
|
-
opik/integrations/bedrock/stream_wrappers.py,sha256=PZCB7q2tBxb73BoL7nH5QxaDAEUPYpp01TKOh1XWISo,1546
|
|
162
|
-
opik/integrations/crewai/__init__.py,sha256=llM1Gq69xOhl_s0Z0XIC8xPHnIFKnoyb1bHSax3OIfY,68
|
|
163
|
-
opik/integrations/crewai/crewai_decorator.py,sha256=u7bITm0GgpR7OaTREF8pD1D690K49uMtPdeO8Ngh15w,6090
|
|
164
|
-
opik/integrations/crewai/opik_tracker.py,sha256=fWxrSCcPOYALWvD7IH74XdGKpbEK7CdyqMZbSE0nYvk,1357
|
|
165
|
-
opik/integrations/dspy/__init__.py,sha256=uj84RHuemNllWl1JIAmMOurhFeCHhMatNtL35HhIJUQ,63
|
|
166
|
-
opik/integrations/dspy/callback.py,sha256=4Limdy7ubwVGaN4uwd--phZL5v14TRdfgL-BLSFW8Ts,8402
|
|
167
|
-
opik/integrations/genai/__init__.py,sha256=FHxg7rTCifGSghBRDVHMGeAqgRaMgne8mfZ6Hshg9wA,127
|
|
168
|
-
opik/integrations/genai/encoder_extension.py,sha256=Ixb0LAoDzV-LKlHPX8G7Gjkw8bIUmsShcIAjUWAKpkU,692
|
|
169
|
-
opik/integrations/genai/generate_content_decorator.py,sha256=gZ06-5cpUc6Lr9YLRHT2_JGPx15B9VDEMY5KByN4W10,4873
|
|
170
|
-
opik/integrations/genai/generations_aggregators.py,sha256=TzHYBZjW6GrnkrkgdYWJFOVnAokAfcXzC0eLikX8xEQ,614
|
|
171
|
-
opik/integrations/genai/opik_tracker.py,sha256=vzycYmnG2sJH4OaY7G2GbtR1UbApS9y4LiZS1FxN5_4,2757
|
|
172
|
-
opik/integrations/genai/stream_wrappers.py,sha256=QE6bLU2WxQY3S2Ah2F3vNSsASLBLGIYobdKZmqEZ4dM,3218
|
|
173
|
-
opik/integrations/guardrails/__init__.py,sha256=wHMyMx1-EXh8K_xdVImTRN1KwAdXvbJDQEtDlqaQ0bo,81
|
|
174
|
-
opik/integrations/guardrails/guardrails_decorator.py,sha256=Jd8ffl4kiDOcaXhaU9CwfJsrQXBVxCjsuQmfP92ynKc,2520
|
|
175
|
-
opik/integrations/guardrails/guardrails_tracker.py,sha256=Vnjv9xrlAuNl7NIUoml8bWihnkD00YL5-i-L_4Z7T5c,1091
|
|
176
|
-
opik/integrations/haystack/__init__.py,sha256=LcPV42joJx3X2VCJzxYiPjsqyyrNwxlPshcwnmkdrFc,71
|
|
177
|
-
opik/integrations/haystack/converters.py,sha256=3111u9d1nJ3D4mxbCRR7CKn81oHqFtLcxTP1NR0pmyI,926
|
|
178
|
-
opik/integrations/haystack/opik_connector.py,sha256=esieWAp8L7nYcWvRggGGs1nPWLNbmScujOs4oaRya6Y,5341
|
|
179
|
-
opik/integrations/haystack/opik_tracer.py,sha256=LhM6KzbvmU_jdUowzNvwrSIR6tLydoBJgHg_GUSZ6dc,9295
|
|
180
|
-
opik/integrations/langchain/__init__.py,sha256=Q6EMnBUSe9rwoQbpPzYkzhOkKKUxyjBwq-ui8I4Bn2Q,62
|
|
181
|
-
opik/integrations/langchain/base_llm_patcher.py,sha256=JVS7SA7ewiS968zdzhgkc_KeFjgmVeJhMQ8cXHfSQJ8,721
|
|
182
|
-
opik/integrations/langchain/google_run_helpers.py,sha256=zjHu1l-rHtbQRhfWPEZMrGzdC6YCYTqtWlCdX12dw9I,2236
|
|
183
|
-
opik/integrations/langchain/openai_run_helpers.py,sha256=ItML5g9q5pRYWYSSiVJtK19qqx_rzDMNUXJ4aph3lIk,4413
|
|
184
|
-
opik/integrations/langchain/opik_encoder_extension.py,sha256=AF9cgZrj2tMBr3H4BFmoOsOu_jAVyS5eB4npOp5Immk,373
|
|
185
|
-
opik/integrations/langchain/opik_tracer.py,sha256=MMBwtdqk0ByfocFX8CURXaRhrfvggNLALsexV_BJ02g,13080
|
|
186
|
-
opik/integrations/llama_index/__init__.py,sha256=_XTf-7078WHlMylgBs0pp7-rf90W-3pU0voi6BJz3M4,89
|
|
187
|
-
opik/integrations/llama_index/callback.py,sha256=d-smQ-yd63cntCAX8HmjRPM66z0uIOOZw-gK9QMyIos,6379
|
|
188
|
-
opik/integrations/llama_index/event_parsing_utils.py,sha256=QtpGrZQSy2j_msGeaJg6IbtI6DqVuO2SQisl7GsbQkg,5628
|
|
189
|
-
opik/integrations/openai/__init__.py,sha256=f6SqadPPj0QpMoUoYkxjUxvwSUposIBuexsktOofT5s,67
|
|
190
|
-
opik/integrations/openai/chat_completion_chunks_aggregator.py,sha256=WmCq9b07ZvxZLFhDVOyThTkLfNTrYA_iII-XwKABFus,2246
|
|
191
|
-
opik/integrations/openai/openai_decorator.py,sha256=XW4WSRDLqcleikcxr8IONIMJr2hQ5JwM4duhma_Lzd8,5989
|
|
192
|
-
opik/integrations/openai/opik_tracker.py,sha256=HHdylWzTPEU-tU8Krx9XWa-VBmauY33IyqmndpMyXL4,2120
|
|
193
|
-
opik/integrations/openai/stream_patchers.py,sha256=QoGobJs6846bQejzIKnxb2HRXDbH0iD21tz4Ke_sR2U,5028
|
|
194
|
-
opik/integrations/openai/agents/__init__.py,sha256=IQLssf69eiMPrkT9MuKX3XjsHsd-c2qrx6Rw1RSg8do,93
|
|
195
|
-
opik/integrations/openai/agents/opik_tracing_processor.py,sha256=QZ8kMrvtePF-qGFC1QeyUwG87kTUHvrcXlhYT7RXyds,2816
|
|
196
|
-
opik/integrations/openai/agents/span_data_parsers.py,sha256=0ws409dGNDr-0O7_mLUBHX-MWvUfEvCW-U-cQGFZukw,4202
|
|
197
|
-
opik/integrations/sagemaker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
|
-
opik/integrations/sagemaker/auth.py,sha256=o6w6D8wBDYBr3myLCuRks1ZLU-WBwmr7KxvpSLHpRwQ,1141
|
|
199
|
-
opik/llm_usage/__init__.py,sha256=dnUyG1xdrGIkQugmKXVsl83evYVdJlv8OEPYq7oFJmg,379
|
|
200
|
-
opik/llm_usage/anthropic_usage.py,sha256=bAGcLZ0jfSKqdoDyizJntqOi4dXbt7WD-82J0Nx6WVU,906
|
|
201
|
-
opik/llm_usage/base_original_provider_usage.py,sha256=1jP04Bralqqxj-yuiABBIi-w13mO6WeQpIgNIoTydao,1107
|
|
202
|
-
opik/llm_usage/bedrock_usage.py,sha256=3T8Mja6a0reicZePxGgv6LvaTk8nmsIjq5MnI32hAGY,657
|
|
203
|
-
opik/llm_usage/google_usage.py,sha256=oP3Nij6hyQiGLsyXsbO5jzMgaS6aIYp1KPS8eFnkAQA,1068
|
|
204
|
-
opik/llm_usage/llm_usage_info.py,sha256=ry1E7VjLbrBsukif8SirfzQAGEPiMX4O8XuCuXES_vc,326
|
|
205
|
-
opik/llm_usage/openai_agent_usage.py,sha256=AgcbZJAKB0IR4pTzn31PUiH34H7dOnxXDvSpIrDph4Y,3568
|
|
206
|
-
opik/llm_usage/openai_usage.py,sha256=GVgd0urqFpRgvzHrpJcevX7uNDSzLJVOVQkyG1IWsow,3726
|
|
207
|
-
opik/llm_usage/opik_usage.py,sha256=tlcXGF2w84uO4Ohd8S9_b2fhhhYQgGkaXLUde2FtHgw,4971
|
|
208
|
-
opik/llm_usage/opik_usage_factory.py,sha256=Qsuooj0Ll2FoBhx8CzHO1a71wM5e_4w8FDJUoFjK4TI,1625
|
|
209
|
-
opik/llm_usage/unknown_usage.py,sha256=gv_fo2Qsm-MpGpF-XA-_Ikp_PTEic2V2p5KFyoE7oM8,440
|
|
210
|
-
opik/message_processing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
-
opik/message_processing/api.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
212
|
-
opik/message_processing/message_processors.py,sha256=tGU2OT7jB0tMjb-MJSa50qM4Y01V1nolMtDji2zbg8Y,8499
|
|
213
|
-
opik/message_processing/messages.py,sha256=2ZmprMkipz4huHBkKUa003WBxqhNcSkpqBxiU6iwPLE,4299
|
|
214
|
-
opik/message_processing/queue_consumer.py,sha256=QuPdZEBMXNW3BdOTi21xxFXpVuui_DI9rzRRETVfdvU,1223
|
|
215
|
-
opik/message_processing/streamer.py,sha256=kmWragc-wPlbKTPMwQAqQt-DD5uOBuPoHj7ViTDf0w8,2465
|
|
216
|
-
opik/message_processing/streamer_constructors.py,sha256=c-icTwtYIAmRwu4Vy6VqbkPtXG2AUohcxLdJnWT3ONQ,1327
|
|
217
|
-
opik/message_processing/batching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
|
-
opik/message_processing/batching/base_batcher.py,sha256=0jWQIqw11jAP385-i4FRu_T3vPkLMVRU50aWeH6GvsE,1683
|
|
219
|
-
opik/message_processing/batching/batch_manager.py,sha256=a5fozFqzBhk1hgy7SQ2DWHrRpL2RuwkHiCgeXf61kQM,1355
|
|
220
|
-
opik/message_processing/batching/batch_manager_constuctors.py,sha256=-Ide6c6n9DlAlr7Da0Z1ER1MbgqUq0mOFJKAiBbA7Ns,2373
|
|
221
|
-
opik/message_processing/batching/batchers.py,sha256=qqYYCg4u7ftJH3rcG_XtL05r0FMj8vMbDhXdza-vzds,3053
|
|
222
|
-
opik/message_processing/batching/flushing_thread.py,sha256=0g_Dg43aAueXiAkibojA0wpqVxqAN3yjzcbFA6pWCJ0,809
|
|
223
|
-
opik/message_processing/batching/sequence_splitter.py,sha256=yKwdWKB1lUC_vf4KpqECEfAZDInE80QfRZ3mVGIErJE,1723
|
|
224
|
-
opik/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
-
opik/plugins/pytest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
|
-
opik/plugins/pytest/decorator.py,sha256=TkTsZ6v9hlT7ZwJE4ov88p5a3mCK_Z6foW1sx2am-NI,4730
|
|
227
|
-
opik/plugins/pytest/experiment_runner.py,sha256=BOVFQuMTXQ1YPg2vIj_UplKQbILfnzQgvidO9VgQGRg,2908
|
|
228
|
-
opik/plugins/pytest/hooks.py,sha256=5_mXYVfBNhAJry8XMTQkm7ZML7vMKwDn7ozX94i_4D0,2701
|
|
229
|
-
opik/plugins/pytest/summary.py,sha256=a_tpsMXdTH7gO70OwI7iLS22U1JTWHmmE9oN8xV7_4E,1095
|
|
230
|
-
opik/plugins/pytest/test_run_content.py,sha256=uYJ_xIxBpNWaJqgNYCMGMmzOhC5t5OQmMTDbZ7v2YMo,410
|
|
231
|
-
opik/plugins/pytest/test_runs_storage.py,sha256=j1GSQmAiPBc080jjP0IsFVV5sbKZdwwjtvfBStn89hM,354
|
|
232
|
-
opik/rest_api/__init__.py,sha256=D2n5EtifLdEcCgoBOLzk9BCLOYZWKg6xhA-F4uAK2wE,13369
|
|
233
|
-
opik/rest_api/client.py,sha256=1Tvn4neQ1m17_PY5Rer-suGeDEl3Ib1nsQoh4C6KqCE,15714
|
|
234
|
-
opik/rest_api/environment.py,sha256=ZAucPFBlQ5g1vrxPMLEM6e79nXXzcBO8HUDi7bEcOFo,158
|
|
235
|
-
opik/rest_api/automation_rule_evaluators/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
236
|
-
opik/rest_api/automation_rule_evaluators/client.py,sha256=WsLdrvP0sIp3yOTGK8icnD7-IN_iXjmVeJNmTnZcTQg,43126
|
|
237
|
-
opik/rest_api/chat_completions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
238
|
-
opik/rest_api/chat_completions/client.py,sha256=3jwkcNy68KfnUktWtV9pZVQKbKZy1M-ewFIhGTrpmEg,12387
|
|
239
|
-
opik/rest_api/check/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
240
|
-
opik/rest_api/check/client.py,sha256=D2a6POzHdFL58_2pnWiSw76wdEhmPy6VdhZX7Lx_AGo,5114
|
|
241
|
-
opik/rest_api/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
|
242
|
-
opik/rest_api/core/api_error.py,sha256=TtMtCdxXjd7Tasc9c8ooFg124nPrb2MXG-tKOXV4u9I,440
|
|
243
|
-
opik/rest_api/core/client_wrapper.py,sha256=p46rCWyf-JzM7M_JWlrt34O74ly_vVoMcXIIlzTdEY4,2458
|
|
244
|
-
opik/rest_api/core/datetime_utils.py,sha256=BHjt_H3WVslcuPsr6qjJoVif_SsdLvFN0c43ABE5UiQ,1069
|
|
245
|
-
opik/rest_api/core/file.py,sha256=mUvNH6Wc-k2mSlXCJ9VoYzvgi7NcCkhTzlW2VXxSucg,2710
|
|
246
|
-
opik/rest_api/core/http_client.py,sha256=Wz6swfW0qdrpVNGEmf8HGdWdDTRq-0bAjsdV3xvbFxE,21004
|
|
247
|
-
opik/rest_api/core/jsonable_encoder.py,sha256=SHXw4G4n-f0IPgNkxj_-Fip3kN8NUAI-YrKxdZw8kl0,3662
|
|
248
|
-
opik/rest_api/core/pydantic_utilities.py,sha256=liuAupgAuWgblGNGTGrcMPtI9igorC8SSAcKShru6Bg,12295
|
|
249
|
-
opik/rest_api/core/query_encoder.py,sha256=8qYl5VPl1jU4cDF0X7oSU_DXjlVWY5ayigFBpNTMGOA,2150
|
|
250
|
-
opik/rest_api/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
251
|
-
opik/rest_api/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
252
|
-
opik/rest_api/core/serialization.py,sha256=1VIoFHrJZZgjx5kxsUnUDbgr2v66GFgMJ_J1mqexBXA,9643
|
|
253
|
-
opik/rest_api/datasets/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
254
|
-
opik/rest_api/datasets/client.py,sha256=SeMUBHpFrWwOePZii3whMj_NQD97f9LG0UoMfWqmL4Y,54373
|
|
255
|
-
opik/rest_api/errors/__init__.py,sha256=p-1o42L1MfebaM2k9Uau4COqaXHqB9KoYspgtEiFfRI,597
|
|
256
|
-
opik/rest_api/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
|
|
257
|
-
opik/rest_api/errors/conflict_error.py,sha256=kuH64BUWmaxAof_oRbJOScmKCboEHQnCuvDetKRaYxQ,262
|
|
258
|
-
opik/rest_api/errors/forbidden_error.py,sha256=oT6DYHhm6-oGpgHa-4SPLosvL0jp7EKODDxve0r2O8k,281
|
|
259
|
-
opik/rest_api/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
|
|
260
|
-
opik/rest_api/errors/not_implemented_error.py,sha256=H-Um7QJl_Um8LROqNo4QX9g5gi3mDTz3Q59qyI5f-6Q,268
|
|
261
|
-
opik/rest_api/errors/unauthorized_error.py,sha256=GpBO24Inb_Uf-AJs1FDj8-MqCPSKFW3ZrqABvBb0qfc,284
|
|
262
|
-
opik/rest_api/errors/unprocessable_entity_error.py,sha256=vd8X3DZR5hSzdWlO3yczFT6aGOvU_3LKp9P-UwSQNr8,273
|
|
263
|
-
opik/rest_api/experiments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
264
|
-
opik/rest_api/experiments/client.py,sha256=aCE48zmLY5O1VOJKIT2_iwVegNy4JbFmHwKstnwGQAc,41179
|
|
265
|
-
opik/rest_api/feedback_definitions/__init__.py,sha256=xZE-F79R4JHoeWMHuxpO2slKwChNocxS8hT43V8-0SM,169
|
|
266
|
-
opik/rest_api/feedback_definitions/client.py,sha256=yfAWgNsBVHB1dUSIPTRs4U7H5u3jvqa3nhAnH545vdo,20541
|
|
267
|
-
opik/rest_api/feedback_definitions/types/__init__.py,sha256=tMxKYMt4tIx9-xZAjivn5S7HNTotSO0pFbAUmeEg6p0,202
|
|
268
|
-
opik/rest_api/feedback_definitions/types/find_feedback_definitions_request_type.py,sha256=PunkzHpeCpIXoWoFg3kVeAs8BCLf7SuEKTMnQUCNHtU,192
|
|
269
|
-
opik/rest_api/llm_provider_key/__init__.py,sha256=NaoO09vCsqqSNZ9vHoL8nkY-4zYjadUi3YQfuI1wnNs,155
|
|
270
|
-
opik/rest_api/llm_provider_key/client.py,sha256=z0KOWyQAA-FiQBsDvF54YRJ2ww-lYlCHNHaQCIAV-zU,21864
|
|
271
|
-
opik/rest_api/llm_provider_key/types/__init__.py,sha256=YO69Hw7MgACmLi072yE20SiTM45CXvsT24JuET3-7og,181
|
|
272
|
-
opik/rest_api/llm_provider_key/types/provider_api_key_write_provider.py,sha256=AFEKdL5Vs1FFVNM1ietDX9wG0jGiMnt9RF20GAgPWWo,204
|
|
273
|
-
opik/rest_api/open_telemetry_ingestion/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
274
|
-
opik/rest_api/open_telemetry_ingestion/client.py,sha256=p6RGZC_gMTRLVTVANbfJhGFDCtDfF7M2etw1W1d3CzQ,3626
|
|
275
|
-
opik/rest_api/projects/__init__.py,sha256=Fi8jT9YdXMhuKEB9sKJBPUGbAEwYQyWfNv1mAOpeBoA,260
|
|
276
|
-
opik/rest_api/projects/client.py,sha256=gzmfnuwf2C9M_l95zzqTcJLSmhgsRT1UnF5kkBG5p8w,44251
|
|
277
|
-
opik/rest_api/projects/types/__init__.py,sha256=RWhBfTN_spndo6C5tG8_XUdq6ZzXUzlOCRz21iW22kA,343
|
|
278
|
-
opik/rest_api/projects/types/project_metric_request_public_interval.py,sha256=eLmzlI7HDeViu2moQND1fHp05B7Ob2slFrZMpLcoOUg,193
|
|
279
|
-
opik/rest_api/projects/types/project_metric_request_public_metric_type.py,sha256=dKX-dEYMBDiWjkXc7iU-jykd4s8pdUdLjKSrkmk5PA8,240
|
|
280
|
-
opik/rest_api/prompts/__init__.py,sha256=gLXrqrxb1f_o-YQSfcqfjwD7gQb8PA7FZcoo66yF5V4,131
|
|
281
|
-
opik/rest_api/prompts/client.py,sha256=izo43RJ7FVwSKqDxTBfaU98Dsu3OmZHD8x4S8HOLC6k,48175
|
|
282
|
-
opik/rest_api/prompts/types/__init__.py,sha256=ksLD236XgEZkck2kCdMFlJFnQGR1hxFtICOy3daehwY,143
|
|
283
|
-
opik/rest_api/prompts/types/prompt_write_type.py,sha256=KWml--cEos40UgR8dpoLydoiRMqevYayOcZFFfi7QNk,161
|
|
284
|
-
opik/rest_api/spans/__init__.py,sha256=jXt_e2Cm-hU3J77QGzZwvQsMa2GjK1m71-ss1tD81Os,395
|
|
285
|
-
opik/rest_api/spans/client.py,sha256=X5kjR2C823f_SUyhCN9UiJKY9QyDtbRslcCGwMsWMeE,77593
|
|
286
|
-
opik/rest_api/spans/types/__init__.py,sha256=K7w54HnmfwVmjOtSmMMy0Cqmwh9kJQz8se9gau84D0U,546
|
|
287
|
-
opik/rest_api/spans/types/find_feedback_score_names_1_request_type.py,sha256=FOlrolH8etHY13Eg8nZwaar4mcAZaTQcTZoz0vMWU0w,190
|
|
288
|
-
opik/rest_api/spans/types/get_span_stats_request_type.py,sha256=cx9Rg_ESnFKjejlFNDEDfMnjc-eF8TXHq-VZ2m0ERdI,179
|
|
289
|
-
opik/rest_api/spans/types/get_spans_by_project_request_type.py,sha256=_0mOEkSbxm8ih0Yq8wIQYtCw2qBRGwLM2wI32sddY0Q,184
|
|
290
|
-
opik/rest_api/spans/types/span_search_stream_request_public_type.py,sha256=ow_Y-KknDwykWLLXhmDPBrNXfERJp2tNz32pJaBXscE,189
|
|
291
|
-
opik/rest_api/system_usage/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
292
|
-
opik/rest_api/system_usage/client.py,sha256=7gZSTJ-JlORaxkF1wdr0FQyC5b-52Wx1cYiB0ycprj8,13226
|
|
293
|
-
opik/rest_api/traces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
294
|
-
opik/rest_api/traces/client.py,sha256=drmphNbOVNvEV0ZrdXHYVnKrOgbgR2IR6vmms8RIcoM,78518
|
|
295
|
-
opik/rest_api/types/__init__.py,sha256=7Co0mdsRY3ZxoG1eiR3EU5GzLVVM3I7o4pcwdX4L2TI,17757
|
|
296
|
-
opik/rest_api/types/assistant_message.py,sha256=rNq7zOdTTRbUzqt90pLE2hP3MzEdXIZ_Koe2TbM4yx4,990
|
|
297
|
-
opik/rest_api/types/assistant_message_role.py,sha256=IWT-LDNvFQOd4rlH1Fh2B8cqGg2tEv6-YNydNvMB5fs,201
|
|
298
|
-
opik/rest_api/types/auth_details_holder.py,sha256=mxThXlfOBdd92_jb_RkSRce_6W2u-i3TEg3XUghm6A4,146
|
|
299
|
-
opik/rest_api/types/automation_rule_evaluator_llm_as_judge.py,sha256=zRRlyCZpkxx1r9kspY_6sy5Qy9z07ImOZamuIc7JH4g,679
|
|
300
|
-
opik/rest_api/types/automation_rule_evaluator_llm_as_judge_public.py,sha256=G2QucfnqN_IswEpuhnzF2hEC-0h_PrAGVjVOxRhFaus,704
|
|
301
|
-
opik/rest_api/types/automation_rule_evaluator_llm_as_judge_write.py,sha256=RZF-uhQ1iEfzwBQRZbMQpdXGrqQLdYS0ojCLc4P-wk8,700
|
|
302
|
-
opik/rest_api/types/automation_rule_evaluator_page_public.py,sha256=qtLLjLPInLeHfZxKPkTRa8VBiWdIKAyG0FEf0X9E5IM,777
|
|
303
|
-
opik/rest_api/types/automation_rule_evaluator_update_llm_as_judge.py,sha256=ahQcPqkkiYCuJQXzAFKWpcsZocB-qR4VkENrA9tyQ-8,685
|
|
304
|
-
opik/rest_api/types/automation_rule_evaluator_update_user_defined_metric_python.py,sha256=pLlJa2nHNRygYsvchWWg6YPKS-kb2JHyOmNQWneKi-0,738
|
|
305
|
-
opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python.py,sha256=P7UKGmxEM1f0fwkU_bqxABHNyUKSwpVA08aF-Bw7HEY,732
|
|
306
|
-
opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_public.py,sha256=eYDJVu6Ll_A68hEz9Ts2yetMqoEyZurKzpGSP7HWL60,757
|
|
307
|
-
opik/rest_api/types/automation_rule_evaluator_user_defined_metric_python_write.py,sha256=dxdNwGRmuQ5e95LL5GkF_-vXC5PkkB8dGxvxh4i4Cyk,753
|
|
308
|
-
opik/rest_api/types/avg_value_stat_public.py,sha256=WWIRnmnCiLpsxQczs-Q9XdNxsvhFpc7Vrdkj2pxnPsg,610
|
|
309
|
-
opik/rest_api/types/batch_delete.py,sha256=0v1UYUmfouZaZOPJMcnXjOEGHWRA8WyloxBRclfABF8,588
|
|
310
|
-
opik/rest_api/types/bi_information.py,sha256=apBJXdNBMLa9NU5bo8LP7kysiL2-pD2-6RSVIp3Qs44,687
|
|
311
|
-
opik/rest_api/types/bi_information_response.py,sha256=OftqrKYW7vn_uad1lcX1JiBEGJ1H6_79AOGW5KxwA-8,685
|
|
312
|
-
opik/rest_api/types/categorical_feedback_definition.py,sha256=vSFwoJePOg58eT5knulFuRc-chT9XV16QQe9lV6h1kk,934
|
|
313
|
-
opik/rest_api/types/categorical_feedback_definition_create.py,sha256=JzPf_mwszePxx9FaApS4-j95XX0OijGHEBEUOD639xk,735
|
|
314
|
-
opik/rest_api/types/categorical_feedback_definition_public.py,sha256=ptIQ7CILQXUpANu6I2BM-96rurSV5M9yuBwCLMK9les,959
|
|
315
|
-
opik/rest_api/types/categorical_feedback_definition_update.py,sha256=b0GWzFx0ufZO8ZHVqm5O5WFkHcjLk69dqz1IeZFes18,735
|
|
316
|
-
opik/rest_api/types/categorical_feedback_detail.py,sha256=F2eib_DVU8g2Y6TiXw7Au83bnPlj_vKhjBdnA493X0Y,616
|
|
317
|
-
opik/rest_api/types/categorical_feedback_detail_create.py,sha256=6_TapNZT40SEemk0Fge46r7w6Q2kXh5rYaU5TOuoOXg,622
|
|
318
|
-
opik/rest_api/types/categorical_feedback_detail_public.py,sha256=LYKTuSsv5DQVJ55Lk55ICwbniENc7o2uGYUBCoF9Zj0,622
|
|
319
|
-
opik/rest_api/types/categorical_feedback_detail_update.py,sha256=CrpQWKaM56zRYDpRpEi4-XGYI4QctaRzDPNy1tGdo0w,622
|
|
320
|
-
opik/rest_api/types/chat_completion_choice.py,sha256=dX6S7As6d2fV_49C4gXnSHP2weHqDG5ZdRWlIJetWAE,825
|
|
321
|
-
opik/rest_api/types/chat_completion_response.py,sha256=au2TUoFfKE6prhfb-cfImVLgO7Um3gUM9z0En-htmh0,935
|
|
322
|
-
opik/rest_api/types/chunked_output_json_node.py,sha256=ozSKEnJJIz290SNJtx-C5MWiGRYDJsOzVDqeCss0gyA,742
|
|
323
|
-
opik/rest_api/types/chunked_output_json_node_public.py,sha256=2Tc3T_zIeRubl-gyCWgv1Ew81R_i2PyyS35bS5cBoog,767
|
|
324
|
-
opik/rest_api/types/chunked_output_json_node_public_type.py,sha256=t3-tK8sCbVVFT-auzNqv13Gy0-KWz-oaO7SJkCWbc5M,773
|
|
325
|
-
opik/rest_api/types/chunked_output_json_node_type.py,sha256=HvTRZk4m5rApnU7zBf51JDleETzwNc3FqrbahZ1V0sU,767
|
|
326
|
-
opik/rest_api/types/column.py,sha256=4vLZ0hMsSgOKxtEaJluA4RTTtwj18qitZ-MLsOMAGxY,1031
|
|
327
|
-
opik/rest_api/types/column_compare.py,sha256=eU4gewUXS6G-DLHbN2DWtXzkwO3aPLwRfQRpnUCFFRg,1060
|
|
328
|
-
opik/rest_api/types/column_compare_types_item.py,sha256=VDp7ShJAqsS1_OjCLU_gdK00l_cDHi7KMtn-DFBE8b4,210
|
|
329
|
-
opik/rest_api/types/column_public.py,sha256=eUY88tz6RIbPwBNNgZOAtt9j5bx4c_F4KL8hvAxMfkE,1056
|
|
330
|
-
opik/rest_api/types/column_public_types_item.py,sha256=jAXuRz85tAijKgJ-GXL2-uDBhbuE6ooKSKGfr5UWBzM,209
|
|
331
|
-
opik/rest_api/types/column_types_item.py,sha256=WwD9EmDqaqg8Y7l8LeXt9wgTOhWSL5HTG82vQRsEnfQ,203
|
|
332
|
-
opik/rest_api/types/comment.py,sha256=i7SPLvPevVr0_2cBB06fAVmLcOZ5ZcX2b0E5yzncNbo,832
|
|
333
|
-
opik/rest_api/types/comment_compare.py,sha256=tg-TQ5xVkoo7DykGtOvz5-OIgspRfVbcbEdecWrc_m8,839
|
|
334
|
-
opik/rest_api/types/comment_public.py,sha256=tgB2v4opyQe7Xsl5AQWSn6R4PNkTzf1tACBPDdTxilU,838
|
|
335
|
-
opik/rest_api/types/completion_tokens_details.py,sha256=JTFZFKF8Uzs69R6ju4Gnh_WsFdYOLLn4nYFkAfClf94,624
|
|
336
|
-
opik/rest_api/types/count_value_stat_public.py,sha256=1hh0xwTP9fJgSK8r5F9fwOsBFKc63pdwmHwcvm5B9bQ,610
|
|
337
|
-
opik/rest_api/types/data_point_number_public.py,sha256=tWe6SmR7NvpX-xm7W7ry2opy4nc1WryQjrgHiDI0tBs,657
|
|
338
|
-
opik/rest_api/types/dataset.py,sha256=JISJ9sKiNlpbkubfxjT60LcjX_UBgKsdVEI3wcG5i9k,1115
|
|
339
|
-
opik/rest_api/types/dataset_item.py,sha256=5qjFJegcbuR6fKShxUE6u90auOOTrEF6krOSYcTp1cg,1155
|
|
340
|
-
opik/rest_api/types/dataset_item_batch.py,sha256=Y-s73Ky-FwzkbFv8LzypjhKyqr5IcMhFGNao9KECVaM,897
|
|
341
|
-
opik/rest_api/types/dataset_item_compare.py,sha256=7QTHYgKecutzPVd_feG3MjrmQ5pjldCWDp3nOBKIOMw,1206
|
|
342
|
-
opik/rest_api/types/dataset_item_compare_source.py,sha256=p6hh8f7IOFeW4VLE8DOVwlP-m5uraUCe6INnuznzMnA,188
|
|
343
|
-
opik/rest_api/types/dataset_item_page_compare.py,sha256=-b8L6P6x8E0RxBbWDAx9M8gyOpUiK9TOVtT8CupRTak,916
|
|
344
|
-
opik/rest_api/types/dataset_item_page_public.py,sha256=0ZLQ6f7w9ICD0XOjskzZafOcDjd-m2IemrwMmL9P-bs,909
|
|
345
|
-
opik/rest_api/types/dataset_item_public.py,sha256=4TtjlAGCSOy3xum0_0GaFl8KG5_-Pn8xPJVb2MUBsuM,1199
|
|
346
|
-
opik/rest_api/types/dataset_item_public_source.py,sha256=t6TwZNXJmfeEmvK-cz1BtPkTOuUqZDznnWnjnbJOzkc,187
|
|
347
|
-
opik/rest_api/types/dataset_item_source.py,sha256=WNMshZFNNObwI3PtkDpzSxlDwKhUZ-UvlUZZrp4ZlgA,181
|
|
348
|
-
opik/rest_api/types/dataset_item_write.py,sha256=KTITvWUarcj9rdiOJzmVd-iU0_HpkuAhbQNOdYX2HQI,834
|
|
349
|
-
opik/rest_api/types/dataset_item_write_source.py,sha256=eDlY2ohGAQZBBC7nxDxfDFS1MTG6mBusP_oRDoFAIn8,186
|
|
350
|
-
opik/rest_api/types/dataset_page_public.py,sha256=ORvuVpq1nkdQ89kbN17ombzs827tpXdYZtz3vzaSzOk,789
|
|
351
|
-
opik/rest_api/types/dataset_public.py,sha256=gr2YSW996kfSoTk3aWZWa4rbdw7RghBUPGXOTIhlekg,1121
|
|
352
|
-
opik/rest_api/types/delete_feedback_score.py,sha256=00HzDf8Qvjg4FaeVsl8ah3VZ2rAemgbAyTu0IgOlxI0,584
|
|
353
|
-
opik/rest_api/types/delta.py,sha256=w2M0eymuC-wlQDCh6eROEWfxzVVpASeNkDDe7URdck0,865
|
|
354
|
-
opik/rest_api/types/delta_role.py,sha256=Hqx5Mo89NvSIW3N3MfGdeb-IOMLyOYlU2Qzo99GGTM0,190
|
|
355
|
-
opik/rest_api/types/error_info.py,sha256=NZu2-1rZ6D7pNt4Lyh0FqStYq_w8BLTJl4WcuMdEBEA,644
|
|
356
|
-
opik/rest_api/types/error_info_public.py,sha256=zv4ruTkUFkUTTNqBVehZ65Jtvuupw7XubdOYUPuMhBI,650
|
|
357
|
-
opik/rest_api/types/error_info_write.py,sha256=_nmMc7vAgyqLpmZoe_mbY00kXkdgQKLibBWhIFd7JTs,649
|
|
358
|
-
opik/rest_api/types/error_message.py,sha256=YqDgmlHtoi5jhEwRVZ0fle9rH1tPHGhOQ7FeWgBP4BE,683
|
|
359
|
-
opik/rest_api/types/error_message_detail.py,sha256=cu2xAfQiJqbjSnoSHKrQVCjzmMMPtUz_7McoDSCU4_M,689
|
|
360
|
-
opik/rest_api/types/error_message_detailed.py,sha256=FBzJNi4eMiOyNIgnSEohCmyf-vmSWlXTbX22UjT9ido,624
|
|
361
|
-
opik/rest_api/types/error_message_public.py,sha256=H0RKIsVNTrGcVQtIc-mBiEmUBCCAxB8-GqSzuV3nhMg,689
|
|
362
|
-
opik/rest_api/types/experiment.py,sha256=dtR-Ch7zoTP5B5-bNbMnpAeHAQSf5KGco_KIBaT700Q,1462
|
|
363
|
-
opik/rest_api/types/experiment_item.py,sha256=JJoBfp1AuyKif5mbxQp7Qxe2b1gwB9fPawuLQ7y6CyM,1214
|
|
364
|
-
opik/rest_api/types/experiment_item_compare.py,sha256=Sni6aLX9bQ80gGJuNkSifWsV4eFept6TBjlRdY0zDrQ,1294
|
|
365
|
-
opik/rest_api/types/experiment_item_public.py,sha256=2heCmxkTsK6VE4sDrbGbD9v3IufELWZOtG55geMVGHg,897
|
|
366
|
-
opik/rest_api/types/experiment_page_public.py,sha256=4KiVZvRMA1VxYlyIxkN9jXIvuuCLGVxzCFnb-Q4j2p8,801
|
|
367
|
-
opik/rest_api/types/experiment_public.py,sha256=jGJJukB0AEW0-oMKKl8PYN4Q2i1sEFYa3SFw_kyxDmw,1550
|
|
368
|
-
opik/rest_api/types/feedback.py,sha256=6eCVxNoWsHnPzFm8q162YlRVJbBo2qJxMpy0CGn7Oe0,2788
|
|
369
|
-
opik/rest_api/types/feedback_create.py,sha256=5bC9gp_W_1baaK4ZmmLyQBph5CVaKX_HNWo6eL1Gixo,1840
|
|
370
|
-
opik/rest_api/types/feedback_definition_page_public.py,sha256=P9he8eyys3DHKWWFZjl-m6WYp1LhiGCI0wditO94zRg,822
|
|
371
|
-
opik/rest_api/types/feedback_object_public.py,sha256=n2Um6AT0OE1SFFpexNvAgwELfAD6IqmrGfJ9skGoS_k,2892
|
|
372
|
-
opik/rest_api/types/feedback_public.py,sha256=BORWlojTklui_9hgWBG7995-nRVBm_zqkUaOvmeq3sM,2856
|
|
373
|
-
opik/rest_api/types/feedback_score.py,sha256=JIoA5BZDxFSODTyRcdUzzoUlpgfBHaLgx-IuMpc9Iuc,993
|
|
374
|
-
opik/rest_api/types/feedback_score_average.py,sha256=tVbPoncqNDWGeoOjkAtK6keNO52eTNT2ahuCF7qzFow,602
|
|
375
|
-
opik/rest_api/types/feedback_score_average_detailed.py,sha256=sX7I8pkfUwnlXF2kW-cPgOQ6VQfexL5NlpFp1cVVhVo,610
|
|
376
|
-
opik/rest_api/types/feedback_score_average_public.py,sha256=CBUt2fFlkrVsjugEpqeGx47G4MZiRE6y1eoTcEhj5c8,608
|
|
377
|
-
opik/rest_api/types/feedback_score_batch.py,sha256=ONnyYly6r-IYJJ5zAYoRrNpuGaKV76SZKf62rGUZyno,679
|
|
378
|
-
opik/rest_api/types/feedback_score_batch_item.py,sha256=BE_sJPl_vK2P4j59pj-8s4-4RYijVz5ovvgiJXas--w,947
|
|
379
|
-
opik/rest_api/types/feedback_score_batch_item_source.py,sha256=8ABt6Xbg39-e-oVdWlscOmIsD9G6IbCuAe-UeQR9rUw,189
|
|
380
|
-
opik/rest_api/types/feedback_score_compare.py,sha256=V3MxQygE-Qvz6L-uj_-WIWxFOkRdjrq7wmyplf52MUY,1022
|
|
381
|
-
opik/rest_api/types/feedback_score_compare_source.py,sha256=wwhGEaSJSB177Anacyzl-qSzAIvoKOVz9peEr2_ilUY,187
|
|
382
|
-
opik/rest_api/types/feedback_score_names.py,sha256=nX-c3feg-KLs72obtpmTNSnb9mua3tUM5vVIQr5A_aM,662
|
|
383
|
-
opik/rest_api/types/feedback_score_public.py,sha256=IEGi5VAV-QCrfj2NDO-9ma61RA8JfMbCbMYyLZ_Tc5Q,1018
|
|
384
|
-
opik/rest_api/types/feedback_score_public_source.py,sha256=Lz1UXxsi1hPzH1xQNd6zkiPKLpu7yL3hH53XIH6gTJI,186
|
|
385
|
-
opik/rest_api/types/feedback_score_source.py,sha256=32aZzua6Sb6HAdq2WXjiO2im85GgSgSDMUXM543AZ58,180
|
|
386
|
-
opik/rest_api/types/feedback_update.py,sha256=0Csq78SpWTUQgQMmlR1H0Qmr6G_jkFCMwSOItkRuX4o,1840
|
|
387
|
-
opik/rest_api/types/function.py,sha256=wuZ2Yd2RcPlRqEX8r244D9j2w5QGyesfHTFooamS4-U,789
|
|
388
|
-
opik/rest_api/types/function_call.py,sha256=6m-viLz-z93xfFjMFsO6cQPveopKNJKxUx8y1wPtyks,644
|
|
389
|
-
opik/rest_api/types/json_node.py,sha256=TshtIeZKr4JlnAfv2T-_yk0RuzTig4kOC7FMOBe9ZNo,137
|
|
390
|
-
opik/rest_api/types/json_node_compare.py,sha256=ytoTT2i5LE87G__ZzE2X4BQdXcVCiTEhu4y6FGMdhcU,144
|
|
391
|
-
opik/rest_api/types/json_node_detail.py,sha256=6VXmXA3ELI4rB6gLAvAyGiBiPLadvXbaKfzW32zh7GY,143
|
|
392
|
-
opik/rest_api/types/json_node_public.py,sha256=ydIpQ-bSh0lduIVpG4uY1tUkjEdxinWQAoW_tQTYIR0,143
|
|
393
|
-
opik/rest_api/types/json_node_write.py,sha256=jVLXqa581Ud3Ssv5Z86oQygidB2HgP7O58CvGlnypmc,142
|
|
394
|
-
opik/rest_api/types/json_object_schema.py,sha256=bu4y0ILLueccj3QkrZbqk3HkOiFWoL3FIiIes271apM,1200
|
|
395
|
-
opik/rest_api/types/json_schema.py,sha256=OS6aOlivWECMva4Cf_hhmDFlwNi0Dd9Xtku9Swt7Y2Y,889
|
|
396
|
-
opik/rest_api/types/json_schema_element.py,sha256=Pl6OkpWB_O1GYIxSmLe9sR1WqPoc2x2JGRVUVDHB4oM,606
|
|
397
|
-
opik/rest_api/types/llm_as_judge_code.py,sha256=SRxQYjwckLy9zv3GY8kinysFdLaIAo4rN3J51WtKMps,1063
|
|
398
|
-
opik/rest_api/types/llm_as_judge_code_public.py,sha256=KMJ52cs99tk5qU0eM-qKrdLfSjb_ltXZkYJOIRtPffY,1126
|
|
399
|
-
opik/rest_api/types/llm_as_judge_code_write.py,sha256=Q7LCQdey57zSdD4AtZrT3l9NODVB0C_DVr2XgzBMlVo,1116
|
|
400
|
-
opik/rest_api/types/llm_as_judge_message.py,sha256=O1RS2N_hrMgQorqM5vhVZT9D6i700DsLsQFCZcUUDiE,678
|
|
401
|
-
opik/rest_api/types/llm_as_judge_message_public.py,sha256=J8gE8mbKY45vnXu77JbrKce9pNFKlKjTHVDeZDTyhUo,703
|
|
402
|
-
opik/rest_api/types/llm_as_judge_message_public_role.py,sha256=Lmbxa5RDUSE-yqqhPH6MYAy4_D0OWMM7Rtpg3Jtd-o8,206
|
|
403
|
-
opik/rest_api/types/llm_as_judge_message_role.py,sha256=coftej8gPVMYXym_J0Tgt6wOGQUmYe5gayA6LtCKwFw,200
|
|
404
|
-
opik/rest_api/types/llm_as_judge_message_write.py,sha256=wA7QrNR2bFR3KXVUIExuvzo4ktIr-geScPZnKQ4wzxQ,699
|
|
405
|
-
opik/rest_api/types/llm_as_judge_message_write_role.py,sha256=4SXwCkntsj-9hIadR-O1s-6noau2bGh-yYqto_Yjd2Y,205
|
|
406
|
-
opik/rest_api/types/llm_as_judge_model_parameters.py,sha256=-wY2FxHiPfUvMW1i7v8_WD4bJ5n1r7bIPHAp97-_Qsg,613
|
|
407
|
-
opik/rest_api/types/llm_as_judge_model_parameters_public.py,sha256=-DqvhhdBUx32h24hZNvXSZmEwmv0EtIf9tHPSqj84fI,619
|
|
408
|
-
opik/rest_api/types/llm_as_judge_model_parameters_write.py,sha256=DDM_DnhtoPVeD1tZAERE5r66l2BqDB3gX2SIKwtb__8,618
|
|
409
|
-
opik/rest_api/types/llm_as_judge_output_schema.py,sha256=fhIFC-knI-7x4Gh93CZ_pqj0u3Avkn96W8oRFj4BFyg,717
|
|
410
|
-
opik/rest_api/types/llm_as_judge_output_schema_public.py,sha256=CPCdUjSxpuOYP-L9_b4xbikApKTCxvpzyk3_k-ahJ0I,742
|
|
411
|
-
opik/rest_api/types/llm_as_judge_output_schema_public_type.py,sha256=AR2RYbRRPXSobYK9bydsD4lvYq7apIGSQC1a4VlaotI,194
|
|
412
|
-
opik/rest_api/types/llm_as_judge_output_schema_type.py,sha256=kFVAN4Psl1MHvo71BvMgWwnzxtPNMuTYnX64q-vj_lk,188
|
|
413
|
-
opik/rest_api/types/llm_as_judge_output_schema_write.py,sha256=NQEE_TZlUhhCd7aVCu4Uz4UZCvLuljphZNU5DdZ0jeA,738
|
|
414
|
-
opik/rest_api/types/llm_as_judge_output_schema_write_type.py,sha256=rcDO7wHcrxDHtYr3TYrGCDAc9HSSJvYjbF14aCKFUgo,193
|
|
415
|
-
opik/rest_api/types/log_item.py,sha256=iPLa7Tn_bU1hki-T9SxiQsT4kXo59GZic2XPSJ70Up8,861
|
|
416
|
-
opik/rest_api/types/log_item_level.py,sha256=DJjmqHKNXDJ7ns83FQbHoDAXry6gHhtt5jHsMb7rW9A,185
|
|
417
|
-
opik/rest_api/types/log_page.py,sha256=Ja1IrlALzo49TN2PVlpMNaC0U3BT2LPJGRbzkbWA_nk,761
|
|
418
|
-
opik/rest_api/types/message.py,sha256=BTsy4ZOXXr8L2MGUnYVUauaVgmt7Izpri5fft-8jct0,136
|
|
419
|
-
opik/rest_api/types/numerical_feedback_definition.py,sha256=wfn4ADHQkMm1gdb6pmOr-TAph6EFhf2qwBdXZIZNaGU,926
|
|
420
|
-
opik/rest_api/types/numerical_feedback_definition_create.py,sha256=7a8L3tm33ISweG8SlEujTIOJCR7HSvT2tXUweVa29aQ,727
|
|
421
|
-
opik/rest_api/types/numerical_feedback_definition_public.py,sha256=GWyp0kBr0aTl6DkQX6gLMwzFWMl7euC403aMmUIbnuY,951
|
|
422
|
-
opik/rest_api/types/numerical_feedback_definition_update.py,sha256=200zFzc7fr2VMOaGdlbW-YZiyQKK6DsWCMCw3P86cVQ,727
|
|
423
|
-
opik/rest_api/types/numerical_feedback_detail.py,sha256=QWUH4IcXkO0pLuhJFERoA_qG33Aw4hjoT4Yzh33xioY,604
|
|
424
|
-
opik/rest_api/types/numerical_feedback_detail_create.py,sha256=Co8BDSGwmqXw7iAKGVQ1PrmvnLWHAVFCmj4o7_CO4Io,610
|
|
425
|
-
opik/rest_api/types/numerical_feedback_detail_public.py,sha256=MpshC9B56K96aKT-dZLxJN44FPOBtKpLHwcmnk12ILE,610
|
|
426
|
-
opik/rest_api/types/numerical_feedback_detail_update.py,sha256=7rTIr4aykhFQCaHAfIDriwuBXmOAT73AmP5ccr_znDk,610
|
|
427
|
-
opik/rest_api/types/page_columns.py,sha256=BJXenkE8lM0DmRf6xGZEPXZxSmN8-2onyJ4LF2qq0Ao,646
|
|
428
|
-
opik/rest_api/types/percentage_value_stat_public.py,sha256=szMQ6pQfqPAk2rhka4f-UdH1h91v5TzdINuJaoiGABs,695
|
|
429
|
-
opik/rest_api/types/percentage_values.py,sha256=5oqFCBdTcH-PKjmqKxbGR1qWUqzsb2zywALt5yUA-SY,972
|
|
430
|
-
opik/rest_api/types/percentage_values_detailed.py,sha256=jHyqu21cgZGgKx2EBDYNT4YhRhSTUjHy1f19zlKj0wU,980
|
|
431
|
-
opik/rest_api/types/percentage_values_public.py,sha256=R_3WGu7xYKTWn76rwRAN-AMGU4oRgx3XR9F_s3zjgEY,978
|
|
432
|
-
opik/rest_api/types/project.py,sha256=Ez8d9hTrCJzLONDBIIEcNMcq9aCDHjMRDnYtfAdmJ4c,1339
|
|
433
|
-
opik/rest_api/types/project_detailed.py,sha256=NdoZihhXAAP6XjDcNZweprzteEIx5yUfHIyndjABGug,1397
|
|
434
|
-
opik/rest_api/types/project_metric_response_public.py,sha256=W6y4xsPOjNj9bCqNi30QGvNXb4rtukQVRfDkUo_xiJw,1092
|
|
435
|
-
opik/rest_api/types/project_metric_response_public_interval.py,sha256=Q1vM3P-DjR0dWIOv627Nn3D5axUR0LOMe6AXoeaMZ6c,194
|
|
436
|
-
opik/rest_api/types/project_metric_response_public_metric_type.py,sha256=jay_emksfSQQpBnZpAbQlLFlXD4-ZKm82HuStTrKXMc,241
|
|
437
|
-
opik/rest_api/types/project_page_public.py,sha256=irYj1bhl3GUmzO92Op-v9IATlPADVa18rBJwbZf0mGU,997
|
|
438
|
-
opik/rest_api/types/project_public.py,sha256=RYZfUruX4CwRtJv3HKVSOLPOJKg1HNkr9SF3ZpYjzWc,946
|
|
439
|
-
opik/rest_api/types/project_stat_item_object_public.py,sha256=ojYGDmBUkieaXcgdwgmkrs05wyDY0vbEFfCetDFzCWs,2231
|
|
440
|
-
opik/rest_api/types/project_stats_public.py,sha256=TFiKsimCMBvFLOMqmAH5Qi6PkEfGSGWxkJ-4L9BSVCo,718
|
|
441
|
-
opik/rest_api/types/project_stats_summary.py,sha256=5DUfDF-fnmV7ijAgZqbT5GWefpxYkNGEPgO8Av5ES5s,708
|
|
442
|
-
opik/rest_api/types/project_stats_summary_item.py,sha256=5BcgCJCm3JyD9S8veDUrvs68rwTDzsvKiGlFzk0rBFY,1017
|
|
443
|
-
opik/rest_api/types/prompt.py,sha256=7hWi2r1EkhJjMYcUht4SJCaWgdifmUDp1ZkwamP2sOw,1277
|
|
444
|
-
opik/rest_api/types/prompt_detail.py,sha256=BYwJatxBt_85-gyy0todEXweQuCb_jhZoPxEIGJa34o,1048
|
|
445
|
-
opik/rest_api/types/prompt_page_public.py,sha256=xgmwz5LUIylg-CzlqGqszbSPDL6cacXcIvkzZwrIbMY,785
|
|
446
|
-
opik/rest_api/types/prompt_public.py,sha256=Y3nMOKszJKw1Uo_WQkoYiKy6yxh6YKKVv1ro3u0JoiA,929
|
|
447
|
-
opik/rest_api/types/prompt_type.py,sha256=W04Awz_ONrrehPoJLQSgJpXlNy3h_u3IIj-72ePCWh8,156
|
|
448
|
-
opik/rest_api/types/prompt_version.py,sha256=JQuInLKPgXbPFsICo-5KBUzHxAxtLrPwfeu2o937xZo,1329
|
|
449
|
-
opik/rest_api/types/prompt_version_detail.py,sha256=RF0mKFMNU0uiP5bqTXKXDNdqQp0aGCvbXCRYzQtzTGM,1373
|
|
450
|
-
opik/rest_api/types/prompt_version_detail_type.py,sha256=roFsS6l5ez5cFtLtKsUfMCV-kmaQJWWMvyCvrWD7OP0,169
|
|
451
|
-
opik/rest_api/types/prompt_version_link.py,sha256=7n1QWXJGAtFM-QxYGP2jvQIWleuyJaY87zTdPLa6wGg,663
|
|
452
|
-
opik/rest_api/types/prompt_version_link_public.py,sha256=asc6b6uAOFTueuEF0PpdaUy4WZhrZdKvEoA2xRUnQfc,669
|
|
453
|
-
opik/rest_api/types/prompt_version_link_write.py,sha256=ySfzTb8WBIrD_aM1YG3Co_Oz3OsxQgYkYuSz6hW1kvI,585
|
|
454
|
-
opik/rest_api/types/prompt_version_page_public.py,sha256=TXjGcCMAXs8H4JYR5woD2pNgzqWp6eqvPfGj7osFQDg,814
|
|
455
|
-
opik/rest_api/types/prompt_version_public.py,sha256=MJr5w7SWizOHezIdsv_wALCkbRbvefeUFhXtHnBGnXM,1317
|
|
456
|
-
opik/rest_api/types/prompt_version_public_type.py,sha256=Ehj7e1kAdutXqMjhM8Pros8ype1ZhMcPPcnklacuA54,169
|
|
457
|
-
opik/rest_api/types/prompt_version_type.py,sha256=biU9zF1I8qzY57CpXgHiBytiFut_vsGxOVI6NfLI8Cg,163
|
|
458
|
-
opik/rest_api/types/provider_api_key.py,sha256=CWltK1t6h98fg4tKlZ5IIGLzEL8Q1tonC2DHMuyHISc,979
|
|
459
|
-
opik/rest_api/types/provider_api_key_provider.py,sha256=W5ifCgG8z7cXZz9-TYeTY2H7FcNcVI5j8dsbxwupC_o,199
|
|
460
|
-
opik/rest_api/types/provider_api_key_public.py,sha256=uXwrlNhgHtcQ9gV_OnaujpkybuykFGBE75ZQdzwM_8U,1004
|
|
461
|
-
opik/rest_api/types/provider_api_key_public_provider.py,sha256=0M4gKpxmrY7i7wTdz4cVsYdFtgYrSYBsOXrCoOlrq80,205
|
|
462
|
-
opik/rest_api/types/response_format.py,sha256=fJAJgz3Yyu59FKBKNLTJZ4AsAA_Ma78oQv9mWEUCCxM,759
|
|
463
|
-
opik/rest_api/types/response_format_type.py,sha256=TTQwAXIrmbYv-WUSizVuTdkcbn4L-67jJJjQdw0FkbI,186
|
|
464
|
-
opik/rest_api/types/results_number_public.py,sha256=sborajDtJlg3iUVnwivxxR38sig7RntfH913BdjZNgI,737
|
|
465
|
-
opik/rest_api/types/score_name.py,sha256=GqcAZsD0JUWySpw9A2M0qJTY_SBtP6zcEC4O3bA84jQ,598
|
|
466
|
-
opik/rest_api/types/span.py,sha256=zA2mYFstIjdQK6pYKVWAcNJwOLhZKeVlLUSDEIO3Q1k,2127
|
|
467
|
-
opik/rest_api/types/span_batch.py,sha256=1y4GGx1WgKU02iqxF2FptprnlTi6qY3uecN7f1TQEmw,612
|
|
468
|
-
opik/rest_api/types/span_filter_public.py,sha256=_WXAn_-lO8--5m8L-A8DXu1mZCIkLAYYeMNIRmt_jeE,811
|
|
469
|
-
opik/rest_api/types/span_filter_public_operator.py,sha256=OgnjXzhQtnE-4E7wTxMLPyq4kA3G67l90VyLjeYhIdY,335
|
|
470
|
-
opik/rest_api/types/span_page_public.py,sha256=gHEXAvKa9rDKRF4PPKunEbd4ER-3oROw_dSWzDBrS40,777
|
|
471
|
-
opik/rest_api/types/span_public.py,sha256=_NYGAJILMeRP8iM1TeN0dTamg9Pi4oZBUcIeQbMNZgk,2112
|
|
472
|
-
opik/rest_api/types/span_public_type.py,sha256=rn77h6W5yld77eTsdaczqsjqsAGKoFnod1EN7yX2BeI,164
|
|
473
|
-
opik/rest_api/types/span_type.py,sha256=ARRUMA12WuyRgLlagIXQoW2X7OJ-gW6Hq5qaAB2k7r4,158
|
|
474
|
-
opik/rest_api/types/span_write.py,sha256=S8FyA_lN4cIbNWdxhLqXmawaK2lHoI66RoYZk1NiTPA,1572
|
|
475
|
-
opik/rest_api/types/span_write_type.py,sha256=B7ZG3W3juccmXP6fsk8QuMUawrjwgGK1agxiRp9paXE,163
|
|
476
|
-
opik/rest_api/types/stream_options.py,sha256=uDxN0Uf1Fp3_I2guiZYF4jM4Ggewe2uA0KEoIvdMR9Y,612
|
|
477
|
-
opik/rest_api/types/tool.py,sha256=TMndBfqczjOsame6jDunK9aPFH6FELXqmIARE2zNsPc,694
|
|
478
|
-
opik/rest_api/types/tool_call.py,sha256=83GAavV2jEy6S1sPQeeNg4Iqkv5KLOc0utZ2eXC0h_Q,786
|
|
479
|
-
opik/rest_api/types/trace.py,sha256=W1NnmnvSpoDhD59bbbeuisNqvzx5opTXxbYw9d3Ol_w,1912
|
|
480
|
-
opik/rest_api/types/trace_batch.py,sha256=7csPvJLxHd5VnHXyjbsUX5QYhM2lMFelCF20YDPmtoU,617
|
|
481
|
-
opik/rest_api/types/trace_count_response.py,sha256=awqjaewQ8j_Mk2mksBTmGrnQbKSSsneJRw9qekmwr9s,710
|
|
482
|
-
opik/rest_api/types/trace_page_public.py,sha256=oPxIC5DmlodHxB1wTmCrwZHbljyMZj6xXFtUFXHO6Ng,989
|
|
483
|
-
opik/rest_api/types/trace_public.py,sha256=wS-A34vdA2qWipDlXP5Vy4JxNHavQ3M5FWXsycG5Sd0,1878
|
|
484
|
-
opik/rest_api/types/trace_thread.py,sha256=5PzeuhHWrpJDM_XgKNX6LyCaNpZSOsWuReDgUOrfwlg,1150
|
|
485
|
-
opik/rest_api/types/trace_thread_page.py,sha256=cT9X85BQvb9vZLvKTXFNZO_GcE0nz8Cydrnekrj5cQ0,781
|
|
486
|
-
opik/rest_api/types/trace_write.py,sha256=_dkSQsJMrJSdjUDjdTiIPVTSabsm5nUoiT15ZJ_0fOQ,1227
|
|
487
|
-
opik/rest_api/types/usage.py,sha256=d7otpoy_kr8UcsY1GOPMWcjRkNS3Xc4NmVbbqWgmDgU,842
|
|
488
|
-
opik/rest_api/types/user_defined_metric_python_code.py,sha256=zMgCD4DI-V7lu4XHa39aeriDu_mTeSpjy9AZ8NTN_EA,631
|
|
489
|
-
opik/rest_api/types/user_defined_metric_python_code_public.py,sha256=dVdAIbVAiiXEwNmnTN4cQhXpMyUDUiLwO-T4xVGKZ7w,637
|
|
490
|
-
opik/rest_api/types/user_defined_metric_python_code_write.py,sha256=oHArGlNT1APJ5sxdYdFkagw_rJjMPLxAjS8P38i5BTY,636
|
|
491
|
-
opik/rest_api/types/workspace_metadata.py,sha256=IQnq-bKgvMbWTTPq_UFBw-Or0GEaCgo5bWbSdyH0Stg,632
|
|
492
|
-
opik/rest_api/types/workspace_trace_count.py,sha256=4mreUqMcc2MBGY4hj9SkNlt4XKwjWzd48b0t8j-kdKQ,658
|
|
493
|
-
opik/rest_api/workspaces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
494
|
-
opik/rest_api/workspaces/client.py,sha256=NFYUrGzoGXjI_HT5g6gRmai5_jBT2I9dLLcTPenTH_g,4458
|
|
495
|
-
opik/rest_client_configurator/__init__.py,sha256=NedpoFj2Eh4mSiJcjTxF8kf3uyo8WOpYxewx1JADmV0,52
|
|
496
|
-
opik/rest_client_configurator/api.py,sha256=NnMl-zwfJ8i3JueYutgoeiYesef6e83y4PwoFI6zQ1U,571
|
|
497
|
-
opik/rest_client_configurator/public_methods_patcher.py,sha256=qHkKBonFJywLfUMHlxlxYrU5iRP0E-BonqJDqS5fAkk,396
|
|
498
|
-
opik/rest_client_configurator/retry_decorator.py,sha256=tZk1YwvVboXGwvzLkgQU9pO6SYYZcko8posxpI6NYOY,799
|
|
499
|
-
opik/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
500
|
-
opik/validation/feedback_score.py,sha256=c1LDDTdEU-WduW_5W2NYEyPQG_U1QPF5NXCJD0APOMo,1604
|
|
501
|
-
opik/validation/result.py,sha256=0poOSya4AJQYrtfpHUqh-kQfLOS0hOyjujaclSws5do,709
|
|
502
|
-
opik/validation/validator.py,sha256=HDymPavQ9bIEUFRQLPkYjE5nbasQVTjCZ7hJ-0R5l-8,158
|
|
503
|
-
opik-1.6.4.dist-info/METADATA,sha256=8Fkt-RDb5yyMVbmOaktFeX2crLczUxGE4OP2_SA8TeA,23799
|
|
504
|
-
opik-1.6.4.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
505
|
-
opik-1.6.4.dist-info/entry_points.txt,sha256=w0286wCciHEW75__VFhoJvymCiYKhCMKhHmLrBpQmbU,83
|
|
506
|
-
opik-1.6.4.dist-info/top_level.txt,sha256=2oMiKnSx98Cvff0wEIdJ7r2dkKvy7xalZ-yFuc9O49Y,5
|
|
507
|
-
opik-1.6.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|