2018-03-28 22:08:49 +00:00
|
|
|
|
using BotSharp.Core.Agents;
|
2018-03-21 21:07:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-03-28 22:08:49 +00:00
|
|
|
|
namespace BotSharp.Core.Engines
|
2018-03-21 21:07:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
public interface IAgentImporter
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Load agent summary
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="agentId">agent guid or name</param>
|
|
|
|
|
|
/// <param name="agentDir"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
Agent LoadAgent(string agentId, string agentDir);
|
|
|
|
|
|
|
|
|
|
|
|
void LoadEntities(Agent agent, string agentDir);
|
|
|
|
|
|
|
|
|
|
|
|
void LoadIntents(Agent agent, string agentDir);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|