kenken999 commited on
Commit
ab7f9ab
·
1 Parent(s): 39124e1
chat_history.db CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:41be0944154a4561da12542b978ee5c017a7d15cc7bacf4e434dad48406d58c9
3
- size 1642496
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d07930be4aba3be4d2490a9c9b9108028e5c2075056f8e29c854a7ee20137a70
3
+ size 1646592
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 += "```\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 += "```python\n"
19
  full_response += chunk.get("content", "").replace("`", "")
20
  if chunk.get("end", False):
21
  full_response += "\n```\n"