18 lines
428 B
C#
18 lines
428 B
C#
using ChatApi.Models;
|
|
using ChatRAG.Models;
|
|
|
|
namespace ChatRAG.Services.Contracts
|
|
{
|
|
public interface IResponseServiceExtended : IResponseService
|
|
{
|
|
Task<ResponseResult> GetResponseDetailed(
|
|
UserData userData,
|
|
string projectId,
|
|
string sessionId,
|
|
string question,
|
|
ResponseOptions? options = null);
|
|
|
|
Task<ResponseStats> GetStatsAsync();
|
|
}
|
|
}
|