Update
This commit is contained in:
parent
fae3a71bca
commit
2f5cc97b74
Binary file not shown.
|
@ -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)
|
||||
|
||||
|
|
@ -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
|
Loading…
Reference in New Issue