using BotSharp.Core.Agents; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Core.Engines { public interface IAgentImporter { /// /// Load agent summary /// /// agent guid or name /// /// Agent LoadAgent(string agentId, string agentDir); /// /// Load user customized entity type /// /// /// void LoadCustomEntities(Agent agent, string agentDir); /// /// Load user customized intents /// /// /// void LoadIntents(Agent agent, string agentDir); /// /// add to user customized entities /// /// /// void LoadBuildinEntities(Agent agent, string agentDir); } }