Intelliverse

Presets & plugins

Reference saved configurations as @preset/slug and enable per-request plugins.

Presets

A preset is a saved request configuration (system prompt, sampling, plugins) managed under Dashboard → Presets. Reference it as the model:

JSON
{ "model": "@preset/support-bot", "messages": [...] }

Plugins

Enable plugins per request with the plugins array:

JSON
{
  "model": "intelliverse",
  "messages": [...],
  "plugins": [
    { "id": "web-search", "max_results": 3 },
    { "id": "response-healing" }
  ]
}
  • web-search — grounds the answer in fresh search results (max_results caps them).
  • response-healing — retries and repairs malformed structured output before it reaches you.

Sharing presets

Click Export on Dashboard → Presets and paste the JSON into another workspace or a repo; teammates import it and reference the same @preset/slug. More sharing patterns in Authentication.

Did this doc help you?
Help us improve these docs