Spaces:
Running
Running
File size: 23,061 Bytes
7cdac45 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 | from typing import Any
from unittest.mock import AsyncMock, MagicMock, patch
import httpx
import pytest
import api.web_tools.constants as web_tool_constants
from api.model_router import ModelRouter, ResolvedModel, RoutedMessagesRequest
from api.models.anthropic import Message, MessagesRequest, Tool
from api.request_pipeline import ApiRequestPipeline
from api.web_tools import egress as web_egress
from api.web_tools.egress import (
WebFetchEgressPolicy,
WebFetchEgressViolation,
enforce_web_fetch_egress,
)
from api.web_tools.outbound import (
_drain_response_body_capped,
_read_response_body_capped,
_run_web_fetch,
)
from api.web_tools.request import is_web_server_tool_request
from api.web_tools.streaming import stream_web_server_tool_response
from config.provider_catalog import PROVIDER_CATALOG
from config.settings import Settings
from core.anthropic.stream_contracts import (
assert_anthropic_stream_contract,
parse_sse_text,
text_content,
)
from messaging.event_parser import parse_cli_event
from providers.exceptions import InvalidRequestError
_STRICT_EGRESS = WebFetchEgressPolicy(
allow_private_network_targets=False,
allowed_schemes=frozenset({"http", "https"}),
)
_OPENAI_CHAT_PROVIDER_IDS = tuple(
provider_id
for provider_id, descriptor in PROVIDER_CATALOG.items()
if descriptor.transport_type == "openai_chat"
)
_ANTHROPIC_MESSAGES_PROVIDER_IDS = tuple(
provider_id
for provider_id, descriptor in PROVIDER_CATALOG.items()
if descriptor.transport_type == "anthropic_messages"
)
class FixedProviderModelRouter(ModelRouter):
"""Test double: pin ``provider_id`` for OpenAI vs native routing assertions."""
def __init__(self, settings: Settings, provider_id: str) -> None:
super().__init__(settings)
self._fixed_provider_id = provider_id
def resolve_messages_request(
self, request: MessagesRequest
) -> RoutedMessagesRequest:
resolved = ResolvedModel(
original_model=request.model,
provider_id=self._fixed_provider_id,
provider_model=request.model,
provider_model_ref=f"{self._fixed_provider_id}/{request.model}",
thinking_enabled=False,
)
routed = request.model_copy(deep=True)
routed.model = resolved.provider_model
return RoutedMessagesRequest(request=routed, resolved=resolved)
def test_web_server_tool_not_detected_when_tool_only_listed():
"""Listing web_search without forcing it must not skip the upstream provider."""
request = MessagesRequest(
model="claude-haiku-4-5-20251001",
max_tokens=100,
messages=[Message(role="user", content="search")],
tools=[Tool(name="web_search", type="web_search_20250305")],
)
assert not is_web_server_tool_request(request)
def test_web_server_tool_detected_when_tool_choice_forces_it():
request = MessagesRequest(
model="claude-haiku-4-5-20251001",
max_tokens=100,
messages=[Message(role="user", content="search")],
tools=[Tool(name="web_search", type="web_search_20250305")],
tool_choice={"type": "tool", "name": "web_search"},
)
assert is_web_server_tool_request(request)
def test_web_server_tool_not_detected_when_forced_name_missing_from_tools():
request = MessagesRequest(
model="claude-haiku-4-5-20251001",
max_tokens=100,
messages=[Message(role="user", content="hi")],
tools=[Tool(name="other", type="function")],
tool_choice={"type": "tool", "name": "web_search"},
)
assert not is_web_server_tool_request(request)
@pytest.mark.parametrize("provider_id", _OPENAI_CHAT_PROVIDER_IDS)
def test_service_rejects_forced_server_tool_on_openai_when_disabled(
provider_id: str,
):
"""OpenAI Chat upstreams cannot run forced server tools without the local handler."""
settings = Settings()
assert settings.enable_web_server_tools is False
service = ApiRequestPipeline(
settings,
provider_getter=lambda _: MagicMock(),
model_router=FixedProviderModelRouter(settings, provider_id),
)
request = MessagesRequest(
model="claude-haiku-4-5-20251001",
max_tokens=100,
messages=[
Message(
role="user",
content="Perform a web search for the query: DeepSeek V4 model release 2026",
)
],
tools=[Tool(name="web_search", type="web_search_20250305")],
tool_choice={"type": "tool", "name": "web_search"},
)
with pytest.raises(InvalidRequestError, match="ENABLE_WEB_SERVER_TOOLS"):
service.create_message(request)
@pytest.mark.parametrize(
"url",
[
"http://127.0.0.1/",
"http://192.168.1.1/",
"http://10.0.0.1/",
"http://[::1]/",
"http://localhost/foo",
"http://mybox.local/",
"file:///etc/passwd",
"http://169.254.169.254/latest/meta-data/",
],
)
def test_enforce_web_fetch_egress_blocks_internal_or_disallowed(url: str):
with pytest.raises(WebFetchEgressViolation):
enforce_web_fetch_egress(url, _STRICT_EGRESS)
def test_enforce_web_fetch_egress_allows_global_literal_ip():
enforce_web_fetch_egress("http://8.8.8.8/", _STRICT_EGRESS)
def test_enforce_web_fetch_egress_skips_private_checks_when_opted_in():
enforce_web_fetch_egress(
"http://127.0.0.1/",
WebFetchEgressPolicy(
allow_private_network_targets=True,
allowed_schemes=frozenset({"http", "https"}),
),
)
def _cm(mock_client: MagicMock) -> MagicMock:
cm = MagicMock()
cm.__aenter__ = AsyncMock(return_value=mock_client)
cm.__aexit__ = AsyncMock(return_value=None)
return cm
def _stream_cm(response: httpx.Response) -> MagicMock:
cm = MagicMock()
cm.__aenter__ = AsyncMock(return_value=response)
cm.__aexit__ = AsyncMock(return_value=None)
return cm
def _aiohttp_response(
status: int,
*,
url: str = "http://8.8.8.8/",
location: str | None = None,
body: bytes = b"hello world",
) -> MagicMock:
r = MagicMock()
r.status = status
r.url = url
hdrs: dict[str, str] = {}
if location is not None:
hdrs["location"] = location
r.headers = hdrs
r.get_encoding = MagicMock(return_value="utf-8")
r.raise_for_status = MagicMock()
r.request_info = MagicMock()
r.history = ()
async def iter_chunked(_n: int) -> Any:
yield body
r.content.iter_chunked = MagicMock(side_effect=iter_chunked)
return r
def _aiohttp_client_session_patch(
*responses: MagicMock,
) -> tuple[MagicMock, MagicMock]:
"""Build ``ClientSession`` mock that serves ``responses`` to successive ``get`` calls."""
queue = list(responses)
n = 0
def get_side(*_a: Any, **_k: Any) -> Any:
nonlocal n
resp = queue[n] if n < len(queue) else queue[-1]
n += 1
cm = MagicMock()
cm.__aenter__ = AsyncMock(return_value=resp)
cm.__aexit__ = AsyncMock(return_value=None)
return cm
session = MagicMock()
session.get = MagicMock(side_effect=get_side)
client_cm = MagicMock()
client_cm.__aenter__ = AsyncMock(return_value=session)
client_cm.__aexit__ = AsyncMock(return_value=None)
return client_cm, session
def test_enforce_web_fetch_egress_documents_connect_time_pinning():
assert enforce_web_fetch_egress.__doc__ and "resolved addresses" in (
enforce_web_fetch_egress.__doc__ or ""
)
assert (
web_egress.get_validated_stream_addrinfos_for_egress.__doc__
and "pinning"
in (web_egress.get_validated_stream_addrinfos_for_egress.__doc__ or "")
)
assert "DNS-pinned" in (_run_web_fetch.__doc__ or "")
@pytest.mark.asyncio
async def test_run_web_fetch_follows_redirect_when_each_hop_is_allowed():
res_redirect = _aiohttp_response(
302, url="http://8.8.8.8/start", location="/final", body=b""
)
res_ok = _aiohttp_response(200, url="http://8.8.8.8/final", body=b"hello world")
client_cm, session = _aiohttp_client_session_patch(res_redirect, res_ok)
with patch("api.web_tools.outbound.ClientSession", return_value=client_cm):
out = await _run_web_fetch("http://8.8.8.8/start", _STRICT_EGRESS)
assert out["data"] == "hello world"
assert session.get.call_count == 2
@pytest.mark.asyncio
async def test_run_web_fetch_truncates_large_body_to_byte_cap(monkeypatch):
huge = b"x" * 5000
res_ok = _aiohttp_response(200, url="http://8.8.8.8/big", body=huge)
client_cm, _ = _aiohttp_client_session_patch(res_ok)
monkeypatch.setattr(web_tool_constants, "_MAX_WEB_FETCH_RESPONSE_BYTES", 100)
with patch("api.web_tools.outbound.ClientSession", return_value=client_cm):
out = await _run_web_fetch("http://8.8.8.8/big", _STRICT_EGRESS)
assert len(out["data"]) <= 100
assert out["data"] == "x" * 100
@pytest.mark.asyncio
async def test_run_web_fetch_redirect_to_blocked_host_raises():
res_redirect = _aiohttp_response(
302,
url="http://8.8.8.8/start",
location="http://127.0.0.1/secret",
body=b"",
)
client_cm, session = _aiohttp_client_session_patch(res_redirect)
with (
patch("api.web_tools.outbound.ClientSession", return_value=client_cm),
pytest.raises(WebFetchEgressViolation),
):
await _run_web_fetch("http://8.8.8.8/start", _STRICT_EGRESS)
session.get.assert_called_once()
@pytest.mark.asyncio
async def test_run_web_fetch_redirect_without_location_raises():
res_bad = _aiohttp_response(302, url="http://8.8.8.8/here", body=b"")
client_cm, _ = _aiohttp_client_session_patch(res_bad)
with (
patch("api.web_tools.outbound.ClientSession", return_value=client_cm),
pytest.raises(WebFetchEgressViolation, match="missing Location"),
):
await _run_web_fetch("http://8.8.8.8/here", _STRICT_EGRESS)
@pytest.mark.asyncio
async def test_run_web_fetch_excess_redirects_raises():
res1 = _aiohttp_response(302, url="http://8.8.8.8/a", location="/b", body=b"")
res2 = _aiohttp_response(302, url="http://8.8.8.8/b", location="/c", body=b"")
client_cm, _ = _aiohttp_client_session_patch(res1, res2)
with (
patch("api.web_tools.constants._MAX_WEB_FETCH_REDIRECTS", 1),
patch("api.web_tools.outbound.ClientSession", return_value=client_cm),
pytest.raises(WebFetchEgressViolation, match="exceeded maximum redirects"),
):
await _run_web_fetch("http://8.8.8.8/a", _STRICT_EGRESS)
@pytest.mark.asyncio
async def test_streams_web_search_server_tool_result(monkeypatch):
async def fake_search(query: str) -> list[dict[str, str]]:
assert query == "DeepSeek V4 model release 2026"
return [{"title": "DeepSeek V4 Released", "url": "https://example.com/v4"}]
monkeypatch.setattr("api.web_tools.outbound._run_web_search", fake_search)
request = MessagesRequest(
model="claude-haiku-4-5-20251001",
max_tokens=100,
messages=[
Message(
role="user",
content=(
"Perform a web search for the query: DeepSeek V4 model release 2026"
),
)
],
tools=[Tool(name="web_search", type="web_search_20250305")],
tool_choice={"type": "tool", "name": "web_search"},
)
raw = "".join(
[
event
async for event in stream_web_server_tool_response(
request, input_tokens=42, web_fetch_egress=_STRICT_EGRESS
)
]
)
events = parse_sse_text(raw)
assert_anthropic_stream_contract(events)
starts = [e for e in events if e.event == "content_block_start"]
assert starts[0].data["content_block"]["type"] == "server_tool_use"
assert starts[0].data["content_block"]["name"] == "web_search"
tool_use_id = starts[0].data["content_block"]["id"]
assert starts[1].data["content_block"]["type"] == "web_search_tool_result"
assert starts[1].data["content_block"]["tool_use_id"] == tool_use_id
assert starts[1].data["content_block"]["content"][0]["url"] == (
"https://example.com/v4"
)
text_deltas = [
e
for e in events
if e.event == "content_block_delta"
and e.data.get("delta", {}).get("type") == "text_delta"
]
assert text_deltas, "summary must be streamed as text_delta"
assert "example.com" in text_content(events)
cli_text: list[str] = []
for ev in events:
cli_text.extend(
str(p.get("text", ""))
for p in parse_cli_event(ev.data)
if p.get("type") == "text_delta"
)
assert "example.com" in "".join(cli_text)
deltas = [e for e in events if e.event == "message_delta"]
assert deltas[-1].data["usage"]["server_tool_use"] == {"web_search_requests": 1}
@pytest.mark.asyncio
async def test_forced_web_fetch_ignores_stale_url_from_prior_user_turns(monkeypatch):
"""Only the latest user message supplies the URL (not earlier transcript text)."""
target = "https://new-only.example.com/page"
async def fake_fetch(url: str, _egress: WebFetchEgressPolicy) -> dict[str, str]:
assert url == target
return {
"url": url,
"title": "T",
"media_type": "text/plain",
"data": "x",
}
monkeypatch.setattr("api.web_tools.outbound._run_web_fetch", fake_fetch)
request = MessagesRequest(
model="claude-haiku-4-5-20251001",
max_tokens=100,
messages=[
Message(
role="user",
content="Earlier turn https://stale.com/old-article ignore this",
),
Message(role="assistant", content="ok"),
Message(
role="user",
content=f"Please fetch {target} for the summary",
),
],
tools=[Tool(name="web_fetch", type="web_fetch_20250910")],
tool_choice={"type": "tool", "name": "web_fetch"},
)
raw = "".join(
[
event
async for event in stream_web_server_tool_response(
request, input_tokens=1, web_fetch_egress=_STRICT_EGRESS
)
]
)
assert target in raw
@pytest.mark.asyncio
async def test_streams_web_fetch_server_tool_result(monkeypatch):
async def fake_fetch(url: str, _egress: WebFetchEgressPolicy) -> dict[str, str]:
assert url == "https://example.com/article"
return {
"url": url,
"title": "Example Article",
"media_type": "text/plain",
"data": "Article body",
}
monkeypatch.setattr("api.web_tools.outbound._run_web_fetch", fake_fetch)
request = MessagesRequest(
model="claude-haiku-4-5-20251001",
max_tokens=100,
messages=[
Message(role="user", content="Fetch https://example.com/article please")
],
tools=[Tool(name="web_fetch", type="web_fetch_20250910")],
tool_choice={"type": "tool", "name": "web_fetch"},
)
raw = "".join(
[
event
async for event in stream_web_server_tool_response(
request, input_tokens=42, web_fetch_egress=_STRICT_EGRESS
)
]
)
events = parse_sse_text(raw)
assert_anthropic_stream_contract(events)
starts = [e for e in events if e.event == "content_block_start"]
assert starts[0].data["content_block"]["type"] == "server_tool_use"
tool_use_id = starts[0].data["content_block"]["id"]
assert starts[1].data["content_block"]["type"] == "web_fetch_tool_result"
assert starts[1].data["content_block"]["tool_use_id"] == tool_use_id
assert starts[1].data["content_block"]["content"]["content"]["title"] == (
"Example Article"
)
assert any(
e.event == "content_block_delta"
and e.data.get("delta", {}).get("type") == "text_delta"
for e in events
)
assert "Article body" in text_content(events)
cli_text: list[str] = []
for ev in events:
cli_text.extend(
str(p.get("text", ""))
for p in parse_cli_event(ev.data)
if p.get("type") == "text_delta"
)
assert "Article body" in "".join(cli_text)
deltas = [e for e in events if e.event == "message_delta"]
assert deltas[-1].data["usage"]["server_tool_use"] == {"web_fetch_requests": 1}
@pytest.mark.asyncio
async def test_streams_web_fetch_error_summary_generic_by_default(monkeypatch):
secret = "sensitive-upstream-token"
async def boom(_url: str, _egress: WebFetchEgressPolicy) -> dict[str, str]:
raise ValueError(secret)
monkeypatch.setattr("api.web_tools.outbound._run_web_fetch", boom)
request = MessagesRequest(
model="claude-haiku-4-5-20251001",
max_tokens=100,
messages=[
Message(
role="user",
content="Fetch https://example.com/sensitive-path?x=1 please",
)
],
tools=[Tool(name="web_fetch", type="web_fetch_20250910")],
tool_choice={"type": "tool", "name": "web_fetch"},
)
with patch("api.web_tools.outbound.logger.warning") as log_warn:
raw = "".join(
[
event
async for event in stream_web_server_tool_response(
request,
input_tokens=1,
web_fetch_egress=_STRICT_EGRESS,
verbose_client_errors=False,
)
]
)
assert secret not in raw
assert "ValueError" not in raw
assert "Web tool request failed." in raw
err_events = parse_sse_text(raw)
assert_anthropic_stream_contract(err_events)
assert any(
e.event == "content_block_delta"
and e.data.get("delta", {}).get("type") == "text_delta"
for e in err_events
)
cli_err_text: list[str] = []
for ev in err_events:
cli_err_text.extend(
str(p.get("text", ""))
for p in parse_cli_event(ev.data)
if p.get("type") == "text_delta"
)
assert "Web tool request failed." in "".join(cli_err_text)
log_blob = " ".join(str(a) for c in log_warn.call_args_list for a in c.args)
assert secret not in log_blob
assert "example.com" in log_blob
assert "/sensitive-path" not in log_blob
@pytest.mark.asyncio
async def test_streams_web_fetch_error_summary_verbose_includes_exception_class(
monkeypatch,
):
async def boom(_url: str, _egress: WebFetchEgressPolicy) -> dict[str, str]:
raise OSError(5, "oops")
monkeypatch.setattr("api.web_tools.outbound._run_web_fetch", boom)
request = MessagesRequest(
model="claude-haiku-4-5-20251001",
max_tokens=100,
messages=[Message(role="user", content="Fetch https://example.com/x")],
tools=[Tool(name="web_fetch", type="web_fetch_20250910")],
tool_choice={"type": "tool", "name": "web_fetch"},
)
raw = "".join(
[
event
async for event in stream_web_server_tool_response(
request,
input_tokens=1,
web_fetch_egress=_STRICT_EGRESS,
verbose_client_errors=True,
)
]
)
assert "OSError" in raw
@pytest.mark.asyncio
async def test_read_response_body_capped_truncates_single_oversized_chunk():
cap = 500
async def aiter_bytes(chunk_size=None):
yield b"z" * (cap * 20)
response = MagicMock()
response.aiter_bytes = aiter_bytes
out = await _read_response_body_capped(response, cap)
assert len(out) == cap
assert out == b"z" * cap
@pytest.mark.asyncio
async def test_drain_response_body_capped_stops_after_first_chunk_when_oversized():
cap = 300
chunk_calls = {"n": 0}
async def aiter_bytes(chunk_size=None):
chunk_calls["n"] += 1
yield b"y" * (cap * 10)
response = MagicMock()
response.aiter_bytes = aiter_bytes
await _drain_response_body_capped(response, cap)
assert chunk_calls["n"] == 1
@pytest.mark.parametrize("provider_id", _OPENAI_CHAT_PROVIDER_IDS)
def test_service_rejects_listed_server_tools_on_openai_chat(
provider_id: str,
) -> None:
settings = Settings()
service = ApiRequestPipeline(
settings,
provider_getter=lambda _: MagicMock(),
model_router=FixedProviderModelRouter(settings, provider_id),
)
request = MessagesRequest(
model="m",
max_tokens=20,
messages=[Message(role="user", content="q")],
tools=[Tool(name="web_search", type="web_search_20250305")],
)
with pytest.raises(InvalidRequestError, match="OpenAI Chat upstreams"):
service.create_message(request)
@pytest.mark.parametrize("provider_id", _ANTHROPIC_MESSAGES_PROVIDER_IDS)
def test_listed_server_tools_routed_on_anthropic_messages_providers(
provider_id: str,
) -> None:
"""Native Anthropic transports may receive listed server tool definitions."""
settings = Settings()
async def fake_stream(*_a, **_k):
yield 'event: message_start\ndata: {"type":"message_start"}\n\n'
yield 'event: message_stop\ndata: {"type":"message_stop"}\n\n'
mock_provider = MagicMock()
mock_provider.stream_response = fake_stream
service = ApiRequestPipeline(
settings,
provider_getter=lambda _: mock_provider,
model_router=FixedProviderModelRouter(settings, provider_id),
)
request = MessagesRequest(
model="m",
max_tokens=20,
messages=[Message(role="user", content="q")],
tools=[Tool(name="web_search", type="web_search_20250305")],
)
service.create_message(request)
mock_provider.preflight_stream.assert_called()
@pytest.mark.parametrize("provider_id", _ANTHROPIC_MESSAGES_PROVIDER_IDS)
def test_forced_server_tools_routed_on_anthropic_messages_providers_when_local_disabled(
provider_id: str,
) -> None:
"""Native Anthropic transports may receive forced server tools when local tools are off."""
settings = Settings()
async def fake_stream(*_a, **_k):
yield 'event: message_start\ndata: {"type":"message_start"}\n\n'
yield 'event: message_stop\ndata: {"type":"message_stop"}\n\n'
mock_provider = MagicMock()
mock_provider.stream_response = fake_stream
service = ApiRequestPipeline(
settings,
provider_getter=lambda _: mock_provider,
model_router=FixedProviderModelRouter(settings, provider_id),
)
request = MessagesRequest(
model="m",
max_tokens=20,
messages=[Message(role="user", content="q")],
tools=[Tool(name="web_search", type="web_search_20250305")],
tool_choice={"type": "tool", "name": "web_search"},
)
service.create_message(request)
mock_provider.preflight_stream.assert_called()
|