diff options
| author | Aryan Keluskar <[email protected]> | 2025-10-18 22:40:43 -0700 |
|---|---|---|
| committer | Aryan Keluskar <[email protected]> | 2025-10-18 22:40:43 -0700 |
| commit | eb225636b423246c836b3a92a5fe3f20b8f2d6e1 (patch) | |
| tree | 8420f957f55b35fca668b9757931849bfe06c425 /apps | |
| parent | version bump' (diff) | |
| download | supermemory-eb225636b423246c836b3a92a5fe3f20b8f2d6e1.tar.xz supermemory-eb225636b423246c836b3a92a5fe3f20b8f2d6e1.zip | |
feat(chat): increase maxSteps to allow multiple tool-calling rounds
Diffstat (limited to 'apps')
| -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 b281f7a8..16ff08af 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: 2, + maxSteps: 10, // Allow multiple tool-calling rounds onFinish: (result) => { const activeId = activeChatIdRef.current if (!activeId) return |