using LLama.Abstractions.Params; using System; using System.Collections.Generic; using System.Text; using System.Threading; namespace LLama { public interface ILLamaExecutor { IEnumerable Infer(string text, SessionParams? sessionParams = null); IAsyncEnumerable InferAsync(string text, SessionParams? sessionParams = null, CancellationToken token = default); } }