Skip to content

Commit

Permalink
docs: update models in vertex examples (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Mar 13, 2024
1 parent 104562c commit 3d139b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/vertex-sdk/README.md
Expand Up @@ -30,10 +30,10 @@ async function main() {
messages: [
{
role: 'user',
content: 'Hey Claude! How can I recursively list all files in a directory in Rust?',
content: 'Hey Claude!',
},
],
model: 'claude-instant-1p2',
model: 'claude-3-sonnet@20240229',
max_tokens: 300,
});
console.log(JSON.stringify(result, null, 2));
Expand Down
2 changes: 1 addition & 1 deletion packages/vertex-sdk/examples/vertex.ts
Expand Up @@ -14,7 +14,7 @@ async function main() {
content: 'Hello!',
},
],
model: 'claude-instant-1p2',
model: 'claude-3-sonnet@20240229',
max_tokens: 300,
});
console.log(JSON.stringify(result, null, 2));
Expand Down

0 comments on commit 3d139b3

Please sign in to comment.