You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error occurs when a conversation exceeds the maximum context length supported by the LLM. This typically happens when tools return large responses that consume the available token budget.
46
+
47
+
To mitigate this issue, consider the following strategies:
48
+
49
+
-**Optimize queries**: Narrow your questions to reduce the scope of data retrieval
50
+
-**Start a new conversation**: Begin a fresh conversation, optionally providing a summary of the previous context
51
+
-**Refine tool descriptions**: Update tool descriptions and agent instructions to guide the agent toward requesting only essential data
52
+
-**Limit tool response size**: Create custom tools that filter or paginate data to return smaller, focused datasets
0 commit comments