feat: 初始化NewLife Studio项目,完成基础框架与数据管理模块
何炳宏 authored at 2026-05-26 12:09:09
320.00 B
NewLife.Studio
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";
}