AIXHUBDocs
Panel tutorials

Available channels

Confirm current models, protocols, and model IDs in AIXHUB instead of relying on an outdated list.

Models and upstream channels can change, so the documentation does not treat any model as permanently available. Before configuring a client or API, get the current model ID and protocol information from Available channels.

Prerequisites

  • You are signed in to the AIXHUB console.
  • You know the protocol you need, such as OpenAI Responses or Anthropic Messages.
  • You are ready to preserve the exact capitalization and version suffix of the model ID.

Steps

  1. Open Available channels from the console.

  2. Find an entry that matches the target protocol or model family. Its current availability and model ID are the source of truth for setup.

  3. Copy the complete model ID without removing a version, date, or other suffix.

  4. Match the client protocol. OpenAI Responses uses /v1/responses; Anthropic Messages uses /v1/messages.

  5. Store the model ID in an environment variable such as AIXHUB_MODEL so future changes do not require a code edit.

    export AIXHUB_MODEL="panel-model-id"
  6. Send a minimal request, then check Usage records for the actual model and result.

Verification

The minimal request succeeds, and its model in Usage records matches the ID copied from Available channels.

Troubleshooting

  • A previously working model now fails: Reopen Available channels and check for an updated ID, protocol, or channel state.
  • 404 model not found: Check spelling, version suffix, and protocol compatibility.
  • 403 permission error: The account, channel, or plan may restrict access. Save the request ID before contacting support.
  • The client substitutes a model name: Inspect client defaults and confirm the value actually sent was not overridden.

Next step

Continue with Anthropic Messages, OpenAI Responses, or the matching client setup guide.

On this page