Skip to main content

Can I use OpenCode or another coding tool that isn't in the setup guides?

Yes, if the tool lets you add a custom OpenAI-compatible provider with Wiro's base URL, your API key and a Wiro model ID.

Yes, if the tool lets you add a custom OpenAI-compatible provider. It needs:

  • Base URL: https://llm.wiro.ai/v1, or https://llm.wiro.ai/v1/chat/completions if it asks for the full endpoint.

  • API key: your project's credential, key:secret for a Signature-Based project.

  • Model: a lowercase owner/model ID from /v1/models.

OpenCode: add a provider to opencode.json and put your credential in the WIRO_LLM_KEY environment variable:

{
"provider": {
"wiro": {
"npm": "@ai-sdk/openai-compatible",
"name": "Wiro",
"options": {
"baseURL": "https://llm.wiro.ai/v1",
"apiKey": "{env:WIRO_LLM_KEY}"
},
"models": { "qwen/qwen3-8-27b-uncensored": {} }
}
}
}

Or drop apiKey and store your credential with /connect, then Other, under the same provider ID. Pick the model with /models. Optionally add limit.context and limit.output from its context_length and max_tokens (OpenCode docs).

In Cline or Roo Code, choose OpenAI Compatible; in Continue, use the openai provider with apiBase (setup guide). Tools with only fixed providers can't use Wiro. Streamed replies arrive after the model finishes.

Did this answer your question?