o3-mini-high
Red Neuronal
GPT o3 mini high es una nueva y eficiente solución para la codificación rápida, tareas matemáticas complejas e investigaciones científicas. El modelo fue lanzado por OpenAI a finales de enero de 2025 y combina una alta precisión con un precio asequible. Ayuda a automatizar procesos rutinarios y a ahorrar tiempo a los usuarios.
100 000
Longitud Máx. de Respuesta
(en tokens)
200 000
Tamaño del Contexto
(en tokens)
1,1 $
Costo de la Solicitud
(por 1M de tokens)
4,4 $
Costo de la Respuesta
(por 1M de tokens)
0 $
Imagen de prompt
(por 1k tokens)

BotHub: Попробуйте ИИ прямо сейчасbot
Proveedores o3-mini-highEn Bothub puedes elegir tus propios proveedores para las solicitudes. Si no has hecho una selección, encontraremos automáticamente proveedores adecuados que puedan manejar el tamaño y los parámetros de tu solicitud.
Пример кода и API для o3-mini-highМы предлагаем полный доступ к API OpenAI через наш сервис. Все наши конечные точки полностью соответствуют конечным точкам OpenAI, их можно использовать как с плагинами, так и при разработке собственного программного обеспечения через SDK.Создать API ключ
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: 'o3-mini-high',
});
}
// Async - Text generation
async function main() {
const stream = await openai.chat.completions.create({
messages: [{ role: 'user', content: 'Say this is a test' }],
model: 'o3-mini-high',
stream: true
});
for await (const chunk of stream) {
const part: string | null = chunk.choices[0].delta?.content ?? null;
}
}
main();