BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/Settings/LlmProviderSetting.cs

13 lines
313 B
C#
Raw Normal View History

2023-12-13 18:12:25 +00:00
namespace BotSharp.Abstraction.MLTasks.Settings;
public class LlmProviderSetting
{
2025-02-21 17:37:36 +00:00
public string Provider { get; set; } = "azure-openai";
2023-12-13 18:12:25 +00:00
2025-02-21 17:37:36 +00:00
public List<LlmModelSetting> Models { get; set; } = [];
2023-12-13 18:12:25 +00:00
public override string ToString()
{
return $"{Provider} with {Models.Count} models";
}
}