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