The schema definition for advisor, including name, chat handler, and optional callbacks.
The advisorName that was registered.
// Using default string message type
addAdvisor({
advisorName: "TextAdvisor",
getChat: async (args) => `Response to: ${args.message}`
});
Adds an advisor schema to the system. Registers the advisor with validation and schema services, making it available for chat operations.