BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/ILlmProviderSettingService.cs
2023-12-13 12:12:25 -06:00

9 lines
198 B
C#

using BotSharp.Abstraction.MLTasks.Settings;
namespace BotSharp.Abstraction.MLTasks;
public interface ILlmProviderSettingService
{
LlmModelSetting GetSetting(string provider, string model);
}