ChatRAG/Services/ResponseService/IResponseService.cs
2025-06-10 02:22:58 -03:00

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