Files
2026-07-13 13:34:48 +08:00

31 lines
709 B
TypeScript

import { IntegrationDefinition, z } from '@botpress/sdk'
import { ModelId } from 'src/schemas'
import llm from './bp_modules/llm'
export default new IntegrationDefinition({
name: 'mistral-ai',
title: 'Mistral AI',
description: 'Access a curated list of Mistral AI models to set as your chosen LLM.',
version: '1.0.0',
readme: 'hub.md',
icon: 'icon.svg',
entities: {
modelRef: {
schema: z.object({
id: ModelId,
}),
},
},
secrets: {
MISTRAL_API_KEY: {
description: 'Mistral AI API key',
},
},
attributes: {
category: 'AI Models',
repo: 'botpress',
},
}).extend(llm, ({ entities }) => ({
entities: { modelRef: entities.modelRef },
}))