jdasic commited on
Commit
a7aec36
·
verified ·
1 Parent(s): d61ae56

update db connection string

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,9 +16,9 @@ headers = {
16
  "Authorization": f"Bearer {hf_token}"
17
  }
18
  # Connect to Neo4j database
19
- uri = "bolt://134.122.123.86:7687" # Replace with your database URI
20
  username = "neo4j" # Replace with your Neo4j username
21
- password = "cVW8Db2D" # Replace with your Neo4j password
22
  graph = Graph(uri, auth=(username, password))
23
  print("DB connected")
24
 
 
16
  "Authorization": f"Bearer {hf_token}"
17
  }
18
  # Connect to Neo4j database
19
+ uri = "neo4j://143.198.173.3:7687" # Replace with your database URI
20
  username = "neo4j" # Replace with your Neo4j username
21
+ password = "pickumaterinu" # Replace with your Neo4j password
22
  graph = Graph(uri, auth=(username, password))
23
  print("DB connected")
24