chore(js): remove errant console.log (#834)

This commit is contained in:
Chang She
2024-04-05 16:27:42 -07:00
committed by Weston Pace
parent 49de13c65a
commit b699b5c42b
-2
View File
@@ -38,8 +38,6 @@ export class OpenAIEmbeddingFunction implements EmbeddingFunction<string> {
this._openai = new Openai(configuration)
this._modelName = modelName
console.log({ op: this._openai.embeddings.create, md: this._modelName })
}
async embed (data: string[]): Promise<number[][]> {