Skip to content

Commit

Permalink
💄 style: Add step-1.5v-turbo model (lobehub#4456)
Browse files Browse the repository at this point in the history
  • Loading branch information
sxjeru authored Oct 23, 2024
1 parent 98c5d21 commit 297b113
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions src/config/modelProviders/stepfun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ const Stepfun: ModelProviderCard = {
enabled: true,
functionCall: true,
id: 'step-1-flash',
pricing: {
currency: 'CNY',
input: 1,
output: 4,
},
tokens: 8000,
},
{
Expand All @@ -18,6 +23,11 @@ const Stepfun: ModelProviderCard = {
enabled: true,
functionCall: true,
id: 'step-1-8k',
pricing: {
currency: 'CNY',
input: 5,
output: 20,
},
tokens: 8000,
},
{
Expand All @@ -26,6 +36,11 @@ const Stepfun: ModelProviderCard = {
enabled: true,
functionCall: true,
id: 'step-1-32k',
pricing: {
currency: 'CNY',
input: 15,
output: 70,
},
tokens: 32_000,
},
{
Expand All @@ -34,13 +49,23 @@ const Stepfun: ModelProviderCard = {
enabled: true,
functionCall: true,
id: 'step-1-128k',
pricing: {
currency: 'CNY',
input: 40,
output: 200,
},
tokens: 128_000,
},
{
description: '具备超长上下文处理能力,尤其适合长文档分析。',
displayName: 'Step 1 256K',
functionCall: true,
id: 'step-1-256k',
pricing: {
currency: 'CNY',
input: 95,
output: 300,
},
tokens: 256_000,
},
{
Expand All @@ -49,6 +74,11 @@ const Stepfun: ModelProviderCard = {
enabled: true,
functionCall: true,
id: 'step-2-16k',
pricing: {
currency: 'CNY',
input: 38,
output: 120,
},
tokens: 16_000,
},
{
Expand All @@ -57,6 +87,11 @@ const Stepfun: ModelProviderCard = {
enabled: true,
functionCall: true,
id: 'step-1v-8k',
pricing: {
currency: 'CNY',
input: 5,
output: 20,
},
tokens: 8000,
vision: true,
},
Expand All @@ -66,6 +101,24 @@ const Stepfun: ModelProviderCard = {
enabled: true,
functionCall: true,
id: 'step-1v-32k',
pricing: {
currency: 'CNY',
input: 15,
output: 70,
},
tokens: 32_000,
vision: true,
},
{
description: '该模型拥有强大的视频理解能力。',
displayName: 'Step 1.5V Turbo',
enabled: true,
id: 'step-1.5v-turbo',
pricing: {
currency: 'CNY',
input: 8,
output: 35,
},
tokens: 32_000,
vision: true,
},
Expand Down

0 comments on commit 297b113

Please sign in to comment.