pull/51/head
killian 11 months ago
parent 87d9ec8e1f
commit 249ad7858b

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

@ -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`.") print("Temporarily skipping skills (OI 0.2.1, which is unreleased) so we can push to `pip`.")
pass pass
interpreter.computer.run("python", "tasks=[]")
interpreter.computer.api_base = "https://oi-video-frame.vercel.app/" interpreter.computer.api_base = "https://oi-video-frame.vercel.app/"
interpreter.computer.run("python","print('test')") interpreter.computer.run("python","print('test')")

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

@ -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. 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 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. 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. Try to spread complex tasks over multiple code blocks.
Manually summarize text. Manually summarize text.

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

Loading…
Cancel
Save