add logs
Browse files
tools/query_server_status.py
CHANGED
|
@@ -32,6 +32,9 @@ class QueryServerTool(Tool):
|
|
| 32 |
|
| 33 |
# Remove multiple line breaks
|
| 34 |
markdown_content = re.sub(r"\n{3,}", "\n\n", markdown_content)
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
return truncate_content(markdown_content, 10000)
|
| 37 |
|
|
|
|
| 32 |
|
| 33 |
# Remove multiple line breaks
|
| 34 |
markdown_content = re.sub(r"\n{3,}", "\n\n", markdown_content)
|
| 35 |
+
print("----> tool log")
|
| 36 |
+
print(markdown_content)
|
| 37 |
+
print("---end tool log ---")
|
| 38 |
|
| 39 |
return truncate_content(markdown_content, 10000)
|
| 40 |
|