Spaces:
Sleeping
Sleeping
update
Browse files
chat_history.db
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:10085e1adf084d361ac6d757d58a655b8f55e58bdb0cdd99e06dc0fa687bea1c
|
3 |
+
size 1859584
|
controllers/gra_02_openInterpreter/OpenInterpreter.py
CHANGED
@@ -136,7 +136,7 @@ def chat_with_interpreter(message, history=None, a=None, b=None, c=None, d=None)
|
|
136 |
interpreter.messages.append(user_entry)
|
137 |
add_message_to_db("user", "message", message)
|
138 |
|
139 |
-
for chunk in interpreter.chat(message, display=False, stream=
|
140 |
if isinstance(chunk, dict):
|
141 |
full_response = format_response(chunk, full_response)
|
142 |
else:
|
|
|
136 |
interpreter.messages.append(user_entry)
|
137 |
add_message_to_db("user", "message", message)
|
138 |
|
139 |
+
for chunk in interpreter.chat(message, display=False, stream=True):
|
140 |
if isinstance(chunk, dict):
|
141 |
full_response = format_response(chunk, full_response)
|
142 |
else:
|