diff --git a/app/MindWork AI Studio/Provider/NoProvider.cs b/app/MindWork AI Studio/Provider/NoProvider.cs index fa3635e8..fa2adf11 100644 --- a/app/MindWork AI Studio/Provider/NoProvider.cs +++ b/app/MindWork AI Studio/Provider/NoProvider.cs @@ -11,10 +11,14 @@ public class NoProvider : IProvider public string Id => "none"; public string InstanceName { get; set; } = "None"; - - public IAsyncEnumerable GetChatCompletion(IJSRuntime jsRuntime, SettingsManager settings, Model chatModel, Thread chatThread) => throw new NotImplementedException(); - public Task> GetModels(IJSRuntime jsRuntime, SettingsManager settings) => throw new NotImplementedException(); + public async IAsyncEnumerable GetChatCompletion(IJSRuntime jsRuntime, SettingsManager settings, Model chatModel, Thread chatThread) + { + await Task.CompletedTask; + yield return ""; + } + + public Task> GetModels(IJSRuntime jsRuntime, SettingsManager settings) => Task.FromResult>(new List()); #endregion } \ No newline at end of file