Files
bot/packages/forge/blocks/mistral/index.ts

15 lines
428 B
TypeScript
Raw Normal View History

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',
})