We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81ad00e commit 0ceb9dcCopy full SHA for 0ceb9dc
ai-assistant/src/core/services/embeddings/minilml6.ts
@@ -31,13 +31,11 @@ export class MiniLML6 implements IEmbeddingModel {
31
if (!res || res.statusCode !== 200) return null;
32
33
const data = res.data[0] as number[];
34
- console.log(data);
35
-
36
return data;
37
}
38
39
async generate(text: string): Promise<number[] | null> {
40
- return await this.fromHuggingFace(text);
+ // return await this.fromHuggingFace(text);
41
42
const res = await this.http.post(this.baseURL, {
43
headers: {
0 commit comments