Skip to content

Commit 8979482

Browse files
committed
Remove stray log statement
1 parent a685395 commit 8979482

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/vertexai/src/methods/chrome-adapter.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,9 @@ export class ChromeAdapter {
6363
if (this.mode === 'only_in_cloud') {
6464
return false;
6565
}
66-
console.log(this.languageModelProvider);
6766
const availability = await this.languageModelProvider?.availability();
6867
if (availability === Availability.downloadable) {
69-
// Triggers async model download.
68+
// Triggers async model download so it'll be available next time.
7069
this.download();
7170
}
7271
if (this.mode === 'only_on_device') {

0 commit comments

Comments
 (0)