Skip to content

Commit edfe2ed

Browse files
committed
Fix LangChain4j naming
1 parent 936b388 commit edfe2ed

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

documentation/modules/ROOT/pages/17_prompts.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
= Working with prompts
22

3-
:project-ai-name: quarkus-langchain-app
3+
:project-ai-name: quarkus-langchain4j-app
44

55
The Quarkus LangChain4j extension seamlessly integrates Large Language Models (LLMs) into Quarkus applications. LLMs are AI-based systems designed to understand, generate, and manipulate human language, showcasing advanced natural language processing capabilities. Thanks to this extensions we can enable the harnessing of LLM capabilities for the development of more intelligent applications.
66

77
In this first chapter we'll explore the simplest of interactions with an LLM: Prompting. It essentially means just asking questions to an LLM and receiving an answer in natural language from a given Model, such as OpenAI, Mistral, Hugging Face, Ollama, etc.
88

99

10-
== Creating a Quarkus & LangChain Application
10+
== Creating a Quarkus & LangChain4j Application
1111

1212
[tabs%sync]
1313
====

documentation/modules/ROOT/pages/18_chains_memory.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= Chains and Memory
22

3-
:project-ai-name: quarkus-langchain-app
3+
:project-ai-name: quarkus-langchain4j-app
44

55
So far we explored how to use prompts with LLMs, however to really leverage the power of LLMs it is essential that you
66
can build a conversation by referring to previous questions and answers and manage concurrent interactions.

documentation/modules/ROOT/pages/19_agents_tools.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= Agents/Tools
22

3-
:project-ai-name: quarkus-langchain-app
3+
:project-ai-name: quarkus-langchain4j-app
44

55
Things become more interesting when you can bring the AI LLM into your application and get it to interact with specific functions you build for it.
66

documentation/modules/ROOT/pages/20_embed_documents.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= Embedding Documents
22

3-
:project-ai-name: quarkus-langchain-app
3+
:project-ai-name: quarkus-langchain4j-app
44

55
Many applications involving Large Language Models (LLMs) often require user-specific data beyond their training set, such as CSV files, data from various sources, or reports. To achieve this, the process of Retrieval Augmented Generation (RAG) is commonly employed.
66
Through this technique you can combine your own business data (or whatever data!) with the LLM to enrich the possibilities offered by your application.

0 commit comments

Comments
 (0)