Spaces:
Paused
Paused
File size: 25,294 Bytes
4b03eed | 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 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 | # -*- coding: utf-8 -*-
# pylint: disable=protected-access
"""Test cases for AGUI protocol middleware."""
import json
from typing import AsyncGenerator
from unittest.async_case import IsolatedAsyncioTestCase
from unittest.mock import MagicMock
from fastapi import FastAPI
from fastapi.responses import JSONResponse
from fastapi.responses import StreamingResponse
from fastapi.testclient import TestClient
from agentscope.app.middleware import AGUIProtocolMiddleware
from agentscope.event import (
ConfirmResult,
DataBlockDeltaEvent,
DataBlockEndEvent,
DataBlockStartEvent,
ExceedMaxItersEvent,
ExternalExecutionResultEvent,
ModelCallEndEvent,
ModelCallStartEvent,
ReplyEndEvent,
ReplyStartEvent,
RequireExternalExecutionEvent,
RequireUserConfirmEvent,
TextBlockDeltaEvent,
TextBlockEndEvent,
TextBlockStartEvent,
ThinkingBlockDeltaEvent,
ThinkingBlockEndEvent,
ThinkingBlockStartEvent,
ToolCallDeltaEvent,
ToolCallEndEvent,
ToolCallStartEvent,
ToolResultDataDeltaEvent,
ToolResultEndEvent,
ToolResultStartEvent,
ToolResultTextDeltaEvent,
UserConfirmResultEvent,
)
from agentscope.message import ToolCallBlock, ToolResultBlock, ToolResultState
async def _collect_stream(
mw: AGUIProtocolMiddleware,
chunks: list[str],
) -> str:
"""Collect converted stream chunks as text."""
async def _stream() -> AsyncGenerator[str, None]:
"""Yield the provided chunks."""
for chunk in chunks:
yield chunk
out: list[str] = []
async for item in mw._convert_stream(_stream()):
out.append(item.decode("utf-8"))
return "".join(out)
class AGUIProtocolStreamTest(IsolatedAsyncioTestCase):
"""Test stream-level conversion behavior."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
async def test_raw_json_stream_is_converted(self) -> None:
"""Test raw AgentEvent JSON stream conversion."""
event = ReplyStartEvent(
session_id="sess_1",
reply_id="reply_1",
name="agent",
)
body = await _collect_stream(self.mw, [event.model_dump_json()])
data = json.loads(body)
self.assertEqual(data["type"], "RUN_STARTED")
self.assertEqual(data["threadId"], "sess_1")
self.assertEqual(data["runId"], "reply_1")
async def test_sse_data_frame_is_converted(self) -> None:
"""Test AgentEvent JSON inside an SSE data frame is converted."""
event = ReplyStartEvent(
session_id="sess_1",
reply_id="reply_1",
name="agent",
)
body = await _collect_stream(
self.mw,
[f"data: {event.model_dump_json()}\n\n"],
)
self.assertTrue(body.startswith("data: "))
data = json.loads(body.removeprefix("data: ").strip())
self.assertEqual(data["type"], "RUN_STARTED")
self.assertEqual(data["threadId"], "sess_1")
self.assertEqual(data["runId"], "reply_1")
self.assertNotIn("session_id", data)
async def test_sse_heartbeat_is_passed_through(self) -> None:
"""Test SSE heartbeat frames are not modified."""
self.assertEqual(
await _collect_stream(self.mw, [":\n\n"]),
":\n\n",
)
async def test_sse_data_frame_with_crlf_is_converted(self) -> None:
"""Test AgentEvent JSON inside a CRLF SSE frame is converted."""
event = ReplyStartEvent(
session_id="sess_1",
reply_id="reply_1",
name="agent",
)
body = await _collect_stream(
self.mw,
[f"data: {event.model_dump_json()}\r\n\r\n"],
)
self.assertTrue(body.startswith("data: "))
self.assertTrue(body.endswith("\r\n\r\n"))
data = json.loads(body.removeprefix("data: ").strip())
self.assertEqual(data["type"], "RUN_STARTED")
self.assertEqual(data["threadId"], "sess_1")
self.assertEqual(data["runId"], "reply_1")
async def test_fastapi_sse_response_is_converted(self) -> None:
"""Test middleware converts a real FastAPI SSE response."""
app = FastAPI()
app.add_middleware(AGUIProtocolMiddleware)
@app.get("/sessions/sess_1/stream")
async def stream() -> StreamingResponse:
event = ReplyStartEvent(
session_id="sess_1",
reply_id="reply_1",
name="agent",
)
async def gen() -> AsyncGenerator[str, None]:
yield f"data: {event.model_dump_json()}\n\n"
return StreamingResponse(gen(), media_type="text/event-stream")
client = TestClient(app)
with client.stream("GET", "/sessions/sess_1/stream") as response:
body = "".join(response.iter_text())
self.assertTrue(body.startswith("data: "))
data = json.loads(body.removeprefix("data: ").strip())
self.assertEqual(data["type"], "RUN_STARTED")
self.assertEqual(data["threadId"], "sess_1")
self.assertEqual(data["runId"], "reply_1")
self.assertNotIn("session_id", data)
async def test_fastapi_json_response_is_not_converted(self) -> None:
"""Test non-SSE responses are outside protocol conversion scope."""
app = FastAPI()
app.add_middleware(AGUIProtocolMiddleware)
@app.get("/event")
def event() -> JSONResponse:
agent_event = ReplyStartEvent(
session_id="sess_1",
reply_id="reply_1",
name="agent",
)
return JSONResponse(agent_event.model_dump(mode="json"))
client = TestClient(app)
response = client.get("/event")
self.assertEqual(response.status_code, 200)
data = response.json()
self.assertEqual(data["type"], "REPLY_START")
self.assertEqual(data["session_id"], "sess_1")
self.assertNotIn("RUN_STARTED", response.text)
async def asyncTearDown(self) -> None:
"""The async teardown method."""
class AGUIProtocolLifecycleTest(IsolatedAsyncioTestCase):
"""Test lifecycle event conversions."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
async def test_reply_start_to_run_started(self) -> None:
"""Test ReplyStartEvent -> RUN_STARTED."""
event = ReplyStartEvent(
session_id="sess_1",
reply_id="reply_1",
name="agent",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "RUN_STARTED")
self.assertEqual(result["threadId"], "sess_1")
self.assertEqual(result["runId"], "reply_1")
self.assertNotIn("name", result)
async def test_reply_end_to_run_finished(self) -> None:
"""Test ReplyEndEvent -> RUN_FINISHED."""
event = ReplyEndEvent(
session_id="sess_1",
reply_id="reply_1",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "RUN_FINISHED")
self.assertEqual(result["threadId"], "sess_1")
self.assertEqual(result["runId"], "reply_1")
async def test_exceed_max_iters_to_run_error(self) -> None:
"""Test ExceedMaxItersEvent -> RUN_ERROR."""
event = ExceedMaxItersEvent(
reply_id="reply_1",
name="my_agent",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "RUN_ERROR")
self.assertIn("my_agent", result["message"])
self.assertEqual(result["code"], "exceed_max_iters")
async def asyncTearDown(self) -> None:
"""The async teardown method."""
class AGUIProtocolStepTest(IsolatedAsyncioTestCase):
"""Test model call -> step event conversions."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
async def test_model_call_start_to_step_started(self) -> None:
"""Test ModelCallStartEvent -> STEP_STARTED."""
event = ModelCallStartEvent(
reply_id="reply_1",
model_name="gpt-4",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "STEP_STARTED")
self.assertEqual(result["stepName"], "gpt-4")
async def test_model_call_end_to_step_finished(self) -> None:
"""Test ModelCallEndEvent -> STEP_FINISHED with matching step_name."""
start_event = ModelCallStartEvent(
reply_id="reply_1",
model_name="gpt-4",
)
self.mw._convert_to_protocol(start_event)
end_event = ModelCallEndEvent(
reply_id="reply_1",
input_tokens=100,
output_tokens=50,
)
result = self.mw._convert_to_protocol(end_event)
self.assertEqual(result["type"], "STEP_FINISHED")
self.assertEqual(result["stepName"], "gpt-4")
async def asyncTearDown(self) -> None:
"""The async teardown method."""
class AGUIProtocolTextMessageTest(IsolatedAsyncioTestCase):
"""Test text block -> text message event conversions."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
async def test_text_block_start(self) -> None:
"""Test TextBlockStartEvent -> TEXT_MESSAGE_START."""
event = TextBlockStartEvent(
reply_id="reply_1",
block_id="block_1",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "TEXT_MESSAGE_START")
self.assertEqual(result["messageId"], "block_1")
async def test_text_block_delta(self) -> None:
"""Test TextBlockDeltaEvent -> TEXT_MESSAGE_CONTENT."""
event = TextBlockDeltaEvent(
reply_id="reply_1",
block_id="block_1",
delta="Hello, ",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "TEXT_MESSAGE_CONTENT")
self.assertEqual(result["messageId"], "block_1")
self.assertEqual(result["delta"], "Hello, ")
async def test_text_block_end(self) -> None:
"""Test TextBlockEndEvent -> TEXT_MESSAGE_END."""
event = TextBlockEndEvent(
reply_id="reply_1",
block_id="block_1",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "TEXT_MESSAGE_END")
self.assertEqual(result["messageId"], "block_1")
async def asyncTearDown(self) -> None:
"""The async teardown method."""
class AGUIProtocolReasoningTest(IsolatedAsyncioTestCase):
"""Test thinking block -> reasoning message event conversions."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
async def test_thinking_block_start(self) -> None:
"""Test ThinkingBlockStartEvent -> REASONING_MESSAGE_START."""
event = ThinkingBlockStartEvent(
reply_id="reply_1",
block_id="think_1",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "REASONING_MESSAGE_START")
self.assertEqual(result["messageId"], "think_1")
self.assertEqual(result["role"], "reasoning")
async def test_thinking_block_delta(self) -> None:
"""Test ThinkingBlockDeltaEvent -> REASONING_MESSAGE_CONTENT."""
event = ThinkingBlockDeltaEvent(
reply_id="reply_1",
block_id="think_1",
delta="Let me think...",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "REASONING_MESSAGE_CONTENT")
self.assertEqual(result["messageId"], "think_1")
self.assertEqual(result["delta"], "Let me think...")
async def test_thinking_block_end(self) -> None:
"""Test ThinkingBlockEndEvent -> REASONING_MESSAGE_END."""
event = ThinkingBlockEndEvent(
reply_id="reply_1",
block_id="think_1",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "REASONING_MESSAGE_END")
self.assertEqual(result["messageId"], "think_1")
async def asyncTearDown(self) -> None:
"""The async teardown method."""
class AGUIProtocolToolCallTest(IsolatedAsyncioTestCase):
"""Test tool call event conversions."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
async def test_tool_call_start(self) -> None:
"""Test ToolCallStartEvent -> TOOL_CALL_START."""
event = ToolCallStartEvent(
reply_id="reply_1",
tool_call_id="tc_1",
tool_call_name="search",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "TOOL_CALL_START")
self.assertEqual(result["toolCallId"], "tc_1")
self.assertEqual(result["toolCallName"], "search")
self.assertEqual(result["parentMessageId"], "reply_1")
async def test_tool_call_delta(self) -> None:
"""Test ToolCallDeltaEvent -> TOOL_CALL_ARGS."""
event = ToolCallDeltaEvent(
reply_id="reply_1",
tool_call_id="tc_1",
delta='{"query": "hello"}',
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "TOOL_CALL_ARGS")
self.assertEqual(result["toolCallId"], "tc_1")
self.assertEqual(result["delta"], '{"query": "hello"}')
async def test_tool_call_end(self) -> None:
"""Test ToolCallEndEvent -> TOOL_CALL_END."""
event = ToolCallEndEvent(
reply_id="reply_1",
tool_call_id="tc_1",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "TOOL_CALL_END")
self.assertEqual(result["toolCallId"], "tc_1")
async def asyncTearDown(self) -> None:
"""The async teardown method."""
class AGUIProtocolToolResultTest(IsolatedAsyncioTestCase):
"""Test tool result event conversions."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
async def test_tool_result_end_with_buffered_content(self) -> None:
"""Test that ToolResultEndEvent carries accumulated text content."""
self.mw._convert_to_protocol(
ToolResultTextDeltaEvent(
reply_id="reply_1",
tool_call_id="tc_1",
delta="partial ",
),
)
self.mw._convert_to_protocol(
ToolResultTextDeltaEvent(
reply_id="reply_1",
tool_call_id="tc_1",
delta="result",
),
)
result = self.mw._convert_to_protocol(
ToolResultEndEvent(
reply_id="reply_1",
tool_call_id="tc_1",
state=ToolResultState.SUCCESS,
),
)
self.assertEqual(result["type"], "TOOL_CALL_RESULT")
self.assertEqual(result["toolCallId"], "tc_1")
self.assertEqual(result["messageId"], "reply_1")
self.assertEqual(result["content"], "partial result")
async def test_tool_result_end_fallback_to_state(self) -> None:
"""Test that ToolResultEndEvent falls back to state when no buffer."""
result = self.mw._convert_to_protocol(
ToolResultEndEvent(
reply_id="reply_1",
tool_call_id="tc_1",
state=ToolResultState.ERROR,
),
)
self.assertEqual(result["type"], "TOOL_CALL_RESULT")
self.assertEqual(result["content"], "error")
async def test_tool_result_start_to_custom(self) -> None:
"""Test ToolResultStartEvent -> CUSTOM."""
event = ToolResultStartEvent(
reply_id="reply_1",
tool_call_id="tc_1",
tool_call_name="search",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "tool_result_start")
self.assertIsInstance(result["value"], dict)
async def test_tool_result_text_delta_to_custom(self) -> None:
"""Test ToolResultTextDeltaEvent -> CUSTOM."""
event = ToolResultTextDeltaEvent(
reply_id="reply_1",
tool_call_id="tc_1",
delta="partial result",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "tool_result_text_delta")
self.assertEqual(result["value"]["delta"], "partial result")
async def test_tool_result_data_delta_to_custom(self) -> None:
"""Test ToolResultDataDeltaEvent -> CUSTOM."""
event = ToolResultDataDeltaEvent(
reply_id="reply_1",
tool_call_id="tc_1",
media_type="image/png",
data="base64data",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "tool_result_data_delta")
self.assertEqual(result["value"]["media_type"], "image/png")
async def asyncTearDown(self) -> None:
"""The async teardown method."""
class AGUIProtocolDataBlockTest(IsolatedAsyncioTestCase):
"""Test data block -> custom event conversions."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
async def test_data_block_start(self) -> None:
"""Test DataBlockStartEvent -> CUSTOM."""
event = DataBlockStartEvent(
reply_id="reply_1",
block_id="db_1",
media_type="image/png",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "data_block_start")
self.assertEqual(result["value"]["media_type"], "image/png")
async def test_data_block_delta(self) -> None:
"""Test DataBlockDeltaEvent -> CUSTOM."""
event = DataBlockDeltaEvent(
reply_id="reply_1",
block_id="db_1",
data="base64chunk",
media_type="image/png",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "data_block_delta")
self.assertEqual(result["value"]["data"], "base64chunk")
async def test_data_block_end(self) -> None:
"""Test DataBlockEndEvent -> CUSTOM."""
event = DataBlockEndEvent(
reply_id="reply_1",
block_id="db_1",
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "data_block_end")
async def asyncTearDown(self) -> None:
"""The async teardown method."""
class AGUIProtocolPermissionTest(IsolatedAsyncioTestCase):
"""Test permission-related event conversions."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
async def test_require_user_confirm(self) -> None:
"""Test RequireUserConfirmEvent -> CUSTOM."""
event = RequireUserConfirmEvent(
reply_id="reply_1",
tool_calls=[
ToolCallBlock(
id="tc_1",
name="bash",
input='{"command": "ls"}',
),
],
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "require_user_confirm")
self.assertIn("tool_calls", result["value"])
async def test_require_external_execution(self) -> None:
"""Test RequireExternalExecutionEvent -> CUSTOM."""
event = RequireExternalExecutionEvent(
reply_id="reply_1",
tool_calls=[
ToolCallBlock(
id="tc_2",
name="external_api",
input="{}",
),
],
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "require_external_execution")
async def test_user_confirm_result(self) -> None:
"""Test UserConfirmResultEvent -> CUSTOM."""
event = UserConfirmResultEvent(
reply_id="reply_1",
confirm_results=[
ConfirmResult(
confirmed=True,
tool_call=ToolCallBlock(
id="tc_1",
name="bash",
input='{"command": "ls"}',
),
),
],
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "user_confirm_result")
async def test_external_execution_result(self) -> None:
"""Test ExternalExecutionResultEvent -> CUSTOM."""
event = ExternalExecutionResultEvent(
reply_id="reply_1",
execution_results=[
ToolResultBlock(
id="tc_2",
name="external_api",
output="result data",
),
],
)
result = self.mw._convert_to_protocol(event)
self.assertEqual(result["type"], "CUSTOM")
self.assertEqual(result["name"], "external_execution_result")
async def asyncTearDown(self) -> None:
"""The async teardown method."""
class AGUIProtocolCamelCaseTest(IsolatedAsyncioTestCase):
"""Verify that all output dicts use camelCase keys as AGUI requires."""
async def asyncSetUp(self) -> None:
"""The async setup method."""
self.mw = AGUIProtocolMiddleware(app=MagicMock())
def _assert_no_snake_case_keys(self, d: dict, context: str) -> None:
"""Assert none of the top-level keys contain underscores."""
for key in d:
if key == "value":
continue
self.assertNotIn(
"_",
key,
f"Key '{key}' in {context} should be camelCase",
)
async def test_all_standard_events_produce_camel_case(self) -> None:
"""Test that all directly-mapped events produce camelCase keys."""
events = [
ReplyStartEvent(
session_id="s",
reply_id="r",
name="a",
),
ReplyEndEvent(session_id="s", reply_id="r"),
ModelCallStartEvent(reply_id="r", model_name="m"),
ModelCallEndEvent(
reply_id="r",
input_tokens=1,
output_tokens=1,
),
TextBlockStartEvent(reply_id="r", block_id="b"),
TextBlockDeltaEvent(reply_id="r", block_id="b", delta="x"),
TextBlockEndEvent(reply_id="r", block_id="b"),
ThinkingBlockStartEvent(reply_id="r", block_id="b"),
ThinkingBlockDeltaEvent(reply_id="r", block_id="b", delta="x"),
ThinkingBlockEndEvent(reply_id="r", block_id="b"),
ToolCallStartEvent(
reply_id="r",
tool_call_id="t",
tool_call_name="n",
),
ToolCallDeltaEvent(
reply_id="r",
tool_call_id="t",
delta="x",
),
ToolCallEndEvent(reply_id="r", tool_call_id="t"),
ExceedMaxItersEvent(reply_id="r", name="a"),
]
for event in events:
result = self.mw._convert_to_protocol(event)
self._assert_no_snake_case_keys(
result,
type(event).__name__,
)
async def asyncTearDown(self) -> None:
"""The async teardown method."""
|