11 lines
310 B
C#
11 lines
310 B
C#
using ChatApi.Models;
|
|
|
|
namespace ChatApi.Services.ResponseService
|
|
{
|
|
public interface IResponseService
|
|
{
|
|
EnumClassification Classification { get; }
|
|
Task<string> GetResponse(HttpContext context, UserData userData, string sessionId, string question, bool needsRestart = false);
|
|
}
|
|
}
|