openclaw - 💡(How to fix) Fix [Feature Request] Show "thinking" indicator while waiting for model response [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openclaw/openclaw#59723Fetched 2026-04-08 02:41:21
View on GitHub
Comments
1
Participants
2
Timeline
2
Reactions
0
Author
Participants
Timeline (top)
commented ×1labeled ×1

Is your feature request related to a problem?

When a user sends a message in the Control UI, there's no visual feedback while waiting for the model to respond. The UI appears frozen, and users can't tell if the message was sent or if the system is processing.

Describe the solution you'd like

Show a typing/thinking indicator (e.g., animated dots, "Thinking..." bubble, or a spinner) in the chat area immediately after the user sends a message, and replace it with the actual response once it arrives. Similar to what ChatGPT, Claude, and most modern chat UIs do.

Additional context

This is especially noticeable with slower models or complex prompts where response time can be 10-30+ seconds. A simple loading state would greatly improve UX.

Root Cause

Is your feature request related to a problem?

When a user sends a message in the Control UI, there's no visual feedback while waiting for the model to respond. The UI appears frozen, and users can't tell if the message was sent or if the system is processing.

Describe the solution you'd like

Show a typing/thinking indicator (e.g., animated dots, "Thinking..." bubble, or a spinner) in the chat area immediately after the user sends a message, and replace it with the actual response once it arrives. Similar to what ChatGPT, Claude, and most modern chat UIs do.

Additional context

This is especially noticeable with slower models or complex prompts where response time can be 10-30+ seconds. A simple loading state would greatly improve UX.

RAW_BUFFERClick to expand / collapse

Summary

Is your feature request related to a problem?

When a user sends a message in the Control UI, there's no visual feedback while waiting for the model to respond. The UI appears frozen, and users can't tell if the message was sent or if the system is processing.

Describe the solution you'd like

Show a typing/thinking indicator (e.g., animated dots, "Thinking..." bubble, or a spinner) in the chat area immediately after the user sends a message, and replace it with the actual response once it arrives. Similar to what ChatGPT, Claude, and most modern chat UIs do.

Additional context

This is especially noticeable with slower models or complex prompts where response time can be 10-30+ seconds. A simple loading state would greatly improve UX.

Problem to solve

none

Proposed solution

none

Alternatives considered

No response

Impact

none

Evidence/examples

No response

Additional information

No response

extent analysis

TL;DR

Implement a visual loading indicator in the chat UI to provide feedback to users while waiting for model responses.

Guidance

  • Identify the point in the code where the message is sent and the model response is received to determine where to add the loading indicator.
  • Choose a suitable loading indicator (e.g., animated dots, "Thinking..." bubble, or a spinner) that aligns with the UI design.
  • Display the loading indicator immediately after the user sends a message and replace it with the actual response once it arrives.
  • Consider adding a timeout or a cancel button for cases where the model response takes too long or fails.

Example

// Pseudo-code example, actual implementation depends on the UI framework and technology used
const sendMessage = () => {
  // Display loading indicator
  chatUI.showLoadingIndicator();
  // Send message to model
  model.sendMessage(message).then((response) => {
    // Hide loading indicator and display response
    chatUI.hideLoadingIndicator();
    chatUI.displayResponse(response);
  });
};

Notes

The exact implementation details may vary depending on the UI framework, technology, and model integration used in the project.

Recommendation

Apply workaround: Implement a visual loading indicator to improve user experience while waiting for model responses, as it provides immediate feedback and enhances the overall usability of the chat UI.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING