在 Yi.Framework.AiHub.Domain.Shared/Consts/PremiumPackageConst.cs 的 premiumModels 列表中添加 "gpt-5.1-codex-max"(并补上末尾换行)。
15 lines
371 B
C#
15 lines
371 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"
|
|
];
|
|
} |