Skip to content

Commit ff0e0df

Browse files
committed
update
1 parent 4c198d6 commit ff0e0df

File tree

1 file changed

+26
-10
lines changed

1 file changed

+26
-10
lines changed

modules/ROOT/pages/aura-and-ai/talk-with-data.adoc

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,40 @@ An example where GraphRAG is used integrated with LLMs and Cypher queries to ret
99

1010
== Key features
1111

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.
1316

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
1518

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.
1721

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:
1923

20-
== Aura `.env`
24+
[source,properties]
25+
----
26+
NEO4J_URI=neo4j+s://<dbid>.databases.neo4j.io
27+
NEO4J_USERNAME=neo4j
28+
NEO4J_PASSWORD=<password>
2129
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+
----
2432

33+
== GraphRAG Python package
2534

35+
The GraphRAG Python package is a great way to start experimenting with knowledge graphs and AI.
2636

27-
== GraphRAG in Aura
37+
* Documentation: https://neo4j.com/developer/genai-ecosystem/graphrag-python/
38+
* Walkthrough video: https://www.youtube.com/watch?v=hDJlruy60AM
39+
* Example notebook: https://github.com/neo4j-product-examples/graphrag-python-examples/blob/main/end-to-end-lupus.ipynb
40+
41+
The example notebook demonstrates a meta-analysis of the disease Lupus, which is notoriously difficult to diagnose.
2842

29-
Viewing a document chunk in Aura
43+
== GraphRAG in Aura
3044

31-
image::chunks_in_rag.png[View the chunks in Aura]
45+
You will see information from the PDFs populate your Aura instance.
46+
Once your data is ingested, you can explore the indexed document chunks directly in Aura and explore the knowledge graph:
3247

48+
image::chunks_in_rag.png[Viewing chunks in Aura]

0 commit comments

Comments
 (0)