rewrite file tool streaming fix

This commit is contained in:
Andrew Pareles 2025-05-01 21:52:38 -07:00
parent d3d62652db
commit 1af393983b

View file

@ -2764,7 +2764,7 @@ export const SidebarChat = () => {
const { displayContentSoFar, toolCallSoFar, reasoningSoFar } = currThreadStreamState?.llmInfo ?? {}
// this is just if it's currently being generated, NOT if it's currently running
const toolIsGenerating = toolCallSoFar && !toolCallSoFar.isDone && toolCallSoFar.name === 'edit_file' // show loading for slow tools (right now just edit)
const toolIsGenerating = toolCallSoFar && !toolCallSoFar.isDone // show loading for slow tools (right now just edit)
// ----- SIDEBAR CHAT state (local) -----