AuthorBuddy/Services/IOllamaService.cs
2026-05-17 07:27:18 +02:00

13 lines
331 B
C#

using AuthorBuddy.Web.Models;
namespace AuthorBuddy.Web.Services;
public interface IOllamaService
{
Task<IEnumerable<LLM_Model>> GetLocalModelsAsync();
Task<bool> PullModelAsync(string modelName, IProgress<string> progress);
Task<string> QuickSpellCheckAsync(string text);
void Reconfigure(string ollamaUrl);
}