Transactional

Mistral AI

European AI company building efficient open-weight models

INTEGRATION

Quick Start

import { Transactional } from '@usetransactional/node';

const client = new Transactional(process.env.TRANSACTIONAL_API_KEY);

const response = await client.ai.chat.completions.create({
  provider: 'mistral',
  model: 'mistral-large-latest',
  messages: [
    { role: 'system', content: 'You are a helpful assistant.' },
    { role: 'user', content: 'Hello!' }
  ]
});

console.log(response.choices[0].message.content);

Ready to Use Mistral AI?

Get started with a free account. No credit card required.