Skip to content

Commit 393c7cb

Browse files
Andyholtskinner
authored andcommitted
fix: examples-helloworld-test_client.py
1 parent ac31ebe commit 393c7cb

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

examples/helloworld/test_client.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ async def main() -> None:
3030
response = await client.send_message(request)
3131
print(response.model_dump(mode='json', exclude_none=True))
3232

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-
4133

4234
if __name__ == '__main__':
4335
import asyncio

0 commit comments

Comments
 (0)