Models

Resonatia provides access to hundreds of quantized models optimized for edge devices. All models use GGUF, ONNX, or INT8 quantization formats.

List Models

Retrieve a list of available models.

GET
/v1/models
curl https://api.resonatia.io/v1/models \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "object": "list",
  "data": [
    {
      "id": "mesh/llama-3.1-8b-q4",
      "object": "model",
      "created": 1677652288,
      "owned_by": "resonatia",
      "quantization": "Q4_K_M",
      "size": "4.5GB",
      "context_length": 8192
    },
    {
      "id": "mesh/mistral-7b-q4",
      "object": "model",
      "created": 1677652288,
      "owned_by": "resonatia",
      "quantization": "Q4_K_M",
      "size": "4.1GB",
      "context_length": 8192
    }
  ]
}

Get Model Details

Retrieve information about a specific model.

GET
/v1/models/{model_id}
curl https://api.resonatia.io/v1/models/mesh/llama-3.1-8b-q4 \
  -H "Authorization: Bearer YOUR_API_KEY"

Model Categories

Language Models

LLMs for chat, completion, and text generation. Includes Llama, Mistral, Phi, and more.

Embeddings

Text embeddings for semantic search, clustering, and similarity tasks.

Image Generation

Stable Diffusion and other image generation models, quantized for edge devices.

Audio & Speech

Whisper for speech-to-text, TTS models, and audio generation.