Skip to main content
OpenClaw lets you bring a custom OpenAI-compatible model provider. Add Deepshi as a provider in your config (~/.openclaw/openclaw.json) and reference its models with the <provider>/<model> form.
{
  models: {
    providers: {
      deepshi: {
        baseUrl: "https://api.deepshi.ai/v1",
        apiKey: "${DEEPSHI_API_KEY}",
        api: "openai-completions",
        models: [
          { id: "deepshi-3.0", name: "Deepshi 3.0" },
        ],
      },
    },
  },
  agents: {
    defaults: {
      model: { primary: "deepshi/deepshi-3.0" },
    },
  },
}
Set DEEPSHI_API_KEY in your environment. OpenClaw substitutes ${VAR} in any config string. See OpenClaw’s configuration reference for the full provider schema.
OpenClaw runs agentic workflows, so pick a model with the tools capability. See Text models.