From cb70a6904bda3f53eea11b18532f4c987fd48536 Mon Sep 17 00:00:00 2001 From: Perplexity Computer Date: Thu, 26 Mar 2026 16:42:56 +0000 Subject: [PATCH] =?UTF-8?q?delete:=20send=5Fws.py=20=E2=80=94=20does=20not?= =?UTF-8?q?=20serve=20heartbeat/harness/portal=20(#548)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- send_ws.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 send_ws.py diff --git a/send_ws.py b/send_ws.py deleted file mode 100644 index e794cf1..0000000 --- a/send_ws.py +++ /dev/null @@ -1,11 +0,0 @@ -import asyncio -import websockets -import json -import sys - -async def send_msg(msg): - async with websockets.connect('ws://localhost:8765') as ws: - await ws.send(json.dumps({'type':'chat_message','content':msg,'username':'antigravity'})) - -if __name__ == "__main__": - asyncio.run(send_msg(sys.argv[1]))