mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-11 00:09:06 +00:00
20 lines
580 B
C#
20 lines
580 B
C#
|
using AIStudio.Settings;
|
||
|
|
||
|
using Microsoft.JSInterop;
|
||
|
|
||
|
namespace AIStudio.Provider;
|
||
|
|
||
|
public class NoProvider : IProvider
|
||
|
{
|
||
|
#region Implementation of IProvider
|
||
|
|
||
|
public string Id => "none";
|
||
|
|
||
|
public string InstanceName { get; set; } = "None";
|
||
|
|
||
|
public IAsyncEnumerable<string> GetChatCompletion(IJSRuntime jsRuntime, SettingsManager settings, Model chatModel, Thread chatThread) => throw new NotImplementedException();
|
||
|
|
||
|
public Task<IList<Model>> GetModels(IJSRuntime jsRuntime, SettingsManager settings) => throw new NotImplementedException();
|
||
|
|
||
|
#endregion
|
||
|
}
|