From b699b5c42b6d183ef63ecd33baadc5e3aea0e5ae Mon Sep 17 00:00:00 2001 From: Chang She <759245+changhiskhan@users.noreply.github.com> Date: Mon, 22 Jan 2024 11:44:38 -0800 Subject: [PATCH] chore(js): remove errant console.log (#834) --- node/src/embedding/openai.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/node/src/embedding/openai.ts b/node/src/embedding/openai.ts index fcc9cc11..a84d4ba6 100644 --- a/node/src/embedding/openai.ts +++ b/node/src/embedding/openai.ts @@ -38,8 +38,6 @@ export class OpenAIEmbeddingFunction implements EmbeddingFunction { this._openai = new Openai(configuration) this._modelName = modelName - - console.log({ op: this._openai.embeddings.create, md: this._modelName }) } async embed (data: string[]): Promise {