5a558eb09e
Backend Tests / discover-tests (push) Waiting to run
Backend Tests / ${{ matrix.name }} (push) Blocked by required conditions
Build and Publish SDK / build-and-publish (push) Waiting to run
Build Opik Docker Images / set-version (push) Waiting to run
Build Opik Docker Images / build-backend (push) Blocked by required conditions
Build Opik Docker Images / build-sandbox-executor-python (push) Blocked by required conditions
Build Opik Docker Images / build-python-backend (push) Blocked by required conditions
Build Opik Docker Images / build-frontend (push) Blocked by required conditions
Build Opik Docker Images / create-git-tag (push) Blocked by required conditions
ClickHouse Migration Cluster Check / validate-clickhouse-migrations (push) Waiting to run
Docs - Publish / run (push) Waiting to run
E2E Tests - Post Merge (v2) / 🧪 E2E v2 Tests (${{ github.event.inputs.tier || 't1' }}) (push) Waiting to run
E2E Tests - Post Merge (v2) / 📢 Slack Notification (push) Blocked by required conditions
Frontend Unit Tests / Test on Node 20 (push) Waiting to run
Guardrails E2E Tests / Select Python version matrix (push) Waiting to run
Guardrails E2E Tests / Guardrails E2E Tests ${{matrix.python_version}} (push) Blocked by required conditions
Guardrails E2E Tests / 📢 Slack Notification (push) Blocked by required conditions
Guardrails Backend Unit Tests / Guardrails Backend Unit Tests (push) Waiting to run
Guardrails Backend Unit Tests / 📢 Slack Notification (push) Blocked by required conditions
Lint Opik Helm Chart / lint-helm-chart (Helm v3.21.0) (push) Waiting to run
Lint Opik Helm Chart / lint-helm-chart (Helm v4.2.0) (push) Waiting to run
Lint Opik Helm Chart / unittest-helm-chart (push) Waiting to run
Lint Opik Helm Chart / render-equality (push) Waiting to run
Opik Optimizer - Unit Tests / Opik Optimizer Unit Tests Python ${{matrix.python_version}} (push) Waiting to run
Python BE E2E Tests / Python BE E2E (push) Waiting to run
Python Backend Tests / run-python-backend-tests (push) Waiting to run
Python SDK Unit Tests / Python SDK Unit Tests ${{matrix.python_version}} (push) Waiting to run
Release Drafter / update_release_draft (push) Waiting to run
SDK E2E Libraries Integration Tests / Check Secrets (push) Waiting to run
SDK E2E Libraries Integration Tests / Missed OpenAI API Key Warning (push) Blocked by required conditions
SDK E2E Libraries Integration Tests / build-opik (push) Blocked by required conditions
SDK E2E Libraries Integration Tests / E2E Lib Integration Python ${{matrix.python_version}} (push) Blocked by required conditions
TypeScript SDK Integration Build & Publish / build-and-publish (opik-gemini) (push) Waiting to run
TypeScript SDK Integration Build & Publish / build-and-publish (opik-langchain) (push) Waiting to run
TypeScript SDK Integration Build & Publish / build-and-publish (opik-openai) (push) Waiting to run
TypeScript SDK Integration Build & Publish / build-and-publish (opik-otel) (push) Waiting to run
TypeScript SDK Integration Build & Publish / build-and-publish (opik-vercel) (push) Waiting to run
TypeScript SDK Build & Publish / build-and-publish (push) Waiting to run
TypeScript SDK Unit Tests / Test on Node ${{ matrix.node-version }} (push) Waiting to run
TypeScript SDK Compatibility V1.x E2E Tests / Select Node version matrix (push) Has been cancelled
TypeScript SDK Compatibility V1.x E2E Tests / TypeScript SDK Compatibility V1.x E2E Tests Node ${{matrix.node_version}} (push) Has been cancelled
TypeScript SDK E2E Tests / TypeScript SDK E2E Tests Node ${{matrix.node_version}} (push) Has been cancelled
Opik Optimizer - E2E Tests / build-opik (push) Has been cancelled
TypeScript SDK Compatibility V1.x E2E Tests / build-opik (push) Has been cancelled
Python SDK E2E Tests / Select Python version matrix (push) Has been cancelled
Python SDK E2E Tests / Python SDK E2E Tests ${{matrix.python_version}} (push) Has been cancelled
Python SDK E2E Tests / build-opik (push) Has been cancelled
Python SDK Compatibility V1.x E2E Tests / Select Python version matrix (push) Has been cancelled
Python SDK Compatibility V1.x E2E Tests / Python SDK Compatibility V1.x E2E Tests ${{matrix.python_version}} (push) Has been cancelled
Python SDK Compatibility V1.x E2E Tests / build-opik (push) Has been cancelled
TypeScript SDK E2E Tests / Select Node version matrix (push) Has been cancelled
TypeScript SDK E2E Tests / build-opik (push) Has been cancelled
Opik Optimizer - E2E Tests / Opik Optimizer E2E Tests Python ${{matrix.python_version}} (push) Has been cancelled
Opik Optimizer - E2E Tests / Opik Optimizer Integration Smoke Tests (push) Has been cancelled
🐙 Code Quality / detect (push) Has been cancelled
🐙 Code Quality / lint (${{ matrix.leg.name }}) (push) Has been cancelled
🐙 Code Quality / summary (push) Has been cancelled
TypeScript SDK Library Integration Tests / Check Secrets (push) Has been cancelled
TypeScript SDK Library Integration Tests / opik-vercel (Vercel AI SDK / eve) (push) Has been cancelled
SDK Library Integration Tests Runner / Check Secrets (push) Has been cancelled
SDK Library Integration Tests Runner / Missed OpenAI API Key Warning (push) Has been cancelled
SDK Library Integration Tests Runner / Build (push) Has been cancelled
SDK Library Integration Tests Runner / openai_tests (push) Has been cancelled
SDK Library Integration Tests Runner / langchain_tests (push) Has been cancelled
SDK Library Integration Tests Runner / langchain_legacy_tests (push) Has been cancelled
SDK Library Integration Tests Runner / llama_index_tests (push) Has been cancelled
SDK Library Integration Tests Runner / anthropic_tests (push) Has been cancelled
SDK Library Integration Tests Runner / mistral_tests (push) Has been cancelled
SDK Library Integration Tests Runner / groq_tests (push) Has been cancelled
SDK Library Integration Tests Runner / aisuite_tests (push) Has been cancelled
SDK Library Integration Tests Runner / haystack_tests (push) Has been cancelled
SDK Library Integration Tests Runner / dspy_tests (push) Has been cancelled
SDK Library Integration Tests Runner / crewai_v0_tests (push) Has been cancelled
SDK Library Integration Tests Runner / crewai_v1_tests (push) Has been cancelled
SDK Library Integration Tests Runner / genai_tests (push) Has been cancelled
SDK Library Integration Tests Runner / adk_tests (push) Has been cancelled
SDK Library Integration Tests Runner / adk_legacy_1_3_0_tests (push) Has been cancelled
SDK Library Integration Tests Runner / evaluation_metrics_tests (push) Has been cancelled
SDK Library Integration Tests Runner / bedrock_tests (push) Has been cancelled
SDK Library Integration Tests Runner / litellm_tests (push) Has been cancelled
SDK Library Integration Tests Runner / harbor_tests (push) Has been cancelled
SDK Library Integration Tests Runner / Slack Notification (push) Has been cancelled
159 lines
5.7 KiB
Python
159 lines
5.7 KiB
Python
import threading
|
|
from typing import Dict, Any, List
|
|
from unittest import mock
|
|
|
|
import opik
|
|
from opik.api_objects import rest_stream_parser
|
|
from opik.evaluation import helpers as helpers_module
|
|
from opik.evaluation.metrics import score_result
|
|
from opik.types import FeedbackScoreDict
|
|
|
|
from ...testlib import generate_project_name
|
|
|
|
PROJECT_NAME = generate_project_name("e2e", __name__)
|
|
|
|
|
|
# Simple dataset items for testing
|
|
DATASET_ITEMS = [
|
|
{
|
|
"input": {"question": f"Question {i}"},
|
|
"expected_output": {"answer": f"Answer {i}"},
|
|
}
|
|
for i in range(20) # Create 20 items to test streaming behavior
|
|
]
|
|
|
|
# Batch size for streaming - must be less than len(DATASET_ITEMS) to test multi-batch streaming
|
|
TEST_BATCH_SIZE = 5
|
|
|
|
|
|
def simple_task(item: Dict[str, Any]) -> Dict[str, Any]:
|
|
"""Simple task that echoes the expected output."""
|
|
return item["expected_output"]
|
|
|
|
|
|
def simple_scoring_function(
|
|
dataset_item: Dict[str, Any], task_outputs: Dict[str, Any]
|
|
) -> score_result.ScoreResult:
|
|
"""Simple scoring function that always returns 1.0."""
|
|
return score_result.ScoreResult(
|
|
name="simple_score",
|
|
value=1.0,
|
|
reason="Test score",
|
|
)
|
|
|
|
|
|
def test_streaming_starts_evaluation_before_complete_download(
|
|
opik_client: opik.Opik, dataset_name: str, experiment_name: str
|
|
):
|
|
"""
|
|
Test that streaming evaluation starts processing items before all items are downloaded.
|
|
|
|
This test verifies the core streaming behavior by:
|
|
1. Creating a dataset with multiple items
|
|
2. Setting a small batch size to force multiple batches
|
|
3. Patching read_and_parse_stream to track when items are yielded
|
|
4. Patching the task execution to track when tasks start
|
|
5. Verifying that the first task starts before the last item is yielded
|
|
"""
|
|
# Create dataset with multiple items
|
|
dataset = opik_client.create_dataset(dataset_name, project_name=PROJECT_NAME)
|
|
dataset.insert(DATASET_ITEMS)
|
|
|
|
# Track the sequence of events: 'yield' or 'task'
|
|
events: List[str] = []
|
|
events_lock = threading.Lock()
|
|
|
|
# Store original read_and_parse_stream function
|
|
original_read_and_parse_stream = rest_stream_parser.read_and_parse_stream
|
|
|
|
def tracked_read_and_parse_stream(stream, item_class, nb_samples=None):
|
|
"""Wrapper that tracks when items are yielded from the stream."""
|
|
items = original_read_and_parse_stream(stream, item_class, nb_samples)
|
|
tracked_items = []
|
|
for item in items:
|
|
with events_lock:
|
|
events.append("yield")
|
|
tracked_items.append(item)
|
|
return tracked_items
|
|
|
|
def tracked_task(item: Dict[str, Any]) -> Dict[str, Any]:
|
|
"""Wrapper that tracks when tasks start executing."""
|
|
with events_lock:
|
|
events.append("task")
|
|
return simple_task(item)
|
|
|
|
# Patch both read_and_parse_stream to track yields and EVALUATION_STREAM_DATASET_BATCH_SIZE
|
|
# to ensure we stream in multiple batches
|
|
with (
|
|
mock.patch.object(
|
|
rest_stream_parser,
|
|
"read_and_parse_stream",
|
|
side_effect=tracked_read_and_parse_stream,
|
|
),
|
|
mock.patch.object(
|
|
helpers_module, "EVALUATION_STREAM_DATASET_BATCH_SIZE", TEST_BATCH_SIZE
|
|
),
|
|
):
|
|
# Run evaluation with streaming
|
|
evaluation_result = opik.evaluate(
|
|
dataset=dataset,
|
|
task=tracked_task,
|
|
scoring_functions=[simple_scoring_function],
|
|
experiment_name=experiment_name,
|
|
verbose=1,
|
|
project_name=PROJECT_NAME,
|
|
)
|
|
|
|
# Verify evaluation completed successfully
|
|
assert evaluation_result.dataset_id == dataset.id
|
|
assert len(events) == len(DATASET_ITEMS) * 2 # Each item has yield + task
|
|
|
|
# Count yields and tasks
|
|
yield_count = events.count("yield")
|
|
task_count = events.count("task")
|
|
assert yield_count == len(DATASET_ITEMS)
|
|
assert task_count == len(DATASET_ITEMS)
|
|
|
|
# Critical assertion: Tasks should be interleaved with yields
|
|
# This proves streaming is working - we don't wait for all yields before starting tasks
|
|
# Find the index of the last yield
|
|
last_yield_index = len(events) - 1 - events[::-1].index("yield")
|
|
# Find the index of the first task
|
|
first_task_index = events.index("task")
|
|
|
|
assert first_task_index < last_yield_index, (
|
|
f"Streaming not working! First task appeared at index {first_task_index}, "
|
|
f"but last yield appeared at index {last_yield_index}. "
|
|
f"Tasks should start before all items are yielded. "
|
|
f"Event sequence: {events}"
|
|
)
|
|
|
|
# Verify the experiment was created correctly
|
|
retrieved_experiment = opik_client.get_experiment_by_id(
|
|
evaluation_result.experiment_id
|
|
)
|
|
experiment_items = retrieved_experiment.get_items()
|
|
assert len(experiment_items) == len(DATASET_ITEMS)
|
|
assert retrieved_experiment.project_name == PROJECT_NAME
|
|
|
|
# Verify scoring output: each item should have a score with name "simple_score" and value 1.0
|
|
for item in experiment_items:
|
|
# Check that feedback_scores exists and is not empty
|
|
assert item.feedback_scores is not None and len(item.feedback_scores) == 1, (
|
|
f"Experiment item {item.id} should have exactly 1 feedback score, got {len(item.feedback_scores) if item.feedback_scores else 0}"
|
|
)
|
|
|
|
# Verify the score matches expected structure
|
|
expected_score = FeedbackScoreDict(
|
|
category_name=None,
|
|
name="simple_score",
|
|
reason="Test score",
|
|
value=1.0,
|
|
)
|
|
|
|
actual_score = item.feedback_scores[0]
|
|
assert actual_score == expected_score, (
|
|
f"Experiment item {item.id} has incorrect feedback score. "
|
|
f"Expected: {expected_score}, Got: {actual_score}"
|
|
)
|