diff --git a/python/helpers/output/EnhancedFormatter.py b/python/helpers/output/EnhancedFormatter.py new file mode 100644 index 000000000..349d8d402 --- /dev/null +++ b/python/helpers/output/EnhancedFormatter.py @@ -0,0 +1,18 @@ +import json + +class EnhancedFormatter: + """ + Enhanced Output Formatter for Agent Zero. + Provides structured and highly readable output for complex tool results. + """ + @staticmethod + def format_json(data): + try: + return json.dumps(data, indent=2) + except: + return str(data) + + @staticmethod + def format_table(headers, rows): + # Implementation of CLI table formatting + return ""