model field of your API request — the same way you would with any OpenAI-compatible API.
Specifying a model
Pass the model ID in themodel field of your request body. The example below uses llama3.2:1b:
Available models
| Model ID | Context Window | Description |
|---|---|---|
llama3.2:1b | 128k tokens | 1B-parameter Llama 3.2 model. Fast and lightweight — ideal for high-throughput tasks, summarization, and classification where speed matters most. |
llama3.2:3b | 128k tokens | 3B-parameter Llama 3.2 model. Balanced between speed and capability — a good default for general-purpose chat and instruction-following tasks. |
Model availability may vary based on which nodes are active at any given time. Query the
/v1/models endpoint to get the real-time list of models currently available on the network.Getting the current model list
Send aGET request to https://api.pinaivu.com/v1/models to retrieve the live list of models available right now:
/v1/models when you need an authoritative, up-to-date list rather than relying on static documentation.
See the Models API reference for the full response schema.