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