Skip to content

Commit c3a90e3

Browse files
authored
fix(js/plugins/vertexai): removed logging of models in listModels (#2985)
1 parent cd0ea08 commit c3a90e3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

js/plugins/vertexai/src/list-models.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,5 @@ export async function listModels(
5858
}
5959

6060
const modelResponse = (await response.json()) as ListModelsResponse;
61-
for (const m of modelResponse.publisherModels) {
62-
console.log(m.name);
63-
}
6461
return modelResponse.publisherModels;
6562
}

0 commit comments

Comments
 (0)