GET /base-models to query the live list, which always reflects current availability and capabilities.
Some rollout-stage models are feature-gated. They appear in the live catalog only for workspaces that have the corresponding rollout enabled.
Encoder models (GLiNER)
GLiNER models perform named entity recognition and structured extraction. Most GLiNER base models support both training and on-demand inference after training. Prices are per 1M tokens.fastino/gliner2-multi-v1 and fastino/gliner2-multi-large-v1 are multilingual variants suitable for non-English text.
Decoder models — training
These LLMs are available for LoRA fine-tuning viaPOST /felix/training-jobs. When you submit a job, Pioneer automatically routes it to the best available provider.
Decoder models — serverless inference
These decoder models are pre-deployed and available for inference immediately. Trainable decoder rows that also support serverless inference are listed in the training table above and are not repeated here.Anthropic
OpenAI
Mistral
DeepSeek
Qwen
Meta
Z.ai
Liquid AI
Xiaomi MiMo
MiniMax
Moonshot AI
NVIDIA
xAI
Sakana AI
Poolside
poolside/laguna-s-2.1 is an open-weight model (OpenMDW-1.1 license) for agentic coding and long-horizon work.
Embeddings
Embedding-only models. They don’t support chat or text-generation inference, but they are live and fully servable throughPOST /v1/embeddings (the deprecated POST /felix/embeddings wraps the same path). Use them as the model value in an embeddings request — not as a model_id for chat/completions or training.
Prompt caching
Many serverless models bill cached input tokens at a discount, and some providers bill a one-time surcharge to write tokens into the cache. Pioneer passes each provider’s published cache rates straight through — these are the same ratesGET /base-models returns as cache_read_price_per_million and cache_write_price_per_million, and the same rates Pioneer bills you.
Cache rates are derived from each model’s input rate using the multipliers below. Where a provider has no separate cache-write line item, cache writes bill at the standard input rate.
Self-hosted models served on Modal — and any provider without an explicit cache discount — bill cached input at the standard input rate. Fireworks-served models carry per-model cache rates rather than a single ratio, so query the live catalog for exact values.
For example,
claude-opus-4-8 lists $5.00 input, so cache reads bill at $0.50 and cache writes at $6.25 per 1M tokens. gpt-5.1 lists $1.25 input, so cache reads bill at $0.125 per 1M tokens.
On-demand vs. serverless inference
Pioneer offers two ways to serve predictions, and the right choice depends on your workflow. Serverless inference uses pre-deployed base model endpoints. There is no startup delay and you are billed per token. This is ideal when you want to call a frontier model without fine-tuning. On-demand inference provisions a dedicated GPU after fine-tuning completes. Your LoRA adapter is loaded onto the GPU and served exclusively for your requests. Pioneer routes inference calls to an on-demand deployment automatically when you pass a training job ID asmodel_id.
Querying the live catalog
The tables above may lag behind newly added models. UseGET /base-models to get the current catalog at runtime.
input_price_per_million, output_price_per_million, cache_read_price_per_million, cache_write_price_per_million), and boolean flags for supports_training and supports_inference. Use the model ID value directly in training job requests and inference calls.
To list every model alongside its input, output, and cache rates: