ChatApi/Services/ResponseService/IResponseService.cs
2024-11-28 22:49:03 -03:00

11 lines
283 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);
}
}