using LLama.Abstractions; using LLama.Web.Common; using LLama.Web.Models; namespace LLama.Web.Services { public interface IModelSessionService { Task GetAsync(string sessionId); Task> CreateAsync(LLamaExecutorType executorType, string sessionId, string modelName, string promptName, string parameterName); Task RemoveAsync(string sessionId); Task CancelAsync(string sessionId); } }