Feat : better print of think process and answer

This commit is contained in:
martin legrand
2025-02-28 16:29:07 +01:00
parent c5da8319bf
commit 5bc2c26757
10 changed files with 103 additions and 58 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ def pretty_print(text, color = "info"):
}
if color not in color_map:
print(text)
pretty_print("Invalid color in pretty_print", "warning")
pretty_print(f"Invalid color {color} in pretty_print", "warning")
return
print(color_map[color], text, Fore.RESET)
else: