We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d595fbd commit 0932a76Copy full SHA for 0932a76
1 file changed
sqlbot/interfaces/unified_display.py
@@ -105,7 +105,12 @@ def execute_query_with_unified_display(
105
time.sleep(0.1)
106
try:
107
# Execute LLM query while showing thinking indicator
108
+ print(f"DEBUG unified_display: About to call execute_llm_func with query: {query[:50]}...")
109
+ import sys
110
+ sys.stdout.flush()
111
result = execute_llm_func(query)
112
+ print(f"DEBUG unified_display: execute_llm_func returned!")
113
114
115
# Replace thinking message with actual result in memory
116
if result:
0 commit comments