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 1667072
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:76cddcf84b218c2cd3decf1c05dc23b7c0e23ca446dfd34e79608733f49e4b24
|
3 |
size 1667072
|
controllers/gra_02_openInterpreter/OpenInterpreter.py
CHANGED
@@ -9,7 +9,7 @@ import duckdb
|
|
9 |
|
10 |
def format_response(chunk, full_response):
|
11 |
# Message
|
12 |
-
if chunk["type"] == "
|
13 |
full_response += chunk.get("content", "")
|
14 |
if chunk.get("end", False):
|
15 |
full_response += "\n"
|
|
|
9 |
|
10 |
def format_response(chunk, full_response):
|
11 |
# Message
|
12 |
+
if chunk["type"] == "message":
|
13 |
full_response += chunk.get("content", "")
|
14 |
if chunk.get("end", False):
|
15 |
full_response += "\n"
|