Skip to content

Commit 7107c1c

Browse files
committed
Minor changes
1 parent 2c31cd0 commit 7107c1c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ai-assistant/src/core/db/neo4j.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ export class Neo4j implements IDB {
3636
// this.baseUrl = "http://neo4j:7474";
3737
// this.username = "neo4j";
3838
// this.password = "strongpasswordsafe123";
39-
this.baseUrl = "http://34.230.47.155:7474";
39+
this.baseUrl = "http://44.202.213.161:7474";
4040
this.username = "neo4j";
41-
this.password = "talk-runway-pad";
41+
this.password = "advance-polarity-flake";
4242
}
4343

4444
private async sendRequest(

ai-assistant/src/core/embeddings/minilml6.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ export class MiniLML6 implements IEmbeddingModel {
3131
if (!res || res.statusCode !== 200) return null;
3232

3333
const data = res.data[0] as number[];
34+
console.log(data);
35+
3436
return data;
3537
}
3638

ai-assistant/src/core/llm/llama3_70B.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ export class Llama3_70B implements ILLMModel {
2929
if (!res.content) return null;
3030

3131
const message = JSON.parse(res.content).choices[0].message.content;
32+
console.log(message);
33+
3234
return message;
3335
}
3436

0 commit comments

Comments
 (0)