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

This commit is contained in:
Chang She
2024-01-22 11:44:38 -08:00
committed by Weston Pace
parent 49de13c65a
commit b699b5c42b

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[][]> {