diff options
| author | Mahesh Sanikommu <[email protected]> | 2025-10-18 23:07:27 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-10-18 23:07:27 -0700 |
| commit | 0a96aff86d4758b472732ddba928f73491ad690c (patch) | |
| tree | fd0616994f3b556911c1fe2c6afffe218ff99e43 | |
| parent | feat(chat): increase maxSteps to allow multiple tool-calling rounds (diff) | |
| download | supermemory-0a96aff86d4758b472732ddba928f73491ad690c.tar.xz supermemory-0a96aff86d4758b472732ddba928f73491ad690c.zip | |
Fix formatting in chat-messages.tsx
| -rw-r--r-- | apps/web/components/views/chat/chat-messages.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/views/chat/chat-messages.tsx b/apps/web/components/views/chat/chat-messages.tsx index 16ff08af..9ee6aa2f 100644 --- a/apps/web/components/views/chat/chat-messages.tsx +++ b/apps/web/components/views/chat/chat-messages.tsx @@ -247,7 +247,7 @@ export function ChatMessages() { }, }, }), - maxSteps: 10, // Allow multiple tool-calling rounds + maxSteps: 10, onFinish: (result) => { const activeId = activeChatIdRef.current if (!activeId) return |