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