gpt-4
Neural NetworkChatGPT 4 is a powerful neural network for text processing, created using artificial intelligence technologies. It helps solve various tasks: from content creation to communication and information search. GPT 4 in English is available for user convenience, making it indispensable for personal and professional use.
4 096
Max. Response Length
(in tokens)
8 191
Context Size
(in tokens)
30 USD
Prompt Cost
(per 1M tokens)
60 USD
Response Cost
(per 1M tokens)

BotHub: Try for freebot
Code example and API for gpt-4We offer full access to the OpenAI API through our service. All our endpoints fully comply with OpenAI endpoints and can be used both with plugins and when developing your own software through the SDK.Create API key
import OpenAI from 'openai';
const openai = new OpenAI({
apiKey: '<your bothub access token>',
baseURL: 'https://bothub.chat/api/v2/openai/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-4',
});
}
// Async - Text generation
async function main() {
const stream = await openai.chat.completions.create({
messages: [{ role: 'user', content: 'Say this is a test' }],
model: 'gpt-4',
stream: true
});
for await (const chunk of stream) {
const part: string | null = chunk.choices[0].delta?.content ?? null;
}
}
main();