File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments