BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/ILlmProviderSettingService.cs

9 lines
198 B
C#
Raw Normal View History

2023-12-13 18:12:25 +00:00
using BotSharp.Abstraction.MLTasks.Settings;
namespace BotSharp.Abstraction.MLTasks;
public interface ILlmProviderSettingService
{
LlmModelSetting GetSetting(string provider, string model);
}