import { Conversation } from'@botpress/runtime'export defaultnewConversation({
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.`,
})
},
})