BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/ILlmProviderService.cs
2024-05-16 16:32:58 -05:00

12 lines
377 B
C#

using BotSharp.Abstraction.MLTasks.Settings;
namespace BotSharp.Abstraction.MLTasks;
public interface ILlmProviderService
{
LlmModelSetting GetSetting(string provider, string model);
List<string> GetProviders();
LlmModelSetting GetProviderModel(string provider, string id, bool? multiModal = null);
List<LlmModelSetting> GetProviderModels(string provider);
}