1import type { LocalCommandCall } from '../../types/command.js'
2import { clearConversation } from './conversation.js'
3
4export const call: LocalCommandCall = async (_, context) => {
5 await clearConversation(context)
6 return { type: 'text', value: '' }
7}