dolphin-mistral-24b-venice-edition:free
нейросеть
Бип-буп пишем текста для вас...



10 813
Макс. длина ответа
(в токенах)
32 768
Размер контекста
(в токенах)
0 ₽
Стоимость промпта
(за 1M токенов)
0 ₽
Стоимость ответа
(за 1M токенов)
0 ₽
Картинка-промт
(за 1K токенов)

BotHub: Prueba la IA ahorabot
Провайдеры dolphin-mistral-24b-venice-edition:freeНа Bothub вы можете сами выбрать поставщиков для запросов. Если вы не сделали выбор, мы автоматически найдём подходящих провайдеров, которые способны справиться с размером и параметрами вашего запроса.
Ejemplo de código y API para dolphin-mistral-24b-venice-edition:freeOfrecemos acceso completo a la API de OpenAI a través de nuestro servicio. Todos nuestros puntos finales cumplen completamente con los puntos finales de OpenAI y se pueden usar tanto con complementos como al desarrollar su propio software a través del SDK.Crear clave 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: 'dolphin-mistral-24b-venice-edition:free',
});
}
// Async - Text generation
async function main() {
const stream = await openai.chat.completions.create({
messages: [{ role: 'user', content: 'Say this is a test' }],
model: 'dolphin-mistral-24b-venice-edition:free',
stream: true
});
for await (const chunk of stream) {
const part: string | null = chunk.choices[0].delta?.content ?? null;
}
}
main();
Как работает dolphin-mistral-24b-venice-edition:free?
Ботхабчики собирают информацию...