SNAPKITTYWEST's picture
push from SNAPKITTYWEST/myapplication
7d8aa82 verified
Raw
History Blame Contribute Delete
236 Bytes
import { askAgent, agentName } from '../lib/agents'
export async function handleAsk(agent: string, message: string): Promise<string> {
const reply = await askAgent(agent, message)
return `**${agentName(agent)}**\n${reply}`
}