修正流式聊天状态保持

This commit is contained in:
2026-05-30 00:54:01 +08:00
parent 4bf5195bfd
commit a3330a5937
2 changed files with 66 additions and 5 deletions
+4
View File
@@ -56,6 +56,8 @@ private:
void refreshChatHistoryPanel();
void handleChatStreamDelta(const QString &delta);
void flushStreamingBubble(bool finalUpdate);
void finishStreamingChat();
void cancelStreamingChat();
bool hasActiveAIRequest() const;
void resetBubbleAutoHideTimer();
QPoint chatInputAnchorPosition() const;
@@ -89,4 +91,6 @@ private:
bool m_alwaysOnTop;
bool m_centerNextFrame;
bool m_returnToIdleAfterResume = false;
bool m_streamingChatActive = false;
bool m_streamingTalkStarted = false;
};