Load Context
rlm_load_contextLoad long text content into a session for RLM processing. Store it with a context ID to enable decomposition, search, and analysis.
Instructions
Load text content into the RLM session for processing.
This is typically the first step in RLM processing. Load your long context here, then use other tools to decompose, search, and analyze it.
The context is stored in the session and can be referenced by its ID in other tools.
Example workflow:
rlm_load_context - Load your document
rlm_get_context_info - Understand structure and size
rlm_decompose_context - Split into manageable chunks
rlm_search_context - Find relevant sections
rlm_read_context - Read specific portions
rlm_set_answer - Build up your response
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| context | Yes | The text content to load | |
| context_id | No | Unique identifier for this context (default: "main") | main |
| session_id | No | Session ID. If not provided, uses default session |