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.
1 parent a685395 commit 8979482Copy full SHA for 8979482
packages/vertexai/src/methods/chrome-adapter.ts
@@ -63,10 +63,9 @@ export class ChromeAdapter {
63
if (this.mode === 'only_in_cloud') {
64
return false;
65
}
66
- console.log(this.languageModelProvider);
67
const availability = await this.languageModelProvider?.availability();
68
if (availability === Availability.downloadable) {
69
- // Triggers async model download.
+ // Triggers async model download so it'll be available next time.
70
this.download();
71
72
if (this.mode === 'only_on_device') {
0 commit comments