@micdrop/mistral
v1.0.9
Published
Mistral implementation for @micdrop/server
Maintainers
Readme
@micdrop/mistral
Micdrop website | Documentation
Mistral AI implementation for @micdrop/server.
Installation
npm install @micdrop/mistralMistral Agent
Usage
import { MistralAgent } from '@micdrop/mistral'
import { MicdropServer } from '@micdrop/server'
const agent = new MistralAgent({
apiKey: process.env.MISTRAL_API_KEY || '',
model: 'ministral-8b-latest', // Default model
systemPrompt: 'You are a helpful assistant',
})
// Use with MicdropServer
new MicdropServer(socket, {
agent,
// ... other options
})Documentation
Read full documentation of the Mistral integration for Micdrop on the website.
License
MIT
Author
Originally developed for Raconte.ai and open sourced by Lonestone (GitHub)
