From e44e5074384a03683a4676611e453587230e78db Mon Sep 17 00:00:00 2001
From: killian <63927363+KillianLucas@users.noreply.github.com>
Date: Sun, 24 Mar 2024 16:47:07 -0700
Subject: [PATCH 1/4] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 334949d..91406e4 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
The open-source language model computer.
-
+
Preorder the Light | Get Updates | Documentation
From f6edc0714a84667da48acf8a5ac7d6f859214aef Mon Sep 17 00:00:00 2001
From: killian <63927363+KillianLucas@users.noreply.github.com>
Date: Sun, 24 Mar 2024 16:47:46 -0700
Subject: [PATCH 2/4] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 91406e4..0e2eb54 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
The open-source language model computer.
-
Preorder the Light | Get Updates | Documentation
+
Preorder the Light | Get Updates | Documentation
From 4e416cef44b9b57e7a3dee7e15a062ed966b9013 Mon Sep 17 00:00:00 2001
From: killian <63927363+KillianLucas@users.noreply.github.com>
Date: Sun, 24 Mar 2024 16:54:25 -0700
Subject: [PATCH 3/4] Added LMC animation
---
README.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 0e2eb54..c3e3de9 100644
--- a/README.md
+++ b/README.md
@@ -78,7 +78,9 @@ The 01 wraps this in a voice interface:
## LMC Messages
-To communicate with different components of this system, we introduce [LMC Messages](https://docs.openinterpreter.com/protocols/lmc-messages) format, which extends OpenAI’s messages format to include a "computer" role.
+To communicate with different components of this system, we introduce [LMC Messages](https://docs.openinterpreter.com/protocols/lmc-messages) format, which extends OpenAI’s messages format to include a "computer" role:
+
+https://github.com/OpenInterpreter/01/assets/63927363/8621b075-e052-46ba-8d2e-d64b9f2a5da9
## Dynamic System Messages
From 1a8f6b9cfd74f084bb531a493d0dda1d8fc590dd Mon Sep 17 00:00:00 2001
From: killian <63927363+KillianLucas@users.noreply.github.com>
Date: Sun, 24 Mar 2024 17:02:47 -0700
Subject: [PATCH 4/4] Better messaging
---
software/source/clients/base_device.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/software/source/clients/base_device.py b/software/source/clients/base_device.py
index 89d63df..cc152b3 100644
--- a/software/source/clients/base_device.py
+++ b/software/source/clients/base_device.py
@@ -256,9 +256,9 @@ class Device:
try:
async with websockets.connect(WS_URL) as websocket:
if CAMERA_ENABLED:
- print("\nPress the spacebar to start/stop recording. Press 'c' to capture an image from the camera. Press CTRL-C to exit.")
+ print("\nHold the spacebar to start recording. Press 'c' to capture an image from the camera. Press CTRL-C to exit.")
else:
- print("\nPress the spacebar to start/stop recording. Press CTRL-C to exit.")
+ print("\Hold the spacebar to start recording. Press CTRL-C to exit.")
asyncio.create_task(self.message_sender(websocket))