OpenClaw

OpenClaw is an open-source, self-hosted agent platform that bridges LLMs to messaging apps (Telegram, Discord, WhatsApp, Slack, Signal). Register the Cura gateway as a custom OpenAI-compatible provider.

Cura 1T is a research model, not a medical service, and not a substitute for a clinician. Benchmark scores do not establish safety for unsupervised clinical use.

Setup

  1. Install OpenClaw and complete its onboarding wizard.
  2. Add the provider to your OpenClaw configuration:
JSON
// openclaw.json — add Cura as a custom OpenAI-compatible provider{  "models": {    "providers": {      "cura": {        "baseUrl": "https://inference.actava.ai/v1",        "apiKey": "${ACTAVA_API_KEY}",        "api": "openai-completions",        "models": [{ "id": "actava/cura-soar", "name": "Cura 1T" }]      }    },    "defaults": { "model": "cura/actava/cura-soar" }  }}

Restart the gateway and send a test message from a connected channel.

Notes

  • OpenClaw's config schema evolves quickly — match the provider block to the version you run; the constants are the base URL, key, and model id.
  • Patient-facing channels: if the agent talks to real people, keep the Cura safety framing in the system prompt — research model, not a medical service.