Skip to content

Commit 461b2e7

Browse files
committed
sponsor
1 parent 5149c8b commit 461b2e7

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# These are supported funding model platforms
22

33
# GitHub Sponsors
4-
github: # Add your GitHub Sponsors username here if you set it up
4+
github: hydropix
55

66
# Custom links (Stripe, Buy Me a Coffee, etc.)
77
custom: ['https://buy.stripe.com/bJe3cvdlxdy16fD7065wI00']

src/utils/unified_logger.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,11 @@ def _format_llm_response(self, data: Dict[str, Any]) -> str:
189189
if 'execution_time' in data:
190190
output.append(f"{Colors.GRAY}Execution time: {data['execution_time']:.2f} seconds{Colors.ENDC}")
191191

192-
# Full response
193-
output.append(f"\n{Colors.GREEN}RAW RESPONSE:{Colors.ENDC}")
194-
output.append(f"{Colors.GREEN}{data.get('response', '')}{Colors.ENDC}")
192+
# Full response only in debug mode for console
193+
# (UI always receives the full data via web_callback)
194+
if self.min_level == LogLevel.DEBUG:
195+
output.append(f"\n{Colors.GREEN}RAW RESPONSE:{Colors.ENDC}")
196+
output.append(f"{Colors.GREEN}{data.get('response', '')}{Colors.ENDC}")
195197

196198
return '\n'.join(output)
197199

0 commit comments

Comments
 (0)