We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa4c399 + d57d860 commit 6413d12Copy full SHA for 6413d12
src/providers/google-vertex-ai/chatComplete.ts
@@ -689,7 +689,13 @@ export const VertexLlamaChatCompleteConfig: ProviderConfig = {
689
model: {
690
param: 'model',
691
required: true,
692
- default: 'meta/llama3-405b-instruct-maas',
+ default: 'meta/llama-3.1-405b-instruct-maas',
693
+ transform: (params: Params) => {
694
+ return (
695
+ params.model?.replace('meta.', 'meta/') ||
696
+ 'meta/llama-3.1-405b-instruct-maas'
697
+ );
698
+ },
699
},
700
messages: {
701
param: 'messages',
0 commit comments