Spaces:
Sleeping
Sleeping
update db connection string
Browse files
app.py
CHANGED
@@ -16,9 +16,9 @@ headers = {
|
|
16 |
"Authorization": f"Bearer {hf_token}"
|
17 |
}
|
18 |
# Connect to Neo4j database
|
19 |
-
uri = "
|
20 |
username = "neo4j" # Replace with your Neo4j username
|
21 |
-
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 |
|