# AI Model Service FAQ

Frequently asked questions about the Phoeniqs AI Model Service — hosted open-source LLMs, API access, subscriptions, and inference.

For product documentation, see Phoeniqs AI Model Service.


# Questions

To use Cursor with Phoeniqs Model Service, you need to:

  1. Set the Override OpenAI Base URL to https://maas.phoeniqs.com/v1 in Cursor Settings → Models → API Keys.
  2. Use a Phoeniqs Model Service API key (not an OpenAI key) in the OpenAI API Key field.
  3. Add the model name from the Active Models list. For the best Cursor experience, use inference-glm5 or inference-qwen3-vl-235b as they fully supports Agent, Chat, and Plan modes.

If you're still having issues:

  • Check that both toggles are enabled (green) in Cursor's API Keys section.
  • Ensure your API key starts with sk- and has access to the model you're trying to use.
  • Verify the base URL ends with /v1 (not /cursor or other suffixes).

For step-by-step instructions, see the Cursor Integration Guide.

Every active model is exposed through an OpenAI-compatible API at https://maas.phoeniqs.com/. To send an inference request you need three things: a Base URL, a Model Name from the Active Models table (for example, inference-llama4-maverick), and an API Key passed in the Authorization: Bearer YOUR_API_KEY header. You can use standard OpenAI client libraries in Python, Node.js, or cURL — just point the client at the Phoeniqs base URL and swap in your model name and key.

Yes. The free Evaluation plan gives you 1 million tokens for 30 days with access to the full model catalogue through a single API key — no credit card and no monthly commitment. When you need ongoing API access, move to the Base LLM API plan (CHF 50/month). See Subscription Plans for full plan details.

The three plans serve different stages of usage:

  • Evaluation — Free for 30 days. Includes 1M tokens to test 20+ open-weights models with one API key. No credit card required. Ideal for trying model quality before you buy.
  • Base LLM API — CHF 50/month (excl. VAT). Includes 50 credits per month, access to all models, a basic SLA, and the ability to create multiple API keys that share one credit pool. This is the paid plan for ongoing production or development use.
  • Additional LLM Credits — CHF 1 per credit per month (excl. VAT). Adds recurring monthly credits to an active Base LLM API subscription. Requires provisioning against your Base LLM API key after purchase.

See Subscription Plans for a full comparison.

Yes. One Base LLM API subscription lets you create as many API keys as you need. All keys draw from the same shared credit pool — including any credits added through Additional LLM Credits top-ups provisioned against that subscription.

No. Credits are non-transferable and expire at the end of each billing period. At monthly renewal, your allowance is reset to the plan amount — unused credits from the previous period are not carried forward.

Example: If your plan includes 1,000 credits and you use 900 in a month, the remaining 100 expire when the billing period ends. On renewal you receive 1,000 credits again, not 1,100. Your subscription renews and bills each month regardless of how much of the allowance you used.

Credits are your monthly inference budget. When your shared credit pool reaches zero, inference requests fail until your allowance increases.

  • Wait for renewal — if your subscription is still active, your allowance resets at the start of the next billing period.
  • Add a top-up — purchase and provision Additional LLM Credits at any time to restore capacity for the current period.

Purchase an Additional LLM Credits subscription from the Phoeniqs Console, choose how many credits to add each month, then provision it against your Base LLM API Phoeniqs API Key from the Subscriptions page. The credits are added to that subscription's shared pool. Step-by-step instructions are in How to add LLM Credits.

Yes. Additional LLM Credits renew automatically each month, but you can use them as a one-time top-up: purchase the subscription, provision it against your Base LLM API key, then cancel the Additional LLM Credits subscription. You can use the purchased credits for the remainder of that billing period. The top-up will not renew the following month.

Models are curated open-source LLMs hosted entirely on Swiss sovereign infrastructure, served with vLLM for optimized inference. Usage is billed per token: each model has its own input and output credit rates per million tokens, listed in the Active Models table. One credit equals CHF 1 of inference capacity. Credits are consumed based on the number of tokens processed, and different models consume credits at different rates. Billing is predictable and tied to actual token volume rather than fixed per-request pricing.

A status dashboard shows the health of all models: https://status.kvant.cloud/

No. Phoeniqs Model Service is designed for private inference on Swiss sovereign infrastructure. Customer data submitted for inference is processed within tenant boundaries and is not used to train underlying models. On the Evaluation plan, usage is completely private — no data is shared or logged. For security and data-processing details, see the Model Service architecture guide.

Some active models are available in two variants through the same API: the standard model and a guardrailed variant with a -GRC suffix (Governance, Risk & Compliance). Use the same base URL and API key — only the model name changes. The -GRC variant screens every request at the gateway before it reaches the model, blocking high-risk content (such as violence or leaked credentials) and masking sensitive identifiers (such as emails or phone numbers). Use -GRC when you need content safety and data filtering enforced in production; use the standard variant for research, evaluation, or internal tools where you want raw model behaviour.

Yes. Because Phoeniqs exposes an OpenAI-compatible API, many existing tools and SDKs work by pointing them at the Phoeniqs base URL (https://maas.phoeniqs.com/) and supplying your Phoeniqs API key. Step-by-step guides are available for Cursor and OpenCode. See Model Service Integrations for the full list.

You can cancel any Model Service subscription at any time from the Subscriptions page in the Phoeniqs Console. Open the three-dot menu on the subscription row and select Cancel. See How to cancel a Model Service Subscription for step-by-step instructions.

The most common causes include:

  • Excessive context passed through MCP (Model Context Protocol)
  • Tool-calling loops, where each tool result is injected back into the prompt
  • Long conversation history that is continuously appended without truncation
  • Large prompts or system instructions
  • Token estimation mismatches due to tokenizer differences or fields added late in the request pipeline

When combined, these factors can quickly exceed the model's context window.

A 400 Bad Request error related to tokens typically occurs when the total estimated input tokens exceed the model's context window.

Phoeniqs' AI gateway (LiteLLM) performs a protective pre-check before sending the request to the model. If the request would exceed the model's allowed context window, LiteLLM rejects the request early to avoid unnecessary compute usage. This situation can result in zero or negative tokens remaining for the model's response, which triggers the error.