UNPKG

@botpress/adk-cli

Version:

Command-line interface for the Botpress Agent Development Kit (ADK)

11 lines (9 loc) 303 B
import { Conversation } from '@botpress/runtime' export default new Conversation({ channel: '*', handler: async ({ execute }) => { await execute({ instructions: `You are a helpful AI assistant built with Botpress ADK. You can assist users with their questions and tasks.`, }) }, })