You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/aura-and-ai/talk-with-data.adoc
+26-10Lines changed: 26 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,24 +9,40 @@ An example where GraphRAG is used integrated with LLMs and Cypher queries to ret
9
9
10
10
== Key features
11
11
12
-
*Fully managed infrastructure*: No manual setup or maintenance is required. Aura automatically handles scaling, backups, and security patches.
12
+
* *Fully managed infrastructure*: No manual setup or maintenance is required. Aura automatically handles scaling, backups, and security patches.
13
+
* *Always up to date*: Aura runs on the latest Neo4j version, with vector search, hybrid search, and other retrieval features available without manual upgrades.
14
+
* *Integrated security*: Aura provides built-in authentication, role-based access control, and fine-grained security to ensure models can only access approved data.
15
+
* *Pay-as-you-go pricing*: Scale compute and storage resources on demand. Aura is cost-effective for both experimentation and production workloads.
13
16
14
-
*Always up to date*: Aura runs on the latest Neo4j version, with vector search, hybrid search, and other retrieval features available without manual upgrades.
17
+
== Configure your environment
15
18
16
-
*Integrated security*: Aura provides built-in authentication, role-based access control, and fine-grained security to ensure models can only access approved data.
19
+
You can try this out with a free Aura instance.
20
+
When you create an instance, download the connection details from the console.
17
21
18
-
*Pay-as-you-go pricing*: Scale compute and storage resources on demand. Aura is cost-effective for both experimentation and production workloads.
22
+
Create a `.env` file in your project root with the following format:
19
23
20
-
== Aura `.env`
24
+
[source,properties]
25
+
----
26
+
NEO4J_URI=neo4j+s://<dbid>.databases.neo4j.io
27
+
NEO4J_USERNAME=neo4j
28
+
NEO4J_PASSWORD=<password>
21
29
22
-
*You can literally set up a Free instance and try this out*
23
-
*You just need to create a .env with your aura details and you can do that in this format:
30
+
OPENAI_API_KEY=<your-api-key>
31
+
----
24
32
33
+
== GraphRAG Python package
25
34
35
+
The GraphRAG Python package is a great way to start experimenting with knowledge graphs and AI.
0 commit comments