在 Yi.Framework.AiHub.Domain.Shared/Consts/PremiumPackageConst.cs 的常量数组中添加模型标识 "gpt-5.2-codex-high",并补上前一项缺失的逗号以保证语法正确。
19 lines
487 B
C#
19 lines
487 B
C#
using Microsoft.AspNetCore.Mvc.ModelBinding.Metadata;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.Shared.Consts;
|
|
|
|
public class PremiumPackageConst
|
|
{
|
|
public static List<string> ModeIds =
|
|
[
|
|
"claude-sonnet-4-5-20250929",
|
|
"claude-haiku-4-5-20251001",
|
|
"claude-opus-4-5-20251101",
|
|
"gemini-3-pro-preview",
|
|
"gpt-5.1-codex-max",
|
|
"gpt-5.2",
|
|
"gemini-3-pro-high",
|
|
"gemini-3-pro-image-preview",
|
|
"gpt-5.2-codex-high"
|
|
];
|
|
} |