5a558eb09e
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
Lint Opik Helm Chart / render-equality (push) Has been cancelled
Opik Optimizer - Unit Tests / Opik Optimizer Unit Tests Python ${{matrix.python_version}} (push) Has been cancelled
Python BE E2E Tests / Python BE E2E (push) Has been cancelled
Python Backend Tests / run-python-backend-tests (push) Has been cancelled
Python SDK Unit Tests / Python SDK Unit Tests ${{matrix.python_version}} (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
SDK E2E Libraries Integration Tests / Check Secrets (push) Has been cancelled
SDK E2E Libraries Integration Tests / Missed OpenAI API Key Warning (push) Has been cancelled
SDK E2E Libraries Integration Tests / build-opik (push) Has been cancelled
SDK E2E Libraries Integration Tests / E2E Lib Integration Python ${{matrix.python_version}} (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-gemini) (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-langchain) (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-openai) (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-otel) (push) Has been cancelled
TypeScript SDK Integration Build & Publish / build-and-publish (opik-vercel) (push) Has been cancelled
TypeScript SDK Build & Publish / build-and-publish (push) Has been cancelled
TypeScript SDK Unit Tests / Test on Node ${{ matrix.node-version }} (push) Has been cancelled
Backend Tests / discover-tests (push) Has been cancelled
Backend Tests / ${{ matrix.name }} (push) Has been cancelled
Build and Publish SDK / build-and-publish (push) Has been cancelled
Build Opik Docker Images / set-version (push) Has been cancelled
Build Opik Docker Images / build-backend (push) Has been cancelled
Build Opik Docker Images / build-sandbox-executor-python (push) Has been cancelled
Build Opik Docker Images / build-python-backend (push) Has been cancelled
Build Opik Docker Images / build-frontend (push) Has been cancelled
Build Opik Docker Images / create-git-tag (push) Has been cancelled
ClickHouse Migration Cluster Check / validate-clickhouse-migrations (push) Has been cancelled
Docs - Publish / run (push) Has been cancelled
E2E Tests - Post Merge (v2) / 🧪 E2E v2 Tests (${{ github.event.inputs.tier || 't1' }}) (push) Has been cancelled
E2E Tests - Post Merge (v2) / 📢 Slack Notification (push) Has been cancelled
Frontend Unit Tests / Test on Node 20 (push) Has been cancelled
Guardrails E2E Tests / Select Python version matrix (push) Has been cancelled
Guardrails E2E Tests / Guardrails E2E Tests ${{matrix.python_version}} (push) Has been cancelled
Guardrails E2E Tests / 📢 Slack Notification (push) Has been cancelled
Guardrails Backend Unit Tests / Guardrails Backend Unit Tests (push) Has been cancelled
Guardrails Backend Unit Tests / 📢 Slack Notification (push) Has been cancelled
Lint Opik Helm Chart / lint-helm-chart (Helm v3.21.0) (push) Has been cancelled
Lint Opik Helm Chart / lint-helm-chart (Helm v4.2.0) (push) Has been cancelled
Lint Opik Helm Chart / unittest-helm-chart (push) Has been cancelled
455 lines
16 KiB
Python
455 lines
16 KiB
Python
"""Unit tests for LiteLLMAgent wiring and cost tracking."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
import pytest
|
|
|
|
from opik_optimizer.agents.litellm_agent import LiteLLMAgent
|
|
from opik_optimizer.agents.litellm_agent import _sanitize_tool_arguments_for_logging
|
|
from opik_optimizer.api_objects import chat_prompt
|
|
from tests.unit.fixtures.builders import make_litellm_completion_response
|
|
from tests.unit.fixtures import system_message, user_message
|
|
|
|
|
|
@pytest.fixture
|
|
def agent() -> LiteLLMAgent:
|
|
"""Create LiteLLMAgent for testing."""
|
|
return LiteLLMAgent(project_name="test-project")
|
|
|
|
|
|
@pytest.fixture
|
|
def simple_prompt() -> chat_prompt.ChatPrompt:
|
|
"""Create a simple chat prompt for testing."""
|
|
return chat_prompt.ChatPrompt(
|
|
name="test-prompt",
|
|
model="gpt-4o",
|
|
messages=[
|
|
system_message("You are a helpful assistant."),
|
|
user_message("{input}"),
|
|
],
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def tool_prompt() -> chat_prompt.ChatPrompt:
|
|
"""Create a prompt with tools for testing."""
|
|
return chat_prompt.ChatPrompt(
|
|
name="tool-prompt",
|
|
model="gpt-4o",
|
|
messages=[
|
|
system_message("You can use tools."),
|
|
user_message("{input}"),
|
|
],
|
|
tools=[
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_weather",
|
|
"description": "Get weather for a location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {"type": "string"},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
],
|
|
function_map={
|
|
"get_weather": lambda location: f"Weather in {location}: Sunny",
|
|
},
|
|
)
|
|
|
|
|
|
class TestLiteLLMAgentInitialization:
|
|
"""Test LiteLLMAgent initialization."""
|
|
|
|
def test_basic_initialization(self, agent: LiteLLMAgent) -> None:
|
|
"""Test basic agent initialization."""
|
|
assert agent.project_name == "test-project"
|
|
assert agent.trace_metadata == {"project_name": "test-project"}
|
|
|
|
def test_init_sets_opik_project_env(self) -> None:
|
|
"""Test that init_llm sets OPIK_PROJECT_NAME env var."""
|
|
import os
|
|
|
|
# Clear env var if set
|
|
old_val = os.environ.pop("OPIK_PROJECT_NAME", None)
|
|
|
|
try:
|
|
agent = LiteLLMAgent(project_name="env-test-project")
|
|
assert os.environ.get("OPIK_PROJECT_NAME") == "env-test-project"
|
|
assert agent.project_name == "env-test-project"
|
|
finally:
|
|
# Restore
|
|
if old_val:
|
|
os.environ["OPIK_PROJECT_NAME"] = old_val
|
|
|
|
|
|
def test_sanitize_tool_arguments_for_logging_redacts_sensitive_keys() -> None:
|
|
args = {
|
|
"api_key": "super-secret-value",
|
|
"nested": {"token": "abcd", "query": "hello"},
|
|
"password_hint": "something",
|
|
"normal": "x" * 80,
|
|
}
|
|
sanitized = _sanitize_tool_arguments_for_logging(args)
|
|
|
|
assert sanitized["api_key"] == "***REDACTED***"
|
|
assert sanitized["nested"]["token"] == "***REDACTED***"
|
|
assert sanitized["password_hint"] == "***REDACTED***"
|
|
assert sanitized["nested"]["query"] == "hello"
|
|
assert sanitized["normal"].endswith("...")
|
|
|
|
|
|
class TestLiteLLMAgentInvoke:
|
|
"""Test LiteLLMAgent invoke_agent method."""
|
|
|
|
def test_invoke_single_prompt(
|
|
self, agent: LiteLLMAgent, simple_prompt: chat_prompt.ChatPrompt
|
|
) -> None:
|
|
"""Test invoking with a single prompt."""
|
|
mock_response = make_litellm_completion_response(
|
|
"Hello!",
|
|
cost=0.001,
|
|
usage={"prompt_tokens": 10, "completion_tokens": 5, "total_tokens": 15},
|
|
)
|
|
|
|
with patch.object(agent, "_llm_complete", return_value=mock_response):
|
|
result = agent.invoke_agent(
|
|
prompts={"test-prompt": simple_prompt},
|
|
dataset_item={"input": "Hello"},
|
|
)
|
|
|
|
assert result == "Hello!"
|
|
|
|
def test_invoke_multiple_prompts_raises_error(
|
|
self, agent: LiteLLMAgent, simple_prompt: chat_prompt.ChatPrompt
|
|
) -> None:
|
|
"""Test that multiple prompts raises ValueError."""
|
|
prompts = {
|
|
"prompt1": simple_prompt,
|
|
"prompt2": simple_prompt,
|
|
}
|
|
|
|
with pytest.raises(ValueError, match="To optimize multiple prompts"):
|
|
agent.invoke_agent(
|
|
prompts=prompts,
|
|
dataset_item={"input": "test"},
|
|
)
|
|
|
|
def test_invoke_formats_messages(
|
|
self, agent: LiteLLMAgent, simple_prompt: chat_prompt.ChatPrompt
|
|
) -> None:
|
|
"""Test that messages are formatted with dataset_item."""
|
|
mock_response = make_litellm_completion_response("response")
|
|
|
|
captured_messages: list[dict[str, Any]] = []
|
|
|
|
def capture_complete(
|
|
model: str, messages: list[dict[str, Any]], **kwargs: Any
|
|
) -> MagicMock:
|
|
captured_messages.extend(messages)
|
|
return mock_response
|
|
|
|
with patch.object(agent, "_llm_complete", side_effect=capture_complete):
|
|
agent.invoke_agent(
|
|
prompts={"test": simple_prompt},
|
|
dataset_item={"input": "formatted input"},
|
|
)
|
|
|
|
assert any(
|
|
m.get("role") == "user" and m.get("content") == "formatted input"
|
|
for m in captured_messages
|
|
)
|
|
|
|
def test_tool_loop_returns_last_tool_response_when_capped(
|
|
self, agent: LiteLLMAgent
|
|
) -> None:
|
|
"""Tool loop should return the last tool response when max iterations hit."""
|
|
tool_called: list[dict[str, Any]] = []
|
|
|
|
def tool_fn(**kwargs: Any) -> str:
|
|
tool_called.append(kwargs)
|
|
return "tool-response"
|
|
|
|
prompt = chat_prompt.ChatPrompt(system="s", user="u")
|
|
prompt.tools = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "search",
|
|
"description": "search",
|
|
"parameters": {"type": "object", "properties": {"q": {}}},
|
|
},
|
|
}
|
|
]
|
|
prompt.function_map = {"search": tool_fn}
|
|
|
|
class _ToolMessage:
|
|
def __init__(self) -> None:
|
|
self.tool_calls = [
|
|
{
|
|
"id": "call_1",
|
|
"function": {"name": "search", "arguments": '{"q": "x"}'},
|
|
}
|
|
]
|
|
self.content = ""
|
|
|
|
def to_dict(self) -> dict[str, Any]:
|
|
return {"tool_calls": self.tool_calls, "content": self.content}
|
|
|
|
def __getitem__(self, key: str) -> Any:
|
|
return {"tool_calls": self.tool_calls, "content": self.content}[key]
|
|
|
|
message = _ToolMessage()
|
|
|
|
mock_response = make_litellm_completion_response(message=message)
|
|
|
|
with (
|
|
patch.object(
|
|
agent,
|
|
"_llm_complete",
|
|
return_value=mock_response,
|
|
),
|
|
patch(
|
|
"opik_optimizer.agents.litellm_agent.tool_call_max_iterations",
|
|
return_value=1,
|
|
),
|
|
):
|
|
result = agent.invoke_agent(
|
|
prompts={"p": prompt},
|
|
dataset_item={"input": "x"},
|
|
allow_tool_use=True,
|
|
)
|
|
|
|
assert tool_called
|
|
assert result == "tool-response"
|
|
|
|
def test_tool_loop_handles_invalid_tool_call_arguments(
|
|
self, agent: LiteLLMAgent
|
|
) -> None:
|
|
tool_called: list[dict[str, Any]] = []
|
|
|
|
def tool_fn(**kwargs: Any) -> str:
|
|
tool_called.append(kwargs)
|
|
return "tool-response"
|
|
|
|
prompt = chat_prompt.ChatPrompt(system="s", user="u")
|
|
prompt.tools = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "search",
|
|
"description": "search",
|
|
"parameters": {"type": "object", "properties": {"q": {}}},
|
|
},
|
|
}
|
|
]
|
|
prompt.function_map = {"search": tool_fn}
|
|
|
|
class _ToolMessage:
|
|
def __init__(self) -> None:
|
|
self.tool_calls = [
|
|
{
|
|
"id": "call_1",
|
|
"function": {"name": "search", "arguments": "{bad json"},
|
|
}
|
|
]
|
|
self.content = ""
|
|
|
|
def to_dict(self) -> dict[str, Any]:
|
|
return {"tool_calls": self.tool_calls, "content": self.content}
|
|
|
|
def __getitem__(self, key: str) -> Any:
|
|
return {"tool_calls": self.tool_calls, "content": self.content}[key]
|
|
|
|
class _FinalMessage:
|
|
def __init__(self) -> None:
|
|
self.tool_calls: list[dict[str, Any]] = []
|
|
self.content = "final answer"
|
|
|
|
def to_dict(self) -> dict[str, Any]:
|
|
return {"tool_calls": self.tool_calls, "content": self.content}
|
|
|
|
def __getitem__(self, key: str) -> Any:
|
|
return {"tool_calls": self.tool_calls, "content": self.content}[key]
|
|
|
|
first_response = make_litellm_completion_response(message=_ToolMessage())
|
|
second_response = make_litellm_completion_response(message=_FinalMessage())
|
|
|
|
captured_messages: list[list[dict[str, Any]]] = []
|
|
|
|
def fake_complete(
|
|
model: str,
|
|
messages: list[dict[str, Any]],
|
|
**kwargs: Any,
|
|
) -> MagicMock:
|
|
_ = model, kwargs
|
|
captured_messages.append(list(messages))
|
|
return first_response if len(captured_messages) == 1 else second_response
|
|
|
|
with patch.object(agent, "_llm_complete", side_effect=fake_complete):
|
|
result = agent.invoke_agent(
|
|
prompts={"p": prompt},
|
|
dataset_item={"input": "x"},
|
|
allow_tool_use=True,
|
|
)
|
|
|
|
assert result == "final answer"
|
|
assert tool_called == []
|
|
assert len(captured_messages) == 2
|
|
assert any(
|
|
msg.get("role") == "tool"
|
|
and "Invalid JSON arguments for tool `search`" in str(msg.get("content"))
|
|
for msg in captured_messages[1]
|
|
)
|
|
|
|
|
|
class TestLiteLLMAgentCostTracking:
|
|
"""Test cost and usage tracking in LiteLLMAgent."""
|
|
|
|
def test_llm_complete_attaches_cost(self, agent: LiteLLMAgent) -> None:
|
|
"""Test that _llm_complete attaches cost to response."""
|
|
mock_response = make_litellm_completion_response(
|
|
"response",
|
|
cost=0.005,
|
|
usage={"prompt_tokens": 100, "completion_tokens": 50, "total_tokens": 150},
|
|
)
|
|
|
|
with patch("litellm.completion", return_value=mock_response):
|
|
with patch(
|
|
"opik_optimizer.agents.litellm_agent.track_completion"
|
|
) as mock_track:
|
|
mock_track.return_value = lambda x: x
|
|
|
|
result = agent._llm_complete(
|
|
model="gpt-4o",
|
|
messages=[user_message("test")],
|
|
tools=None,
|
|
)
|
|
|
|
assert result._opik_cost == 0.005
|
|
assert result._opik_usage["prompt_tokens"] == 100
|
|
assert result._opik_usage["completion_tokens"] == 50
|
|
assert result._opik_usage["total_tokens"] == 150
|
|
|
|
def test_apply_cost_handles_missing_owner(self, agent: LiteLLMAgent) -> None:
|
|
"""Test that missing optimizer owner doesn't raise error."""
|
|
mock_response = MagicMock()
|
|
mock_response._opik_cost = 0.01
|
|
|
|
# Should not raise
|
|
agent._apply_cost_usage_to_owner(mock_response)
|
|
|
|
def test_llm_complete_handles_missing_usage(self, agent: LiteLLMAgent) -> None:
|
|
"""Test handling of responses without usage data."""
|
|
mock_response = make_litellm_completion_response(
|
|
"response", cost=None, usage=None
|
|
)
|
|
|
|
with patch("litellm.completion", return_value=mock_response):
|
|
with patch(
|
|
"opik_optimizer.agents.litellm_agent.track_completion"
|
|
) as mock_track:
|
|
mock_track.return_value = lambda x: x
|
|
|
|
result = agent._llm_complete(
|
|
model="gpt-4o",
|
|
messages=[user_message("test")],
|
|
tools=None,
|
|
)
|
|
|
|
# Should not raise, cost should be None
|
|
assert result._opik_cost is None
|
|
|
|
|
|
class TestLiteLLMAgentMultipleChoices:
|
|
"""Test handling of multiple completion choices."""
|
|
|
|
def test_invoke_with_multiple_choices(
|
|
self, agent: LiteLLMAgent, simple_prompt: chat_prompt.ChatPrompt
|
|
) -> None:
|
|
"""Test that multiple choices are concatenated."""
|
|
mock_response = make_litellm_completion_response(["Choice 1", "Choice 2"])
|
|
|
|
with patch.object(agent, "_llm_complete", return_value=mock_response):
|
|
result = agent.invoke_agent(
|
|
prompts={"test": simple_prompt},
|
|
dataset_item={"input": "test"},
|
|
)
|
|
|
|
assert "Choice 1" in result
|
|
assert "Choice 2" in result
|
|
|
|
def test_invoke_candidates_returns_all_choices(
|
|
self, agent: LiteLLMAgent, simple_prompt: chat_prompt.ChatPrompt
|
|
) -> None:
|
|
"""Test invoke_agent_candidates returns each choice separately."""
|
|
mock_response = make_litellm_completion_response(["Choice A", "Choice B"])
|
|
|
|
with patch.object(agent, "_llm_complete", return_value=mock_response):
|
|
result = agent.invoke_agent_candidates(
|
|
prompts={"test": simple_prompt},
|
|
dataset_item={"input": "test"},
|
|
)
|
|
|
|
assert result == ["Choice A", "Choice B"]
|
|
|
|
def test_invoke_with_empty_choices(
|
|
self, agent: LiteLLMAgent, simple_prompt: chat_prompt.ChatPrompt
|
|
) -> None:
|
|
"""Test handling of empty choices list."""
|
|
mock_response = make_litellm_completion_response([])
|
|
|
|
with patch.object(agent, "_llm_complete", return_value=mock_response):
|
|
result = agent.invoke_agent(
|
|
prompts={"test": simple_prompt},
|
|
dataset_item={"input": "test"},
|
|
)
|
|
|
|
assert result == ""
|
|
|
|
|
|
class TestLiteLLMAgentPrepareMessages:
|
|
"""Test message preparation hook."""
|
|
|
|
def test_prepare_messages_default(self, agent: LiteLLMAgent) -> None:
|
|
"""Test default _prepare_messages returns messages unchanged."""
|
|
messages = [user_message("test")]
|
|
result = agent._prepare_messages(messages, {"input": "data"})
|
|
assert result == messages
|
|
|
|
def test_prepare_messages_can_be_overridden(self) -> None:
|
|
"""Test that subclass can override _prepare_messages."""
|
|
|
|
class CustomAgent(LiteLLMAgent):
|
|
def _prepare_messages(
|
|
self,
|
|
messages: list[dict[str, Any]],
|
|
dataset_item: dict[str, Any] | None,
|
|
) -> list[dict[str, Any]]:
|
|
return messages + [user_message("extra")]
|
|
|
|
agent = CustomAgent(project_name="test")
|
|
messages = [user_message("original")]
|
|
result = agent._prepare_messages(messages, None)
|
|
|
|
assert len(result) == 2
|
|
assert result[1]["content"] == "extra"
|
|
|
|
|
|
class TestLiteLLMAgentRateLimiting:
|
|
"""Test rate limiting decorator on _llm_complete."""
|
|
|
|
def test_llm_complete_has_rate_limiting(self, agent: LiteLLMAgent) -> None:
|
|
"""Test that _llm_complete is rate limited."""
|
|
# Check that the method has the rate_limited decorator applied
|
|
# by inspecting the wrapper
|
|
method = agent._llm_complete
|
|
# Rate limited methods have __wrapped__ attribute
|
|
assert hasattr(method, "__wrapped__")
|