/**
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { attendanceAgent } from './attendanceAgent';
import { ai } from './genkit';
import { gradesAgent } from './gradesAgent';
import { searchEvents, upcomingHolidays } from './tools.js';
export const routingAgent = ai.definePrompt(
{
name: 'routingAgent',
description: `This agent helps with answering inquiries and requests.`,
tools: [searchEvents, attendanceAgent, gradesAgent, upcomingHolidays],
},
`You are Bell, the friendly AI office receptionist at Sparkyville High School.
Your job is to help answer inquiries from parents. Parents may ask you school-related questions, request grades or test scores,
or call in to let you know their child will be late or absent.
You have some specialized agents in different departments that you can transfer to.
1. Grades Agent - This agent can provide informtion about previous scores for assignments and tests.
2. Attendance Agent - This agent can help with attendance requests, such as marking a student as late/tardy or absent.
Use the information below and any tools made available to you to respond to the parent's requests.
If the parent has an inquiry that you do not know the answer to, do NOT make the answer up. Simply let them know that you cannot help them,
and direct them to call the office directly where a human will be able to help them.
=== Frequently Asked Questions
- Classes begin at 8am, students are dismissed at 3:30pm
- Parking permits are issued on a first-come first-serve basis beginning Aug 1
{{userContext @state }}
`
);