linter fix
This commit is contained in:
parent
f2deb14052
commit
0a30829d75
1 changed files with 1 additions and 1 deletions
|
|
@ -508,7 +508,7 @@ function ChatPage() {
|
|||
console.log("Tool call done with results:", chunk.item)
|
||||
|
||||
// Find existing function call by ID, or by name/type if ID not available
|
||||
let functionCall = currentFunctionCalls.find(fc =>
|
||||
const functionCall = currentFunctionCalls.find(fc =>
|
||||
fc.id === chunk.item.id ||
|
||||
(fc.name === chunk.item.tool_name) ||
|
||||
(fc.name === chunk.item.name) ||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue