gpt-5.4-pro

Neural Network

Beep-boop, writing text for you...
pc1pc2pc3pc4
Main

/

Models

/

gpt-5.4-pro
128 000

Max answer length

(in tokens)

1 050 000

Context size

(in tokens)

33,75 $

Prompt cost

(per 1M tokens)

202,5 $

Answer cost

(per 1M tokens)

0 $

Image prompt

(per 1K tokens)

*Prices for using the API.
Aperçu
Fournisseurs
API
bothub
BotHub : Essayez le chat GPT gratuitementbot

Caps restants : 0 CAPS
Providers gpt-5.4-proOn Bothub, you can select your own providers for requests. If you haven't made a selection, we will automatically find suitable providers who can handle the size and parameters of your request.
Exemple de code et API pour gpt-5.4-proNous offrons un accès complet à l'API OpenAI via notre service. Tous nos points de terminaison sont entièrement conformes aux points de terminaison OpenAI et peuvent être utilisés avec des plugins ainsi que lors du développement de votre propre logiciel via le SDK.Créer une clé API
Javascript
Python
Curl
import OpenAI from 'openai';
const openai = new OpenAI({
  apiKey: '<your bothub access token>',
  baseURL: 'https://openai.bothub.chat/v1'
});


// Sync - Text generation 

async function main() {
  const chatCompletion = await openai.chat.completions.create({
    messages: [{ role: 'user', content: 'Say this is a test' }],
    model: 'gpt-5.4-pro',
  });
} 

// Async - Text generation 

async function main() {
  const stream = await openai.chat.completions.create({
    messages: [{ role: 'user', content: 'Say this is a test' }],
    model: 'gpt-5.4-pro',
    stream: true
  });

  for await (const chunk of stream) {
    const part: string | null = chunk.choices[0].delta?.content ?? null;
  }
} 
main();

How it works gpt-5.4-pro?

Bothubs gather information...empty