Skip to main content

A RAG (Retrieval-Augmented Generation) system using Llama Index and ChromaDB

Project description

Llama Index Query Engine + Ollama Model to Create Your Own Knowledge Pool

This project is a robust and modular application that builds an efficient query engine using LlamaIndex, ChromaDB, and custom embeddings. It allows you to index documents from multiple directories and query them using natural language.

Query Question:

Can llm generate creative contents? where is this pdf located

Output:

Based on the provided context information:

1. **Can LLM generate creative contents?**
The answer is yes. According to the text, researchers have explored methods to improve idea generation using Large Language Models (LLMs), and their work shows that LLM-generated ideas can be more novel than expert research ideas.

2. **Where is this PDF located?**
The PDF file path is `/mnt/d/Paper/Can LLMs Generate Novel Research Ideas.pdf`.

Table of Contents

Features

  • Modular Design: The project is organized into separate modules for easy maintenance and scalability.
  • Efficient Indexing: Uses ChromaDB to store embeddings, allowing efficient indexing and querying.
  • Incremental Updates: Only new or updated documents are indexed, improving performance.
  • Multiple Directories Support: Indexes documents from multiple directories across different locations.
  • Custom Embeddings: Utilizes custom embedding models for better performance.
  • Error Handling: Gracefully handles missing directories or files and recreates the index as needed.
  • Logging: Provides detailed logs for monitoring and debugging.
  • Advanced Text-Based File Support: Supports a variety of text-based file formats, including: ".txt", ".md", ".html", ".htm", ".xml", ".json", ".csv", ".pdf", ".doc", ".docx", ".rtf", ".ipynb", ".ppt", ".pptx", ".xls", ".xlsx",

Project Structure

ollama_rag/
├── ollama_rag/
   ├── __init__.py
   ├── ollama_rag.py         # Main class OllamaRAG
   ├── models.py
   ├── data_loader.py
   ├── indexer.py
   ├── query_engine.py
   ├── prompts.py
   ├── document_tracker.py
 
├── tests/
   └── ... (test scripts)
├── setup.py
├── README.md
├── LICENSE
├── MANIFEST.in
└── requirements.txt

Prerequisites

  • Python 3.7 or higher: Ensure you have Python installed.
  • Git: For cloning the repository.
  • Pip: Python package installer.
  • ollama: https://ollama.com/download, install your selected model by the following example:
ollama pull llama3.2
  • LibreOffice: Required for converting .ppt files to .pptx when processing PowerPoint files. Ubuntu/Debian:
sudo apt update
sudo apt install libreoffice

macOS (using Homebrew):

brew install --cask libreoffice

Windows: Download and install from the LibreOffice official website https://www.libreoffice.org/download/download-libreoffice/.

Installation

Install via PyPI (Recommended)

You can install ollama_rag directly from PyPI:

pip install --upgrade ollama-rag

Install from Source

  1. Clone the Repository

    git clone https://github.com/Zakk-Yang/ollama-rag.git
    cd my_llama_project
    
  2. Create a Virtual Environment (Recommended)

    conda create -n env python=3.10
    conda activate env
    
  3. Install Dependencies and the Package

    pip install .
    

Usage

Running a Query

from ollama_rag import OllamaRAG

# Initialize the query engine with your configurations
engine = OllamaRAG(
    model_name="llama3.2",  # Replace with your Ollama model name
    request_timeout=120.0,
    embedding_model_name="BAAI/bge-large-en-v1.5",  # Replace with your Hugging Face embedding model
    trust_remote_code=True,
    input_dirs=[
        "/your/path/to/your/documents",
        # Add more directories as needed
    ],
    required_exts=[
        ".txt", ".md", ".html", ".htm", ".xml", ".json", ".csv",
        ".pdf", ".doc", ".docx", ".rtf", ".ipynb",
        ".ppt", ".pptx", ".xls", ".xlsx",  # you can remove required_exts by default to capture all supported extentions
    ]
)

# Update the index with new or updated documents
engine.update_index()

# Run a query
response = engine.query("can LLM generate creative contents?")
print(response)

Ouptut is a dict:

{'response': "Yes, the text suggests that LLMs (Large Language Models) can generate novel research ideas and even outperform human experts in terms of novelty. The authors claim that their AI agent generates ideas that are statistically more novel than those written by expert researchers. However, it's worth noting that the effectiveness of LLMs in generating creative content is a topic of ongoing debate, and not all studies have found similar results (e.g., Chakrabarty et al. (2024) found that AI writings are less creative than professional writers). Nevertheless, based on the provided context, it appears that LLMs can generate novel research ideas under certain conditions.", 'sources': [{'document_id': 'Can LLMs Generate Novel Research Ideas.pdf', 'file_path': '/mnt/d/Paper/Can LLMs Generate Novel Research Ideas.pdf', 'page_number': '18', 'sheet_name': 'N/A', 'text_snippet': '9 Related Work\nResearch idea generation and execution . Several prior works explored methods to improve idea\ngeneration, such as iterative novelty boosting (Wang et al., 2024), multi-agent collaborati...'}]}

Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the Repository
  2. Create a Branch
git checkout -b feature/your-feature-name
  1. Commit Your Changes
git commit -am 'Add new feature'

4.Push to the Branch

git push origin feature/your-feature-name

License

The source code for the site is licensed under the MIT license, which you can find in the MIT-LICENSE.txt file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ollama_rag-0.4.0.tar.gz (13.6 kB view hashes)

Uploaded Source

Built Distribution

ollama_rag-0.4.0-py3-none-any.whl (13.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page