Skip to content

Commit

Permalink
fix(vertex): correct core client dependency constraint (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Apr 10, 2024
1 parent 672e33e commit 10b9334
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const pkgJson = require('../dist/package.json');
for (const dep in pkgJson.dependencies) {
// ensure we point to NPM instead of a local directory
if (dep === '@anthropic-ai/sdk') {
pkgJson.dependencies[dep] = '^0.14';
pkgJson.dependencies[dep] = '>=0.14 <1';
}
}

Expand Down

0 comments on commit 10b9334

Please sign in to comment.