Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Building Neo4j-Powered Applications with LLMs

You're reading from   Building Neo4j-Powered Applications with LLMs Create LLM-driven search and recommendations applications with Haystack, LangChain4j, and Spring AI

Arrow left icon
Product type Paperback
Published in Jun 2025
Publisher Packt
ISBN-13 9781836206231
Length 312 pages
Edition 1st Edition
Languages
Concepts
Arrow right icon
Authors (2):
Arrow left icon
Ravindranatha Anthapu Ravindranatha Anthapu
Author Profile Icon Ravindranatha Anthapu
Ravindranatha Anthapu
Siddhant Agarwal Siddhant Agarwal
Author Profile Icon Siddhant Agarwal
Siddhant Agarwal
Arrow right icon
View More author details
Toc

Table of Contents (20) Chapters Close

Preface 1. Part: 1 Introducing RAG and Knowledge Graphs for LLM Grounding 2. Introducing LLMs, RAGs, and Neo4j Knowledge Graphs FREE CHAPTER 3. Demystifying RAG 4. Building a Foundational Understanding of Knowledge Graph for Intelligent Applications 5. Part 2: Integrating Haystack with Neo4j: A Practical Guide to Building AI-Powered Search 6. Building Your Neo4j Graph with Movies Dataset 7. Implementing Powerful Search Functionalities with Neo4j and Haystack 8. Exploring Advanced Knowledge Graph Capabilities with Neo4j 9. Part 3: Building an Intelligent Recommendation System with Neo4j, Spring AI, and LangChain4j 10. Introducing the Neo4j Spring AI and LangChain4j Frameworks for Building Recommendation Systems 11. Constructing a Recommendation Graph with H&M Personalization Dataset 12. Integrating LangChain4j and Spring AI with Neo4j 13. Creating an Intelligent Recommendation System 14. Part 4: Deploying Your GenAI Application in the Cloud 15. Choosing the Right Cloud Platform for GenAI Applications 16. Deploying Your Application on the Google Cloud 17. Epilogue 18. Other Books You May Enjoy
19. Index

Containerizing the application with Docker

Before deploying your Haystack chatbot to Google Cloud Run, the application must be packaged into a Docker container. Containerization allows you to bundle your code, dependencies, and environment into a single, portable unit that runs consistently across different systems—including the cloud.

In this section, you will create a Dockerfile, which defines the steps required to build a Docker image of your chatbot. This image will then be deployed to Cloud Run as a serverless web service.

Here is the Dockerfile used to containerize your Haystack chatbot:

FROM python:3.11
EXPOSE 8080
WORKDIR /app
COPY . ./
RUN pip install -r requirements.txt
CMD ["python", "app.py"]

Let us break down what each line does:

  • FROM python:3.11: This sets the base image to Python 3.11, which includes everything needed to run Python applications.
  • EXPOSE 8080: Cloud Run expects the application to listen on port...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Visually different images