Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💄 style: remove deprecated models #6269

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 1 addition & 108 deletions src/config/aiModels/google.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ const googleChatModels: AIChatModelCard[] = [
vision: true,
},
contextWindowTokens: 1_048_576 + 8192,
description:
'一个 Gemini 2.0 Flash 模型,针对成本效益和低延迟等目标进行了优化。',
description: '一个 Gemini 2.0 Flash 模型,针对成本效益和低延迟等目标进行了优化。',
displayName: 'Gemini 2.0 Flash-Lite Preview 02-05',
id: 'gemini-2.0-flash-lite-preview-02-05',
maxOutput: 8192,
Expand All @@ -78,25 +77,6 @@ const googleChatModels: AIChatModelCard[] = [
releasedAt: '2025-02-05',
type: 'chat',
},
{
abilities: {
functionCall: true,
vision: true,
},
contextWindowTokens: 2_097_152 + 8192,
description:
'Gemini Exp 1206 是 Google 的实验性多模态AI模型,与历史版本相比有一定的质量提升。',
displayName: 'Gemini Experimental 1206',
id: 'gemini-exp-1206',
maxOutput: 8192,
pricing: {
cachedInput: 0,
input: 0,
output: 0,
},
releasedAt: '2024-12-06',
type: 'chat',
},
{
abilities: {
reasoning: true,
Expand All @@ -117,44 +97,6 @@ const googleChatModels: AIChatModelCard[] = [
releasedAt: '2025-01-21',
type: 'chat',
},
{
abilities: {
reasoning: true,
vision: true,
},
contextWindowTokens: 40_959,
description:
'Gemini 2.0 Flash Thinking Exp 是 Google 的实验性多模态推理AI模型,能对复杂问题进行推理,拥有新的思维能力。',
displayName: 'Gemini 2.0 Flash Thinking Experimental 12-19',
id: 'gemini-2.0-flash-thinking-exp-1219', // be replaced
maxOutput: 8192,
pricing: {
cachedInput: 0,
input: 0,
output: 0,
},
releasedAt: '2024-12-19',
type: 'chat',
},
{
abilities: {
functionCall: true,
vision: true,
},
contextWindowTokens: 1_056_768,
description:
'Gemini 2.0 Flash Exp 是 Google 的实验性多模态AI模型,拥有下一代特性,卓越的速度,原生工具调用以及多模态生成。',
displayName: 'Gemini 2.0 Flash Experimental',
id: 'gemini-2.0-flash-exp',
maxOutput: 8192,
pricing: {
cachedInput: 0,
input: 0,
output: 0,
},
releasedAt: '2024-12-11',
type: 'chat',
},
{
abilities: {
functionCall: true,
Expand Down Expand Up @@ -264,55 +206,6 @@ const googleChatModels: AIChatModelCard[] = [
releasedAt: '2024-10-03',
type: 'chat',
},
{
abilities: {
functionCall: true,
vision: true,
},
contextWindowTokens: 1_008_192,
description:
'Gemini 1.5 Flash 8B 0924 是最新的实验性模型,在文本和多模态用例中都有显著的性能提升。',
displayName: 'Gemini 1.5 Flash 8B 0924',
id: 'gemini-1.5-flash-8b-exp-0924',
maxOutput: 8192,
pricing: {
cachedInput: 0.018_75,
input: 0.075,
output: 0.3,
},
releasedAt: '2024-09-24',
type: 'chat',
},
{
abilities: {
functionCall: true,
},
contextWindowTokens: 32_768,
description:
'Gemini 1.0 Pro 001 (Tuning) 提供稳定并可调优的性能,是复杂任务解决方案的理想选择。',
displayName: 'Gemini 1.0 Pro 001 (Tuning)',
id: 'gemini-1.0-pro-001', // Deprecated on 2/15/2025
maxOutput: 2048,
pricing: {
input: 0.5,
output: 1.5,
},
releasedAt: '2023-12-06',
type: 'chat',
},
{
contextWindowTokens: 32_768,
description: 'Gemini 1.0 Pro 002 (Tuning) 提供出色的多模态支持,专注于复杂任务的有效解决。',
displayName: 'Gemini 1.0 Pro 002 (Tuning)',
id: 'gemini-1.0-pro-002', // Deprecated on 2/15/2025
maxOutput: 2048,
pricing: {
input: 0.5,
output: 1.5,
},
releasedAt: '2023-12-06',
type: 'chat',
},
];

export const allModels = [...googleChatModels];
Expand Down
Loading