using ChatApi.Models; using ChatRAG.Models; namespace ChatRAG.Services.Contracts { public interface IResponseServiceExtended : IResponseService { Task GetResponseDetailed( UserData userData, string projectId, string sessionId, string question, ResponseOptions? options = null); Task GetStatsAsync(); } }