Skip to content

Commit

Permalink
🐛 fix: fixed bedrock llama model id (lobehub#3518)
Browse files Browse the repository at this point in the history
  • Loading branch information
akhfa authored Aug 19, 2024
1 parent 434004a commit 34b4c69
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/config/modelProviders/bedrock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,24 +96,24 @@ const Bedrock: ModelProviderCard = {
tokens: 128_000,
},
{
description: 'Llama 3.1 405B Instruct (preview)',
displayName: 'Llama 3.1 405B Instruct (preview)',
description: 'Llama 3.1 405B Instruct',
displayName: 'Llama 3.1 405B Instruct',
enabled: true,
id: 'meta.llama3-405b-instruct-v1:0',
id: 'meta.llama3-1-405b-instruct-v1:0',
tokens: 128_000,
},
{
description: 'Llama 3.1 70B Instruct',
displayName: 'Llama 3.1 70B Instruct',
enabled: true,
id: 'meta.llama3-70b-instruct-v1:0',
id: 'meta.llama3-1-70b-instruct-v1:0',
tokens: 128_000,
},
{
description: 'Llama 3.1 8B Instruct',
displayName: 'Llama 3.1 8B Instruct',
enabled: true,
id: 'meta.llama3-8b-instruct-v1:0',
id: 'meta.llama3-1-8b-instruct-v1:0',
tokens: 128_000,
},
],
Expand Down

0 comments on commit 34b4c69

Please sign in to comment.