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:64a3a1fd4db23c868a8e7e89aa956cc0bbf18be31de69a98568384c2d9ec98bb
|
3 |
+
size 1826816
|
controllers/gra_02_openInterpreter/OpenInterpreter.py
CHANGED
@@ -10,7 +10,7 @@ def format_response(chunk, full_response):
|
|
10 |
if chunk["type"] == "message":
|
11 |
full_response += chunk.get("content", "")
|
12 |
if chunk.get("end", False):
|
13 |
-
full_response += "\n"
|
14 |
|
15 |
# Code
|
16 |
if chunk["type"] == "code":
|
|
|
10 |
if chunk["type"] == "message":
|
11 |
full_response += chunk.get("content", "")
|
12 |
if chunk.get("end", False):
|
13 |
+
full_response += "\n```\n"
|
14 |
|
15 |
# Code
|
16 |
if chunk["type"] == "code":
|
workspace/sample.py
CHANGED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""Hello World
|
2 |
+
|
3 |
+
This is a sample Python script."""
|
4 |
+
hello
|