Complete the Graph

Currently, the graph is built from a single document.

In this challenge, you will upload the complete set of course documents and build the knowledge graph.

You will need to:

  1. Download the generative-ai.zip file that contains all the lessons from the Neo4j and Generative AI course.

  2. Unzip the file.

  3. Upload the genai-fundamentals_*.pdf files to the LLM Graph Builder.

    All the documents uploaded to the LLM Graph Builder
  4. Generate the knowledge graph.

You can use this Cypher query to view all the documents in the graph:

cypher
MATCH (d:Document)
RETURN d.fileName AS Document, d.createdAt
ORDER BY d.createdAt

Explore the graph and use the chatbot to ask questions about the course content, for example:

  • What are knowledge graphs?

  • Summarise strategies for reducing hallucination?

  • What are the features of the neo4j_graphrag Python package?

When you have completed the challenge, move on to the next lesson.

Lesson Summary

In this lesson, you uploaded multiple documents and built a knowledge graph.

In the next module, you will explore the data model, and learn how to query the knowledge graph using Cypher.

Chatbot

How can I help you today?