We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec96994 commit 7b52ed2Copy full SHA for 7b52ed2
tests/integration/test_client_server_integration.py
@@ -1,4 +1,5 @@
1
import asyncio
2
+
3
from collections.abc import AsyncGenerator
4
from typing import NamedTuple
5
from unittest.mock import ANY, AsyncMock
@@ -7,6 +8,7 @@
7
8
import httpx
9
import pytest
10
import pytest_asyncio
11
12
from grpc.aio import Channel
13
14
from a2a.client.transports import JsonRpcTransport, RestTransport
@@ -20,10 +22,10 @@
20
22
AgentCard,
21
23
AgentInterface,
24
GetTaskPushNotificationConfigParams,
- Message,
- MessageSendParams,
25
ListTasksParams,
26
ListTasksResult,
27
+ Message,
28
+ MessageSendParams,
29
Part,
30
PushNotificationConfig,
31
Role,
@@ -38,6 +40,7 @@
38
40
TransportProtocol,
39
41
)
42
43
44
# --- Test Constants ---
45
46
TASK_FROM_STREAM = Task(
0 commit comments