10 lines
292 B
C#
10 lines
292 B
C#
using ChatApi.Models;
|
|
|
|
namespace ChatApi.Services.ResponseService
|
|
{
|
|
public interface IResponseWithFiles
|
|
{
|
|
Task<string> GetResponse(HttpContext context, UserData userData, string sessionId, string question, List<IFormFile>? files = null, bool needsRestart = false);
|
|
}
|
|
}
|