From 393c7cb051265d126563e22c34016553995de885 Mon Sep 17 00:00:00 2001 From: Andy Date: Thu, 15 May 2025 12:07:59 +0800 Subject: [PATCH] fix: examples-helloworld-test_client.py --- examples/helloworld/test_client.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/examples/helloworld/test_client.py b/examples/helloworld/test_client.py index 0ade8d2a..ccc44e3a 100644 --- a/examples/helloworld/test_client.py +++ b/examples/helloworld/test_client.py @@ -30,14 +30,6 @@ async def main() -> None: response = await client.send_message(request) print(response.model_dump(mode='json', exclude_none=True)) - streaming_request = SendStreamingMessageRequest( - params=MessageSendParams(**send_message_payload) - ) - - stream_response = client.send_message_streaming(streaming_request) - async for chunk in stream_response: - print(chunk.model_dump(mode='json', exclude_none=True)) - if __name__ == '__main__': import asyncio