pull/4/head
killian 11 months ago
parent fae3a71bca
commit 2f5cc97b74

@ -72,7 +72,10 @@ interpreter.id = 206 # Used to identify itself to other interpreters. This shoul
### RESET conversations/user.json ### 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) json.dump([], file)

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