Models
Our platform provides a set of powerful models to help you with various tasks. Here's an overview of some key models:
GPT-4
The most advanced model, with broad general knowledge and domain expertise.
client.completions.create({
model: "gpt-4",
prompt: "Tell me a joke",
});DALL-E
A model that can generate and edit images from a text description.
client.images.generate({
model: "dall-e-3",
prompt: "A cute corgi wearing a top hat",
});Whisper
A model that can convert audio into text.
client.audio.transcriptions.create({
model: "whisper-1",
file: fs.createReadStream("speech.mp3"),
});For a complete list of models and their capabilities, please refer to our API Reference section.