namespace NewLife.Studio.Core.DTOs;
/// <summary>AI 配置</summary>
public class AiProfile
{
public string ProviderType { get; set; } = "openai";
public string Endpoint { get; set; } = "https://api.openai.com/v1";
public string ApiKey { get; set; } = "";
public string Model { get; set; } = "gpt-4o";
}
|