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 1634304
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c1582af772283880fac9add4652ef74df9ed59998d18e13a1135a05834136236
|
3 |
size 1634304
|
controllers/gra_02_openInterpreter/OpenInterpreter.py
CHANGED
@@ -15,7 +15,7 @@ def format_response(chunk, full_response):
|
|
15 |
# Code
|
16 |
if chunk["type"] == "code":
|
17 |
if chunk.get("start", False):
|
18 |
-
full_response += "
|
19 |
full_response += chunk.get("content", "").replace("`", "")
|
20 |
if chunk.get("end", False):
|
21 |
full_response += "\n```\n"
|
|
|
15 |
# Code
|
16 |
if chunk["type"] == "code":
|
17 |
if chunk.get("start", False):
|
18 |
+
full_response += "```\n"
|
19 |
full_response += chunk.get("content", "").replace("`", "")
|
20 |
if chunk.get("end", False):
|
21 |
full_response += "\n```\n"
|