Models

Models Available with w.ai

Current Models:

  • deepseek-r1-8b-8bit: Deepseek R1 8B model with 8-bit quantization, delivering state-of-the-art reasoning performance.

  • llama-3.2-1b-4bit: Llama 3.2 1B model with 4-bit quantization, a compact yet intelligent model.

  • SDXL image model

  • FLUX Dev image model

More models coming soon!

If there is a particular model you'd like to see on w.ai, let us know.


Models API Overview

The /v1/models endpoint provides a list of all available models on the w.ai network, including essential metadata for easy integration into your application.

Endpoint

GET /v1/models

Description

This endpoint returns an array of available model objects, each detailing information such as name, creation time, and capabilities, helping you easily identify suitable models for your tasks.

Request

  • Method: GET

  • URL: https://api.w.ai/v1/models

Required Headers:

  • Authorization: Bearer <your_api_key>

  • Content-Type: application/json

Example Request

curl -X GET https://api.w.ai/v1/models \
  -H "Authorization: Bearer <your_api_key>" \
  -H "Content-Type: application/json"

Response

Success (200 OK)

Returns a JSON object containing an array of available model objects with their respective metadata.

Example Response

{
  "data": [
    {
      "id": "deepseek-r1-8b-8bit",
      "object": "model",
      "created": 1676235352,
      "name": "deepseek-r1-8b-8bit"
    },
    {
      "id": "llama-3.2-1b-4bit",
      "object": "model",
      "created": 1680526341,
      "name": "llama-3.2-1b-4bit"
    }
  ]
}

Response Fields

  • data: Array containing model objects.

    • id: Unique identifier for the model.

    • object: Type of the object, typically model.

    • created: Unix timestamp indicating when the model was created.

    • name: The name identifier of the model.

Last updated