From 85dfd5ceec77aa4159c764ba9225ce65eafd2456 Mon Sep 17 00:00:00 2001 From: Akhmad Fakhoni Listiyan Dede Date: Mon, 19 Aug 2024 16:54:49 +0000 Subject: [PATCH] fix: fixed bedrock llama model id --- src/config/modelProviders/bedrock.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/config/modelProviders/bedrock.ts b/src/config/modelProviders/bedrock.ts index 94fa3ad04acf..a67ffdeda08f 100644 --- a/src/config/modelProviders/bedrock.ts +++ b/src/config/modelProviders/bedrock.ts @@ -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, }, ],