Fix win10 not connecting to websocket server

pull/198/head
Davy Peter Braun 10 months ago
parent 8fca2645e7
commit 9c15d3f319

1271
software/poetry.lock generated

File diff suppressed because it is too large Load Diff

@ -24,6 +24,7 @@ import tempfile
from datetime import datetime from datetime import datetime
import cv2 import cv2
import base64 import base64
import platform
from interpreter import interpreter # Just for code execution. Maybe we should let people do from interpreter.computer import run? from interpreter import interpreter # Just for code execution. Maybe we should let people do from interpreter.computer import run?
# In the future, I guess kernel watching code should be elsewhere? Somewhere server / client agnostic? # In the future, I guess kernel watching code should be elsewhere? Somewhere server / client agnostic?
from ..server.utils.kernel import put_kernel_messages_into_queue from ..server.utils.kernel import put_kernel_messages_into_queue
@ -58,6 +59,7 @@ CAMERA_WARMUP_SECONDS = float(os.getenv('CAMERA_WARMUP_SECONDS', 0))
# Specify OS # Specify OS
current_platform = get_system_info() current_platform = get_system_info()
is_win10 = lambda: platform.system() == "Windows" and "10" in platform.version()
# Initialize PyAudio # Initialize PyAudio
p = pyaudio.PyAudio() p = pyaudio.PyAudio()
@ -252,65 +254,79 @@ class Device:
async def websocket_communication(self, WS_URL): async def websocket_communication(self, WS_URL):
show_connection_log = True show_connection_log = True
while True:
try:
async with websockets.connect(WS_URL) as websocket:
if CAMERA_ENABLED:
print("\nHold the spacebar to start recording. Press 'c' to capture an image from the camera. Press CTRL-C to exit.")
else:
print("\nHold the spacebar to start recording. Press CTRL-C to exit.")
asyncio.create_task(self.message_sender(websocket)) async def exec_ws_communication(websocket):
if CAMERA_ENABLED:
print("\nHold the spacebar to start recording. Press 'c' to capture an image from the camera. Press CTRL-C to exit.")
else:
print("\nHold the spacebar to start recording. Press CTRL-C to exit.")
while True: asyncio.create_task(self.message_sender(websocket))
await asyncio.sleep(0.01)
chunk = await websocket.recv()
logger.debug(f"Got this message from the server: {type(chunk)} {chunk}") while True:
await asyncio.sleep(0.01)
chunk = await websocket.recv()
if type(chunk) == str: logger.debug(f"Got this message from the server: {type(chunk)} {chunk}")
chunk = json.loads(chunk)
message = accumulator.accumulate(chunk) if type(chunk) == str:
if message == None: chunk = json.loads(chunk)
# Will be None until we have a full message ready
continue
# At this point, we have our message message = accumulator.accumulate(chunk)
if message == None:
# Will be None until we have a full message ready
continue
if message["type"] == "audio" and message["format"].startswith("bytes"): # At this point, we have our message
# Convert bytes to audio file if message["type"] == "audio" and message["format"].startswith("bytes"):
audio_bytes = message["content"] # Convert bytes to audio file
# Create an AudioSegment instance with the raw data audio_bytes = message["content"]
audio = AudioSegment(
# raw audio data (bytes)
data=audio_bytes,
# signed 16-bit little-endian format
sample_width=2,
# 16,000 Hz frame rate
frame_rate=16000,
# mono sound
channels=1
)
self.audiosegments.append(audio) # Create an AudioSegment instance with the raw data
audio = AudioSegment(
# raw audio data (bytes)
data=audio_bytes,
# signed 16-bit little-endian format
sample_width=2,
# 16,000 Hz frame rate
frame_rate=16000,
# mono sound
channels=1
)
# Run the code if that's the client's job self.audiosegments.append(audio)
if os.getenv('CODE_RUNNER') == "client":
if message["type"] == "code" and "end" in message: # Run the code if that's the client's job
language = message["format"] if os.getenv('CODE_RUNNER') == "client":
code = message["content"] if message["type"] == "code" and "end" in message:
result = interpreter.computer.run(language, code) language = message["format"]
send_queue.put(result) code = message["content"]
except: result = interpreter.computer.run(language, code)
logger.debug(traceback.format_exc()) send_queue.put(result)
if show_connection_log:
logger.info(f"Connecting to `{WS_URL}`...") if is_win10():
show_connection_log = False logger.info('Windows 10 detected')
await asyncio.sleep(2) # Workaround for Windows 10 not latching to the websocket server.
# See https://github.com/OpenInterpreter/01/issues/197
try:
ws = websockets.connect(WS_URL)
await exec_ws_communication(ws)
except Exception as e:
logger.error(f"Error while attempting to connect: {e}")
else:
while True:
try:
async with websockets.connect(WS_URL) as websocket:
await exec_ws_communication(websocket)
except:
logger.debug(traceback.format_exc())
if show_connection_log:
logger.info(f"Connecting to `{WS_URL}`...")
show_connection_log = False
await asyncio.sleep(2)
async def start_async(self): async def start_async(self):
# Configuration for WebSocket # Configuration for WebSocket

Loading…
Cancel
Save