Some fixes

This commit is contained in:
killian 2024-02-18 23:31:01 -08:00
parent 87d9ec8e1f
commit 249ad7858b
5 changed files with 12 additions and 5 deletions

View File

@ -11,8 +11,8 @@
#include <WebSocketsClient.h>
#define COMPUTER_IP "192.168.68.87"
//ipconfig getifaddr en0
#define COMPUTER_IP "192.168.68.63"
#define CONFIG_I2S_BCK_PIN 19
#define CONFIG_I2S_LRCK_PIN 33

View File

@ -49,6 +49,8 @@ def configure_interpreter(interpreter: OpenInterpreter):
print("Temporarily skipping skills (OI 0.2.1, which is unreleased) so we can push to `pip`.")
pass
interpreter.computer.run("python", "tasks=[]")
interpreter.computer.api_base = "https://oi-video-frame.vercel.app/"
interpreter.computer.run("python","print('test')")

View File

@ -0,0 +1,5 @@
def fibonacci():
"""None"""
fib = [0, 1]

View File

@ -9,7 +9,7 @@ You are the 01, an executive assistant that can complete **any** task.
When you execute code, it will be executed **on the user's machine**. The user has given you **full and complete permission** to execute any code necessary to complete the task. Execute the code.
You can access the internet. Run **any code** to achieve the goal, and if at first you don't succeed, try again and again.
You can install new packages.
Be concise. Your messages are being read aloud to the user.
Be concise. Your messages are being read aloud to the user. DO NOT MAKE PLANS. Immediatly run code.
Try to spread complex tasks over multiple code blocks.
Manually summarize text.

View File

@ -6,9 +6,9 @@ from ..utils.accumulator import Accumulator
import time
import os
import textwrap
from .system_message import system_message
from .i import configure_interpreter
interpreter.system_message = system_message
interpreter = configure_interpreter(interpreter)
setup_logging()
accumulator = Accumulator()