Precision RAG
1.0.0
This project focuses on Automatic Prompt Engineering (APE) for Retrieval-Augmented Generation (RAG) systems.
The aims is to simplify LLM interaction through prompt engineering solutions. Through services liike:
Automatic Prompt Generation: Creates effective prompts to generate high-quality content. Automatic Evaluation Data Generation: Generates diverse test cases for prompt evaluation. Prompt Testing and Ranking: Evaluates prompts and ranks them based on effectiveness.
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install -r requirements.txtpython3.10 -m venv venv
source venv/bin/activate # For Unix or MacOS
venvScriptsactivate # For Windows
pip install -r requirements.txtCreate a free Pinecone account and get your API key from here.
Create a .env file and add the following variables:
OPENAI_API_KEY = [ENTER YOUR OPENAI API KEY HERE]
PINECONE_API_KEY = [ENTER YOUR PINECONE API KEY HERE]