LLM providers
Mistral
Mistral SDK wrapper.
Wraps the Mistral SDK. Same validator + guard pipeline for the European-sovereign provider — chat, agents, and tool-call surfaces all covered.
Install
pnpm add @blackunicorn/bonklm-mistralMinimal example
import { Mistral } from '@mistralai/mistralai'
import { wrapMistral } from '@blackunicorn/bonklm-mistral'
const mistral = wrapMistral(new Mistral({ apiKey: KEY }), {
validators: ['prompt-injection', 'jailbreak'],
})Related connectors