Model Database

AI/ML API provides a suite of powerful, serverless models for seamless integration into your applications

You can refer to the Models documentation to understand what models are available and the differences between them. It also possible to list all LLM models through API.

GET/models
Response
Request
const response = await fetch('/models', {
    method: 'GET',
    headers: {},
});
const data = await response.json();

Last updated