mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
rewrite file tool streaming fix
This commit is contained in:
parent
d3d62652db
commit
1af393983b
1 changed files with 1 additions and 1 deletions
|
|
@ -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) -----
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue