9 lines
198 B
C#
9 lines
198 B
C#
|
|
using BotSharp.Abstraction.MLTasks.Settings;
|
||
|
|
|
||
|
|
namespace BotSharp.Abstraction.MLTasks;
|
||
|
|
|
||
|
|
public interface ILlmProviderSettingService
|
||
|
|
{
|
||
|
|
LlmModelSetting GetSetting(string provider, string model);
|
||
|
|
}
|