Monoize
Transforms

Prompt: inject system prompt

Prepend or append fixed text to the request system prompt.

What it does

This transform adds the configured text to the request system prompt at the configured position. When the request has no system node, the transform creates one.

Reference

PropertyValue
Type IDprompt_inject_system
Phaserequest
ScopesProvider, API key

When to use

  • You enforce an organization-wide instruction, for example a language or safety rule.
  • One Provider needs extra instructions that clients should not manage.

Configuration

OptionTypeRequiredDefaultDescription
contentstringYesThe text injected into the system prompt.
positionstringYesprepend puts the text before the existing prompt. append puts it after.

Example rule

{
  "transform": "prompt_inject_system",
  "enabled": true,
  "phase": "request",
  "models": [
    "*"
  ],
  "config": {
    "content": "Answer concisely.",
    "position": "append"
  }
}

On this page