Metadata-Version: 2.4
Name: hie_rag
Version: 0.1.2
Summary: A simple hierarchical RAG model
License: Apache License
        Version 2.0, January 2004
        http://www.apache.org/licenses/
        
        Copyright [2025] [Chih-Han Chung]
        
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the License.
        You may obtain a copy of the License at
        
            http://www.apache.org/licenses/LICENSE-2.0
        
        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dotenv==1.0.1
Requires-Dist: werkzeug==3.1.3
Requires-Dist: numpy==2.2.3
Requires-Dist: markitdown==0.0.1a3
Requires-Dist: openai==1.66.3
Requires-Dist: scikit-learn
Requires-Dist: tiktoken==0.8.0
Requires-Dist: langchain==0.3.13
Requires-Dist: langchain-openai==0.2.13
Requires-Dist: chromadb==0.6.2
Dynamic: license-file

# Hie-RAG

Hie-RAG is a Hierarchical Retrieval-Augmented Generation framework for question answering.

# Introduction

It is designed to improve the retrieval quality and generation quality of the RAG model by introducing a hierarchical structure. The framework consists of two main parts: a higher-level summary retriever and a lower-level document retriever.

# Installation

```bash
pip install hie-rag
```
