Free text that provides context to the Omni Agent for all topics in the model. When a branch or workbook layer extends a model withDocumentation Index
Fetch the complete documentation index at: https://docs.omni.co/llms.txt
Use this file to discover all available pages before exploring further.
ai_context, Omni uses patch-based merging to preserve parent context while allowing layer-specific modifications. This prevents child layers from overwriting parent context when making edits.
Refer to the Optimizing models for AI guide for more information on best practices.
Syntax
Value is on one line
Value can contain linebreaks
Properties
Free text that provides context to the Omni Agent. Can include behavioral prompting, instructions for tone, or other guidance to standardize AI outputs across the model.You can reference user attributes using
${omni_attributes.<attribute_name>} syntax to personalize the context for each user. Only user attribute references are allowed — field references and filter conditions are not supported.Server-managed field that stores how a branch or workbook layer modifies its parent’s
ai_context. Omni automatically generates patches when you edit ai_context in a non-base layer.You can delete a patch by omitting the ai_context_patch: field from your YAML in Model mode, but you cannot manually create or edit patch contents. Omni automatically chooses the appropriate patch type.The literal ai_context is always persisted alongside the patch as the source of truth and fallback.Layer behavior
The patch-based merging described in this section only applies to model-level
ai_context.ai_context in a branch or workbook layer in:
1
Combined mode
Omni compares your edited context to the resolved parent context and automatically generates an
ai_context_patch. Both the literal ai_context and the patch are stored.2
Model mode
You see only the patch content (your layer’s contribution) when a patch exists. The literal
ai_context is hidden but still persisted in the background.- If a layer has an
ai_context_patch, Omni attempts to apply it against the resolved parent context - If the patch applies successfully, the result becomes the resolved context for that layer
- If a diff patch cannot apply cleanly, such as due to parent changes, Omni falls back to the layer’s literal
ai_context - Append patches always apply successfully, making them ideal for layers that only add context
Examples
Behavioral prompting
Personalized context using user attributes
Branch layer appending to parent context
Workbook layer modifying parent context