diff --git a/README.md b/README.md index c3e3de9..3272b92 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ poetry run 01 # Runs the 01 Light simulator (hold your spacebar, speak, release) The 01 exposes a speech-to-speech websocket at `localhost:10001`. -If you stream raw audio bytes to `/` in [LMC format](https://docs.openinterpreter.com/protocols/lmc-messages), you will receive its response in the same format. +If you stream raw audio bytes to `/` in [Streaming LMC format](https://docs.openinterpreter.com/guides/streaming-response), you will receive its response in the same format. Inspired in part by [Andrej Karpathy's LLM OS](https://twitter.com/karpathy/status/1723140519554105733), we run a [code-interpreting language model](https://github.com/OpenInterpreter/open-interpreter), and call it when certain events occur at your computer's [kernel](https://github.com/OpenInterpreter/01/blob/main/software/source/server/utils/kernel.py). diff --git a/hardware/light/bodies/v1/01 Light v1 - Bottom.STL b/hardware/light/bodies/v1/01 Light v1 - Bottom.STL index 01e5b1f..c6cc934 100644 Binary files a/hardware/light/bodies/v1/01 Light v1 - Bottom.STL and b/hardware/light/bodies/v1/01 Light v1 - Bottom.STL differ diff --git a/hardware/light/bodies/v1/01 Light v1 - Top.STL b/hardware/light/bodies/v1/01 Light v1 - Top.STL index 41f4ecc..4e7e496 100644 Binary files a/hardware/light/bodies/v1/01 Light v1 - Top.STL and b/hardware/light/bodies/v1/01 Light v1 - Top.STL differ diff --git a/software/source/clients/base_device.py b/software/source/clients/base_device.py index cc152b3..40af5a2 100644 --- a/software/source/clients/base_device.py +++ b/software/source/clients/base_device.py @@ -258,7 +258,7 @@ class Device: 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("\Hold the spacebar to start recording. Press CTRL-C to exit.") + print("\nHold the spacebar to start recording. Press CTRL-C to exit.") asyncio.create_task(self.message_sender(websocket)) @@ -351,4 +351,4 @@ class Device: def start(self): if os.getenv('TEACH_MODE') != "True": asyncio.run(self.start_async()) - p.terminate() \ No newline at end of file + p.terminate()