Presets
A preset is a saved request configuration (system prompt, sampling, plugins) managed under Dashboard → Presets. Reference it as the model:
{ "model": "@preset/support-bot", "messages": [...] }Plugins
Enable plugins per request with the plugins array:
{
"model": "intelliverse",
"messages": [...],
"plugins": [
{ "id": "web-search", "max_results": 3 },
{ "id": "response-healing" }
]
}web-search— grounds the answer in fresh search results (max_resultscaps 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.