generated from tailored/router-template
16 lines
254 B
TypeScript
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);
|