This commit is contained in:
killian 2024-02-03 17:23:29 -08:00
parent fae3a71bca
commit 2f5cc97b74
23 changed files with 9 additions and 5 deletions

Binary file not shown.

View File

@ -72,7 +72,10 @@ interpreter.id = 206 # Used to identify itself to other interpreters. This shoul
### RESET conversations/user.json
with open('interpreter/conversations/user.json', 'w') as file:
script_dir = os.path.dirname(os.path.abspath(__file__))
user_json_path = os.path.join(script_dir, 'conversations', 'user.json')
with open(user_json_path, 'w') as file:
json.dump([], file)

0
OS/01/assistant/tts.py Normal file
View File

View File

0
OS/01/computer/run.py Normal file
View File

View File

@ -1,4 +1,5 @@
pip install git+https://github.com/KillianLucas/open-interpreter.git
pip install redis
pip install fastapi
pip install uvicorn
git+https://github.com/KillianLucas/open-interpreter.git
redis
fastapi
uvicorn
RPi.GPIO

0
OS/01/user/user.py Normal file
View File