Skip to content

jdubois/jdubois-langchain4j-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LangChain4J demo

Author: Julien Dubois

Goal

This is a Spring Boot project that demonstrates how to use LangChain4J to create Java applications using LLMs.

It contains the following demos:

  • How to generate an image using Dalle-3.
  • How to generate a text using GPT-4o and Phi-3.
  • How to use a chat conversation with memory of the context.
  • How to ingest data into a vector database, and use it.

Those demos either run locally (with Docker, using Ollama + Phi-3 and Qdrant) or in the cloud (using Azure, with Azure OpenAI and Azure AI Search).

Slides

Slides explaining this demo are available here: LangChain4J intro.pdf.

Configuration

Running locally with Docker

This configuration uses Ollama and Qdrant, running in Docker containers. Image generation with Dalles-3 is not available in this configuration.

Local execution is enabled by using the local Spring Boot profile. One way to do this is to set spring.profiles.active=local in the src/main/resources/application.properties file.

To set up the necessary resources, you need to have Docker installed on your machine, and run with Docker Compose the src/main/docker/docker-compose.yml file.

It will set up:

Improving performance: if you have GPUs on your machine, Ollama performance can be greatly improved by using them. The easiest way is to install Ollama locally on your machine, and install the models like in the src/main/docker/install-ollama-models.sh script.

Running in the cloud with Azure

This configuration uses Azure OpenAI and Azure AI Search.

Azure is enabled by using the azure Spring Boot profile. One way to do this is to set spring.profiles.active=azure in the src/main/resources/application.properties file.

To provision the Azure resources, you need to run the src/main/script/deploy-azure-openai-models.sh script. It will create the following resources:

  • An Azure OpenAI instance, with the necessary OpenAI models for this demo.
  • An Azure AI Search instance.

At the end of this script, the following environment variables will be displayed (and stored in the .env file), and you will need them to run the application:

  • AZURE_OPENAI_ENDPOINT: your Azure OpenAI URL endpoint.
  • AZURE_OPENAI_KEY: your Azure OpenAI API key.
  • AZURE_SEARCH_ENDPOINT: your Azure AI Search URL endpoint.
  • AZURE_SEARCH_KEY: your Azure AI Search API key.

Running the demos

Once the resources (Azure or local) are configured, you can run the demos using the following command:

./mvnw spring-boot:run

Then you can access the base URL, where you find the Web UI: http://localhost:8080/.

The demos are available in the top menu.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published