From ff46b005d42c67efc92c997064fafe073542f0cb Mon Sep 17 00:00:00 2001 From: killian <63927363+KillianLucas@users.noreply.github.com> Date: Mon, 19 Feb 2024 02:23:02 -0800 Subject: [PATCH] Fixed skill library --- 01OS/01OS/server/teach.py | 1 - 1 file changed, 1 deletion(-) diff --git a/01OS/01OS/server/teach.py b/01OS/01OS/server/teach.py index 0435f11..86eac89 100644 --- a/01OS/01OS/server/teach.py +++ b/01OS/01OS/server/teach.py @@ -87,7 +87,6 @@ def teach(): interpreter.computer.languages = [l for l in interpreter.computer.languages if l.name.lower() == "python"] interpreter.force_task_completion = True for chunk in interpreter.chat(step, stream=True, display=False): - print(chunk) if chunk["role"] == "computer" and "start" not in chunk and "end" not in chunk: chunk_type = chunk["type"] chunk_content = chunk["content"]