ChatApi/Services/ResponseService/IResponseService.cs
2024-12-22 15:49:43 -03:00

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);
}
}