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 ac31ebe commit 393c7cbCopy full SHA for 393c7cb
examples/helloworld/test_client.py
@@ -30,14 +30,6 @@ async def main() -> None:
30
response = await client.send_message(request)
31
print(response.model_dump(mode='json', exclude_none=True))
32
33
- streaming_request = SendStreamingMessageRequest(
34
- params=MessageSendParams(**send_message_payload)
35
- )
36
-
37
- stream_response = client.send_message_streaming(streaming_request)
38
- async for chunk in stream_response:
39
- print(chunk.model_dump(mode='json', exclude_none=True))
40
41
42
if __name__ == '__main__':
43
import asyncio
0 commit comments