2
0
Files
bot/packages/forge/blocks/mistral/index.ts
Baptiste Arnaud b68f16f4f7 Add Mistral AI block
Closes #1179
2024-01-29 09:37:19 +01:00

15 lines
428 B
TypeScript

import { createBlock } from '@typebot.io/forge'
import { MistralLogo } from './logo'
import { auth } from './auth'
import { createChatCompletion } from './actions/createChatCompletion'
export const mistral = createBlock({
id: 'mistral',
name: 'Mistral',
tags: ['ai', 'chat', 'completion'],
LightLogo: MistralLogo,
auth,
actions: [createChatCompletion],
docsUrl: 'https://docs.typebot.io/forge/blocks/mistral',
})