01
01 copied to clipboard
The open-source language model computer
**Describe the bug** An exception happens `asyncio.exceptions.CancelledError` on boot with `LOG_LEVEL` set to `DEBUG`: ```shell Traceback (most recent call last): File "/home/orangepi/projects/01/software/source/clients/base_device.py", line 358, in websocket_communication async with websockets.connect(WS_URL) as...
**Describe the bug** Getting this below error when running, ○ Starting... Traceback (most recent call last): File "", line 1, in File "/usr/lib/python3.11/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package,...
How can I change the llm that the 01 is connecting with? As I've understood by default it's GPT 4 which is very expensive to use as API. How can...
a potential workaround and i have also added a try and catch error incase the openinterpreter API fails we try googlesearch using python-googlesearch library and in case that fails too...
Fixing `asyncio.Queue` creation and usage by decoupling app, queues, and uvicorn config. This fixes issue #244. Creating `from_user` and `to_device` outside the main coroutine event loop creates futures in another...
**Describe the bug** [Asyncio queues are created](https://github.com/OpenInterpreter/01/blob/132478912369b67ab30d9c1d54f42af949789993/software/source/server/server.py#L60C1-L60C9) outside of the [current event loop](https://github.com/OpenInterpreter/01/blob/132478912369b67ab30d9c1d54f42af949789993/software/source/server/server.py#L489) which results in this error: ``` shell Task got Future attached to a different loop ``` This...
Added support for Ctrl-C on Windows and added alternate process kill utility for Windows. Fixes #231
**Describe the bug** I have the latest version of the server and am running the build-it-yourself device but it seems to have a LOT of trouble trying to grab new...
Addresses #234 The approach is to check if model is available then request its details file to compare cryptographic hashes. Even if it fails validation, loading of the 01OS system...