/** * Prefab agents - Ready-to-use agent implementations built on AgentBase. */ export { InfoGathererAgent, createInfoGathererAgent } from './InfoGathererAgent.js'; export type { InfoGathererConfig, InfoGathererQuestion, InfoGathererQuestionCallback, } from './InfoGathererAgent.js'; export { SurveyAgent, createSurveyAgent } from './SurveyAgent.js'; export type { SurveyConfig, SurveyQuestion } from './SurveyAgent.js'; export { FAQBotAgent, createFAQBotAgent } from './FAQBotAgent.js'; export type { FAQBotConfig, FAQEntry } from './FAQBotAgent.js'; export { ConciergeAgent, createConciergeAgent } from './ConciergeAgent.js'; export type { ConciergeConfig } from './ConciergeAgent.js'; export { ReceptionistAgent, createReceptionistAgent } from './ReceptionistAgent.js'; export type { ReceptionistConfig, ReceptionistDepartment } from './ReceptionistAgent.js';