Skip to content

Commit

Permalink
💄 style: Update Stepfun models info (lobehub#3685)
Browse files Browse the repository at this point in the history
* Update stepfun.ts

* Update stepfun.ts
  • Loading branch information
LovelyGuYiMeng authored Aug 30, 2024
1 parent 66b3c51 commit 478b40a
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions src/config/modelProviders/stepfun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,39 @@ import { ModelProviderCard } from '@/types/llm';
const Stepfun: ModelProviderCard = {
chatModels: [
{
enabled: true,
id: 'step-2-16k-nightly',
tokens: 16_384,
},
{
id: 'step-1-256k',
tokens: 32_768,
tokens: 256_000,
},
{
enabled: true,
id: 'step-1-128k',
tokens: 32_768,
tokens: 128_000,
},
{
enabled: true,
id: 'step-1-32k',
tokens: 32_768,
},
{
enabled: true,
id: 'step-1-8k',
tokens: 8192,
},
{
enabled: true,
id: 'step-1v-32k',
tokens: 32_768,
vision: true,
},
{
id: 'step-1-8k',
enabled: true,
id: 'step-1v-8k',
tokens: 8192,
vision: true,
},
],
checkModel: 'step-1-8k',
Expand Down

0 comments on commit 478b40a

Please sign in to comment.