Applying RAG for Working with Wazuh Documentation: A Step-by-Step Guide (Part 2)
Preparing for Code Development
For local code development for RAG, you will need to install the following tools:
- Ollama
- Python v3.9+
- Basic Python knowledge
- Wazuh documentation in PDF format
Running and Configuring Ollama
- Install Ollama
- Obtain the necessary models:
llama3.2
andnomic-embed-text
.
Developing a Mechanism for Loading PDF Documentation
For development, we will use the following tools:
- LangChain - for creating data processing chains.
- Ollama - for running and configuring models.
- Python - as the main programming language.
- ChromaDB - as a vector store.
Install the dependencies:
[Read More]