using AuthorBuddy.Web.Models; namespace AuthorBuddy.Web.Services; public interface IOllamaSetupService { Task AnalyzeSettingsAsync(); Task CreateConfigFileAsync(OllamaSettings settings); } public class SetupRecommendation { public bool IsCorrect { get; set; } public string Message { get; set; } = string.Empty; public OllamaSettings RecommendedSettings { get; set; } = new(); public List Findings { get; set; } = new(); }