2025-10-14 22:17:21 +08:00
|
|
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding.Metadata;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.AiHub.Domain.Shared.Consts;
|
|
|
|
|
|
|
|
|
|
|
|
public class PremiumPackageConst
|
|
|
|
|
|
{
|
2025-11-25 10:57:08 +08:00
|
|
|
|
public static List<string> ModeIds =
|
|
|
|
|
|
[
|
|
|
|
|
|
"claude-sonnet-4-5-20250929",
|
|
|
|
|
|
"claude-haiku-4-5-20251001",
|
2025-11-25 12:42:44 +08:00
|
|
|
|
"claude-opus-4-5-20251101",
|
2025-11-25 14:18:06 +08:00
|
|
|
|
"gemini-3-pro-preview",
|
2025-12-12 21:14:38 +08:00
|
|
|
|
"gpt-5.1-codex-max",
|
2025-12-17 18:47:28 +08:00
|
|
|
|
"gpt-5.2",
|
|
|
|
|
|
"gemini-3-pro-high",
|
2025-12-19 11:02:16 +08:00
|
|
|
|
"gemini-3-pro-image-preview",
|
2025-12-25 12:00:25 +08:00
|
|
|
|
"gpt-5.2-codex-xhigh",
|
2025-12-31 00:20:36 +08:00
|
|
|
|
"gpt-5.2-codex",
|
2025-12-25 12:00:25 +08:00
|
|
|
|
|
2025-12-27 23:02:43 +08:00
|
|
|
|
"glm-4.7",
|
2025-12-27 23:50:53 +08:00
|
|
|
|
"yi-claude-sonnet-4-5-20250929",
|
|
|
|
|
|
"yi-claude-haiku-4-5-20251001",
|
|
|
|
|
|
"yi-claude-opus-4-5-20251101",
|
2026-01-02 00:57:30 +08:00
|
|
|
|
|
|
|
|
|
|
"yi-gpt-5.2",
|
|
|
|
|
|
"yi-gpt-5.2-codex",
|
|
|
|
|
|
"yi-gemini-3-pro-high",
|
|
|
|
|
|
"yi-gemini-3-pro",
|
|
|
|
|
|
|
2025-11-25 10:57:08 +08:00
|
|
|
|
];
|
2025-10-14 22:17:21 +08:00
|
|
|
|
}
|