chat_context_inject
Add external context like memory recall, documentation, or runtime state to chat sessions before sending messages. Injects content as messages for AI completions.
Instructions
Inject external context into a session before the next message send. Use this to pipe in Aiana memory recall, documentation snippets, or runtime state. The injected content is stored as a message and included in the next completion call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes | UUID of the session to inject context into. | |
| context | Yes | Context content to inject (markdown, JSON, plain text). | |
| role | No | Role for the injected context message. Default: system. |