11 lines
353 B
C#
11 lines
353 B
C#
using ChatApi.Models;
|
|
|
|
namespace ChatRAG.Services.Contracts
|
|
{
|
|
public interface IResponseService
|
|
{
|
|
Task<string> GetResponse(UserData userData, string projectId, string sessionId, string question);
|
|
Task<string> GetResponse(UserData userData, string projectId, string sessionId, string question, string language = "pt");
|
|
}
|
|
}
|