Co-authored-by: Clément Sirieix <clement.sirieix@mistral.ai> Co-authored-by: Kim-Adeline Miguel <kimadeline.miguel@mistral.ai> Co-authored-by: Lucas Marandat <31749711+lucasmrdt@users.noreply.github.com> Co-authored-by: Michel Thomazo <51709227+michelTho@users.noreply.github.com> Co-authored-by: Paul Cacheux <paul.cacheux@mistral.ai> Co-authored-by: Peter Evers <pevers90@gmail.com> Co-authored-by: Pierre Rossinès <pierre.rossines@mistral.ai> Co-authored-by: Pierre Rossinès <pierre.rossines@protonmail.com> Co-authored-by: Quentin <quentin.torroba@mistral.ai> Co-authored-by: Simon Van de Kerckhove <simon.vandekerckhove@mistral.ai> Co-authored-by: Val <102326092+vdeva@users.noreply.github.com> Co-authored-by: Vincent G <10739306+VinceOPS@users.noreply.github.com> Co-authored-by: Mistral Vibe <vibe@mistral.ai>
224 lines
7.2 KiB
Python
224 lines
7.2 KiB
Python
from __future__ import annotations
|
|
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
from mistralai.client import Mistral
|
|
from mistralai.client.errors import SDKError
|
|
from mistralai.client.models import (
|
|
ConversationResponse,
|
|
ConversationUsageInfo,
|
|
MessageOutputEntry,
|
|
TextChunk,
|
|
ToolReferenceChunk,
|
|
)
|
|
import pytest
|
|
|
|
from tests.mock.utils import collect_result
|
|
from vibe.core.config import ProviderConfig
|
|
from vibe.core.tools.base import BaseToolState, InvokeContext, ToolError
|
|
from vibe.core.tools.builtins.websearch import WebSearch, WebSearchArgs, WebSearchConfig
|
|
from vibe.core.types import Backend
|
|
|
|
|
|
def _make_response(
|
|
content: list | None = None, outputs: list | None = None
|
|
) -> ConversationResponse:
|
|
if outputs is None:
|
|
outputs = [MessageOutputEntry(content=content or [])]
|
|
return ConversationResponse(
|
|
conversation_id="test",
|
|
outputs=outputs,
|
|
usage=ConversationUsageInfo(
|
|
prompt_tokens=10, completion_tokens=20, total_tokens=30
|
|
),
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def websearch(monkeypatch):
|
|
monkeypatch.setenv("MISTRAL_API_KEY", "test-key")
|
|
config = WebSearchConfig()
|
|
return WebSearch(config_getter=lambda: config, state=BaseToolState())
|
|
|
|
|
|
def test_parse_text_chunks(websearch):
|
|
response = _make_response(
|
|
content=[TextChunk(text="Hello "), TextChunk(text="world")]
|
|
)
|
|
result = websearch._parse_response(response)
|
|
assert result.answer == "Hello world"
|
|
assert result.sources == []
|
|
|
|
|
|
def test_parse_sources_deduped(websearch):
|
|
response = _make_response(
|
|
content=[
|
|
TextChunk(text="Answer"),
|
|
ToolReferenceChunk(tool="web_search", title="Site A", url="https://a.com"),
|
|
ToolReferenceChunk(
|
|
tool="web_search", title="Site A duplicate", url="https://a.com"
|
|
),
|
|
ToolReferenceChunk(tool="web_search", title="Site B", url="https://b.com"),
|
|
]
|
|
)
|
|
result = websearch._parse_response(response)
|
|
assert result.answer == "Answer"
|
|
assert len(result.sources) == 2
|
|
assert result.sources[0].url == "https://a.com"
|
|
assert result.sources[0].title == "Site A"
|
|
assert result.sources[1].url == "https://b.com"
|
|
|
|
|
|
def test_parse_skips_source_without_url(websearch):
|
|
response = _make_response(
|
|
content=[
|
|
TextChunk(text="Answer"),
|
|
ToolReferenceChunk(tool="web_search", title="No URL"),
|
|
]
|
|
)
|
|
result = websearch._parse_response(response)
|
|
assert result.sources == []
|
|
|
|
|
|
def test_parse_empty_text_raises(websearch):
|
|
response = _make_response(content=[])
|
|
with pytest.raises(ToolError, match="No text in agent response"):
|
|
websearch._parse_response(response)
|
|
|
|
|
|
def test_parse_whitespace_only_raises(websearch):
|
|
response = _make_response(content=[TextChunk(text=" ")])
|
|
with pytest.raises(ToolError, match="No text in agent response"):
|
|
websearch._parse_response(response)
|
|
|
|
|
|
def test_parse_skips_non_message_entries(websearch):
|
|
response = _make_response(
|
|
outputs=[MessageOutputEntry(content=[TextChunk(text="Answer")])]
|
|
)
|
|
result = websearch._parse_response(response)
|
|
assert result.answer == "Answer"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_missing_api_key(monkeypatch):
|
|
monkeypatch.delenv("MISTRAL_API_KEY", raising=False)
|
|
config = WebSearchConfig()
|
|
ws = WebSearch(config_getter=lambda: config, state=BaseToolState())
|
|
with pytest.raises(ToolError, match="MISTRAL_API_KEY"):
|
|
await collect_result(ws.run(WebSearchArgs(query="test")))
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_returns_parsed_result(websearch):
|
|
response = _make_response(
|
|
content=[
|
|
TextChunk(text="The answer"),
|
|
ToolReferenceChunk(
|
|
tool="web_search", title="Source", url="https://example.com"
|
|
),
|
|
]
|
|
)
|
|
|
|
mock_start = AsyncMock(return_value=response)
|
|
with patch.object(Mistral, "beta", create=True) as mock_beta:
|
|
mock_beta.conversations.start_async = mock_start
|
|
with patch.object(Mistral, "__aenter__", return_value=None):
|
|
with patch.object(Mistral, "__aexit__", return_value=None):
|
|
result = await collect_result(
|
|
websearch.run(WebSearchArgs(query="test query"))
|
|
)
|
|
|
|
assert result.answer == "The answer"
|
|
assert len(result.sources) == 1
|
|
assert result.sources[0].url == "https://example.com"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_sdk_error_wrapped(websearch):
|
|
from unittest.mock import Mock
|
|
|
|
import httpx
|
|
|
|
mock_response = Mock(spec=httpx.Response)
|
|
mock_response.status_code = 500
|
|
mock_response.text = "error"
|
|
mock_response.headers = httpx.Headers({"content-type": "application/json"})
|
|
|
|
with patch.object(Mistral, "beta", create=True) as mock_beta:
|
|
mock_beta.conversations.start_async = AsyncMock(
|
|
side_effect=SDKError("API failed", mock_response)
|
|
)
|
|
with patch.object(Mistral, "__aenter__", return_value=None):
|
|
with patch.object(Mistral, "__aexit__", return_value=None):
|
|
with pytest.raises(ToolError, match="Mistral API error"):
|
|
await collect_result(websearch.run(WebSearchArgs(query="test")))
|
|
|
|
|
|
def test_resolve_server_url_no_ctx(websearch):
|
|
assert websearch._resolve_server_url(None) is None
|
|
|
|
|
|
def test_resolve_server_url_no_agent_manager(websearch):
|
|
ctx = InvokeContext(tool_call_id="t1", agent_manager=None)
|
|
assert websearch._resolve_server_url(ctx) is None
|
|
|
|
|
|
def test_resolve_server_url_with_mistral_provider(websearch):
|
|
config = MagicMock()
|
|
config.providers = [
|
|
ProviderConfig(
|
|
name="mistral",
|
|
api_base="https://on-prem.example.com/v1",
|
|
api_key_env_var="MISTRAL_API_KEY",
|
|
backend=Backend.MISTRAL,
|
|
)
|
|
]
|
|
agent_manager = MagicMock()
|
|
agent_manager.config = config
|
|
|
|
ctx = InvokeContext(tool_call_id="t1", agent_manager=agent_manager)
|
|
assert websearch._resolve_server_url(ctx) == "https://on-prem.example.com"
|
|
|
|
|
|
def test_resolve_server_url_with_default_provider(websearch):
|
|
config = MagicMock()
|
|
config.providers = [
|
|
ProviderConfig(
|
|
name="mistral",
|
|
api_base="https://api.mistral.ai/v1",
|
|
api_key_env_var="MISTRAL_API_KEY",
|
|
backend=Backend.MISTRAL,
|
|
)
|
|
]
|
|
agent_manager = MagicMock()
|
|
agent_manager.config = config
|
|
|
|
ctx = InvokeContext(tool_call_id="t1", agent_manager=agent_manager)
|
|
assert websearch._resolve_server_url(ctx) == "https://api.mistral.ai"
|
|
|
|
|
|
def test_resolve_server_url_no_mistral_provider(websearch):
|
|
config = MagicMock()
|
|
config.providers = [
|
|
ProviderConfig(name="llamacpp", api_base="http://127.0.0.1:8080/v1")
|
|
]
|
|
agent_manager = MagicMock()
|
|
agent_manager.config = config
|
|
|
|
ctx = InvokeContext(tool_call_id="t1", agent_manager=agent_manager)
|
|
assert websearch._resolve_server_url(ctx) is None
|
|
|
|
|
|
def test_is_available_with_key(monkeypatch):
|
|
monkeypatch.setenv("MISTRAL_API_KEY", "key")
|
|
assert WebSearch.is_available() is True
|
|
|
|
|
|
def test_is_available_without_key(monkeypatch):
|
|
monkeypatch.delenv("MISTRAL_API_KEY", raising=False)
|
|
assert WebSearch.is_available() is False
|
|
|
|
|
|
def test_get_status_text():
|
|
assert WebSearch.get_status_text() == "Searching the web"
|