Spaces:
Running
on
Zero
Running
on
Zero
jedick
commited on
Commit
·
859642d
1
Parent(s):
5d22ccf
Remove debugging print statements
Browse files- mods/tool_calling_llm.py +3 -3
mods/tool_calling_llm.py
CHANGED
@@ -177,9 +177,9 @@ class ToolCallingLLM(BaseChatModel, ABC):
|
|
177 |
# Extract <think>...</think> content and text after </think> for further processing 20250726 jmd
|
178 |
think_text, post_think = extract_think(response_message.content)
|
179 |
|
180 |
-
|
181 |
-
print("post_think")
|
182 |
-
print(post_think)
|
183 |
|
184 |
# Remove backticks around code blocks
|
185 |
post_think = re.sub(r"^```json", "", post_think)
|
|
|
177 |
# Extract <think>...</think> content and text after </think> for further processing 20250726 jmd
|
178 |
think_text, post_think = extract_think(response_message.content)
|
179 |
|
180 |
+
## For debugging
|
181 |
+
# print("post_think")
|
182 |
+
# print(post_think)
|
183 |
|
184 |
# Remove backticks around code blocks
|
185 |
post_think = re.sub(r"^```json", "", post_think)
|