Documentation Index
Fetch the complete documentation index at: https://mintlify.com/exegia/corpora-py/llms.txt
Use this file to discover all available pages before exploring further.
search_continue() fetches the next batch of results from a search that produced more matches than search() returned in its first page. You pass the cursor_id that search() included in its response, and the tool advances the cursor forward by limit positions. Call it repeatedly until you see "End of results." or until you have collected all the results you need. The cursor is server-side and expires automatically after 5 minutes of inactivity; if it expires you must re-run search().
Parameters
The cursor identifier returned by a previous
search() call in "results" mode. It is a UUID string (e.g. "3f2a1b4c-8d9e-4f0a-b1c2-d3e4f5a6b7c8").How many results to return in this page. Clamped to the range
1–100. Defaults to 20.Returns
A formatted string of numbered result lines, each showing the pipe-separated section references for one matched node tuple. The result number continues from where the previous page ended. A footer line indicates how many results remain:- If more results exist:
"N more. cursor_id: <id>" - If this is the last page:
"End of results."
"Cursor expired or not found. Run search() again." when the cursor_id is unknown or has expired. Returns "No more results." if the cursor had already been exhausted on a prior call.