|
import os |
|
import sys |
|
import random |
|
import gradio as gr |
|
from langchain_community.document_loaders import PyPDFLoader |
|
from langchain_text_splitters import RecursiveCharacterTextSplitter |
|
from langchain_huggingface import HuggingFaceEmbeddings |
|
from langchain_community.vectorstores import FAISS |
|
from langchain.chains import RetrievalQA |
|
from langchain_groq import ChatGroq |
|
from langchain_core.prompts import PromptTemplate |
|
from langchain_core.output_parsers import StrOutputParser |
|
from langchain_core.runnables import RunnablePassthrough |
|
|
|
|
|
print(f"Pyton version {sys.version}.") |
|
|
|
|
|
vector_store = None |
|
|
|
|
|
sample_filenames = ["Installation.pdf", |
|
"User Guide.pdf", |
|
] |
|
|
|
desc = """ |
|
### This is a Demo of Retrieval-Augmented Generation (RAG) |
|
|
|
**RAG** is an approach that combines retrieval-based and generative LLM models to improve the accuracy and relevance of generated text. |
|
It works by first retrieving relevant documents from an external knowledge source (like PDF files) and then using a LLM model to produce responses based on both the input query and the retrieved content. |
|
This method enhances factual correctness and allows the model to access up-to-date or domain-specific information without retraining. |
|
|
|
Click the button below to load a **User Guide** and an **Installation Guide** for a smoke alarm device into the vector database. It could take a couple of minutes to process. |
|
Once you see the message *"PDF(s) indexed successfully!"*, go to the **Chatbot** tab to ask any relevant questions about the device. |
|
|
|
You can change the LLM models in the **Additional Inputs** at the bottom of the **Chatbot** tab, in case of certain model is out of date. You can also adjust the LLM parameters there. |
|
|
|
""" |
|
|
|
chatbot_css = """ |
|
.gradio-container { |
|
font-family: 'Inter', sans-serif; |
|
border-radius: 12px; |
|
overflow: hidden; |
|
} |
|
.panel { |
|
border-radius: 8px; |
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); |
|
} |
|
.gr-button { |
|
border-radius: 8px; |
|
padding: 10px 20px; |
|
font-weight: bold; |
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
|
transition: all 0.2s ease-in-out; |
|
} |
|
.gr-button:hover { |
|
transform: translateY(-2px); |
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); |
|
} |
|
.gr-textbox textarea { |
|
border-radius: 8px; |
|
} |
|
.gr-slider { |
|
padding: 10px 0; |
|
} |
|
.gr-tabitem { |
|
padding: 20px; |
|
} |
|
""" |
|
|
|
sample_button = "Load User Guide and Installation Guide documents" |
|
|
|
|
|
examples_questions = [["How long is the lifespan of this smoke alarm?"], |
|
["How often should I change the battery?"], |
|
["Where should I install the smoke alarm in my home?"], |
|
["How do I test if the smoke alarm is working?"], |
|
["What should I do if the smoke alarm keeps beeping?"], |
|
["Can this smoke alarm detect carbon monoxide too?"], |
|
["How do I clean the smoke alarm properly?"], |
|
["What type of battery does this smoke alarm use?"], |
|
["How loud is the smoke alarm when it goes off?"], |
|
["Can I install this smoke alarm on a wall instead of a ceiling?"], |
|
] |
|
|
|
template = \ |
|
"""Use the following pieces of context to answer the question at the end. |
|
If you don't know the answer, just say you don't know because no relevant information in the provided documents, don't try to make up an answer. |
|
|
|
{context} |
|
|
|
Question: {question} |
|
|
|
Answer: |
|
""" |
|
|
|
|
|
def index_pdf(pdf): |
|
global vector_store |
|
|
|
|
|
loader = PyPDFLoader(pdf.name) |
|
documents = loader.load() |
|
|
|
|
|
text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=200) |
|
texts = text_splitter.split_documents(documents) |
|
|
|
|
|
embeddings = HuggingFaceEmbeddings(model_name="bert-base-uncased", encode_kwargs={"normalize_embeddings": True}) |
|
|
|
|
|
vector_store = FAISS.from_documents(texts, embeddings) |
|
|
|
return "PDF(s) indexed successfully!" |
|
|
|
def load_sample_pdf(): |
|
global vector_store |
|
documents = [] |
|
|
|
|
|
for file in sample_filenames: |
|
loader = PyPDFLoader(file) |
|
documents.extend(loader.load()) |
|
|
|
|
|
|
|
text_splitter = RecursiveCharacterTextSplitter(chunk_size=1024, chunk_overlap=64) |
|
texts = text_splitter.split_documents(documents) |
|
|
|
|
|
embeddings = HuggingFaceEmbeddings(model_name="bert-base-uncased", encode_kwargs={"normalize_embeddings": True}) |
|
|
|
|
|
vector_store = FAISS.from_documents(texts, embeddings) |
|
|
|
return "PDF(s) indexed successfully!" |
|
|
|
|
|
def format_docs(docs): |
|
return "\n\n".join(doc.page_content for doc in docs) |
|
|
|
def generate_response(query, history, model, temperature, max_tokens, top_p, seed): |
|
|
|
if vector_store is None: |
|
return "Please upload and index a PDF at the Indexing tab." |
|
|
|
if seed == 0: |
|
seed = random.randint(1, 100000) |
|
|
|
retriever = vector_store.as_retriever(search_type="similarity", search_kwargs={"k": 16}) |
|
llm = ChatGroq(groq_api_key=os.environ.get("GROQ_API_KEY"), model=model) |
|
custom_rag_prompt = PromptTemplate.from_template(template) |
|
|
|
docs = retriever.invoke(query) |
|
relevant_info = format_docs(docs) |
|
|
|
rag_chain = ( |
|
{"context": retriever | format_docs, "question": RunnablePassthrough()} |
|
| custom_rag_prompt |
|
| llm |
|
| StrOutputParser() |
|
) |
|
|
|
response = rag_chain.invoke(query) |
|
|
|
return response, relevant_info |
|
|
|
additional_inputs = [ |
|
gr.Dropdown(choices=["llama-3.3-70b-versatile", "llama-3.1-8b-instant", "llama3-70b-8192", "llama3-8b-8192", "mixtral-8x7b-32768", "gemma2-9b-it"], value="gemma2-9b-it", label="Model"), |
|
gr.Slider(minimum=0.0, maximum=1.0, step=0.01, value=0.5, label="Temperature", info="Controls diversity of the generated text. Lower is more deterministic, higher is more creative."), |
|
gr.Slider(minimum=1, maximum=8000, step=1, value=8000, label="Max Tokens", info="The maximum number of tokens that the model can process in a single response.<br>Maximums: 8k for gemma 7b it, gemma2 9b it, llama 7b & 70b, 32k for mixtral 8x7b, 132k for llama 3.1."), |
|
gr.Slider(minimum=0.0, maximum=1.0, step=0.01, value=0.5, label="Top P", info="A method of text generation where a model will only consider the most probable next tokens that make up the probability p."), |
|
gr.Number(precision=0, value=0, label="Seed", info="A starting point to initiate generation, use 0 for random") |
|
] |
|
|
|
|
|
|
|
with gr.Blocks(theme=gr.themes.Default() ) as demo: |
|
with gr.Tab("Indexing"): |
|
gr.Markdown(desc) |
|
|
|
|
|
|
|
|
|
load_sample = gr.Button(sample_button) |
|
index_output = gr.Textbox(label="Indexing Status") |
|
|
|
load_sample.click(load_sample_pdf, inputs=None, outputs=index_output) |
|
|
|
with gr.Tab("Chatbot"): |
|
with gr.Row(): |
|
with gr.Column(scale=2): |
|
chatbot = gr.Chatbot( |
|
show_label=False, |
|
show_share_button=False, |
|
show_copy_button=True, |
|
layout="panel", |
|
height=500, |
|
avatar_images=( |
|
"https://placehold.co/60x60/FFD700/000000?text=U", |
|
"https://placehold.co/60x60/6366F1/FFFFFF?text=AI" |
|
) |
|
) |
|
msg = gr.Textbox( |
|
label="Your Message", |
|
placeholder="Type your message here...", |
|
show_copy_button=True, |
|
container=False |
|
) |
|
with gr.Row(): |
|
submit_btn = gr.Button("Send", variant="primary") |
|
clear_btn = gr.ClearButton() |
|
|
|
gr.Examples( |
|
examples=examples_questions, |
|
inputs=[msg], |
|
outputs=[msg], |
|
label="Quick Examples", |
|
cache_examples=False, |
|
) |
|
|
|
with gr.Column(scale=1): |
|
|
|
model_name_textbox = gr.Textbox(label="Model Name", value="dummy-model", interactive=True) |
|
temperature_slider = gr.Slider(minimum=0, maximum=1, value=0.7, step=0.01, label="Temperature", interactive=True) |
|
max_tokens_slider = gr.Slider(minimum=10, maximum=2000, value=500, step=10, label="Max Tokens", interactive=True) |
|
top_p_slider = gr.Slider(minimum=0, maximum=1, value=0.9, step=0.01, label="Top P", interactive=True) |
|
seed_number = gr.Number(minimum=0, maximum=100000, value=0, step=1, label="Seed", precision=0, interactive=True) |
|
|
|
gr.Markdown("### Retrieved Information") |
|
|
|
relevant_info_textbox = gr.Textbox( |
|
label="Retrieved Information", |
|
interactive=False, |
|
lines=20, |
|
show_copy_button=True, |
|
autoscroll=True, |
|
container=True |
|
) |
|
|
|
|
|
|
|
def process_chat_and_info(message, chat_history, model, temp, max_tok, top_p_val, seed_val): |
|
|
|
bot_message, retrieved_info = generate_response( |
|
message, chat_history, model, temp, max_tok, top_p_val, seed_val |
|
) |
|
|
|
|
|
chat_history.append((message, bot_message)) |
|
|
|
|
|
return chat_history, retrieved_info, "" |
|
|
|
|
|
msg.submit( |
|
fn=generate_response, |
|
inputs=[msg, chatbot, model_name_textbox, temperature_slider, max_tokens_slider, top_p_slider, seed_number], |
|
outputs=[chatbot, relevant_info_textbox], |
|
queue=False |
|
) |
|
|
|
|
|
submit_btn.click( |
|
fn=generate_response, |
|
inputs=[msg, chatbot, model_name_textbox, temperature_slider, max_tokens_slider, top_p_slider, seed_number], |
|
outputs=[chatbot, relevant_info_textbox], |
|
queue=False |
|
) |
|
|
|
|
|
clear_btn.add([msg, chatbot, relevant_info_textbox]) |
|
|
|
|
|
|
|
demo.launch(share=True) |
|
|