Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion solutions/search/agent-builder/limitations-known-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,16 @@ Error: Invalid function call syntax
Error executing agent: No tool calls found in the response.
```

$$$conversation-length-exceeded$$$
### Context length exceeded error [conversation-length-exceeded]

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.

To mitigate this issue, consider the following strategies:

- **Optimize queries**: Narrow your questions to reduce the scope of data retrieval
- **Start a new conversation**: Begin a fresh conversation, optionally providing a summary of the previous context
- **Refine tool descriptions**: Update tool descriptions and agent instructions to guide the agent toward requesting only essential data
- **Limit tool response size**: Create custom tools that filter or paginate data to return smaller, focused datasets

### {{esql}} limitations

Expand Down
Loading