2023-05-28 16:30:27 +00:00
|
|
|
namespace BotSharp.Platform.AzureAi;
|
|
|
|
|
|
|
|
|
|
public class AzureAiSettings
|
|
|
|
|
{
|
2023-05-29 01:06:05 +00:00
|
|
|
public string ApiKey { get; set; } = string.Empty;
|
|
|
|
|
public string Endpoint { get; set; } = string.Empty;
|
|
|
|
|
public string DeploymentModel { get; set; } = string.Empty;
|
|
|
|
|
public string InstructionFile { get; set; } = string.Empty;
|
|
|
|
|
public string ChatSampleFile { get; set; } = string.Empty;
|
2023-05-28 16:30:27 +00:00
|
|
|
}
|