Don't block the gui thread for tool calls (#3435)

Signed-off-by: Adam Treat <treat.adam@gmail.com>
This commit is contained in:
AT
2025-01-29 18:33:08 -05:00
committed by GitHub
parent adafa17c37
commit 22b8278ef1
7 changed files with 153 additions and 91 deletions

View File

@@ -110,6 +110,7 @@ GridLayout {
case Chat.PromptProcessing: return qsTr("processing ...")
case Chat.ResponseGeneration: return qsTr("generating response ...");
case Chat.GeneratingQuestions: return qsTr("generating questions ...");
case Chat.ToolCallGeneration: return qsTr("generating toolcall ...");
default: return ""; // handle unexpected values
}
}