kenken999 commited on
Commit
618765a
·
1 Parent(s): 9ac9d24
chat_history.db CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:efe04abc67a6b5d1d52f22e28d77183c97cb1eba9a6636046e2c0c7f3cd11669
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 += "```python\n"
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"