43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import * as sdk from '@botpress/sdk'
|
|
import * as env from './.genenv'
|
|
import knowledge from './bp_modules/knowledge'
|
|
import openai from './bp_modules/openai'
|
|
import personality from './bp_modules/personality'
|
|
import telegram from './bp_modules/telegram'
|
|
|
|
type OpenAiModel = sdk.z.infer<typeof openai.definition.entities.modelRef.schema>
|
|
|
|
export default new sdk.BotDefinition({})
|
|
.addIntegration(telegram, {
|
|
enabled: true,
|
|
configuration: {
|
|
botToken: env.KNOWLEDGIANI_TELEGRAM_BOT_TOKEN,
|
|
typingIndicatorEmoji: true,
|
|
},
|
|
})
|
|
.addIntegration(openai, {
|
|
enabled: true,
|
|
configuration: {},
|
|
})
|
|
.addPlugin(personality, {
|
|
configuration: {
|
|
model: 'gpt-3.5-turbo-0125' satisfies OpenAiModel['id'],
|
|
personality: 'Respond as if you were Mario the famous video game character of Nintendo',
|
|
},
|
|
dependencies: {
|
|
llm: {
|
|
integrationAlias: 'openai',
|
|
integrationInterfaceAlias: 'llm<modelRef>',
|
|
},
|
|
},
|
|
})
|
|
.addPlugin(knowledge, {
|
|
configuration: {},
|
|
dependencies: {
|
|
llm: {
|
|
integrationAlias: 'openai',
|
|
integrationInterfaceAlias: 'llm<modelRef>',
|
|
},
|
|
},
|
|
})
|