social-router/src/agent/tools/call-xiaoxiao.ts

16 lines
254 B
TypeScript

import { agent } from '../agent.ts';
import { ai } from '../ai.ts';
const pickGoodJobPrompt = `
`;
agent
.route({
path: 'tools',
key: 'call-xiaoxiao',
})
.define(async (ctx) => {
ctx.body = '来了,来了。';
})
.addTo(agent);