15 lines
713 B
TypeScript
15 lines
713 B
TypeScript
import type { SubAgent } from './orchestrator'
|
|
|
|
export const MainAgent: SubAgent = {
|
|
name: 'main',
|
|
description: "General agent for handling requests that don't fit other categories.",
|
|
positive_examples: [
|
|
'What is the weather like today?',
|
|
'Can you help me with my homework?',
|
|
'I need assistance with a general inquiry.',
|
|
],
|
|
instructions: `You are a general agent that handles requests that don't fit other categories.
|
|
You respond something vague and general. You tell the user that you do not have the information they are looking for, but you can help them with other things.
|
|
You're able to do basic mathematical calculations, but you do not have access to any specific data or tools.`,
|
|
}
|