Files
patchy631--ai-engineering-hub/trustworthy-rag/app.py
T
2026-07-13 12:37:47 +08:00

209 lines
7.1 KiB
Python

import os
import base64
import gc
import random
import tempfile
import time
import uuid
from IPython.display import Markdown, display
from llama_index.core import Settings
from llama_index.core import PromptTemplate
from llama_index.llms.cleanlab import CleanlabTLM
from llama_index.embeddings.huggingface import HuggingFaceEmbedding
from llama_index.core import VectorStoreIndex, ServiceContext, SimpleDirectoryReader
import streamlit as st
from utils import (
setup_trustworthiness_handler,
outputs_with_trustworthiness
)
if "id" not in st.session_state:
st.session_state.id = uuid.uuid4()
st.session_state.file_cache = {}
session_id = st.session_state.id
client = None
@st.cache_resource
def load_llm():
options = {
"model": "gpt-4o",
"max_tokens": 256,
"log": ["explanation"],
}
llm = CleanlabTLM(api_key=os.environ["CLEANLAB_API_KEY"], options=options)
return llm
def reset_chat():
st.session_state.messages = []
st.session_state.context = None
gc.collect()
def display_pdf(file):
# Opening file from file path
st.markdown("### PDF Preview")
base64_pdf = base64.b64encode(file.read()).decode("utf-8")
# Embedding PDF in HTML
pdf_display = f"""<iframe src="data:application/pdf;base64,{base64_pdf}" width="400" height="100%" type="application/pdf"
style="height:100vh; width:100%"
>
</iframe>"""
# Displaying File
st.markdown(pdf_display, unsafe_allow_html=True)
with st.sidebar:
st.header(f"Add your documents!")
uploaded_file = st.file_uploader("Choose your `.pdf` file", type="pdf")
if uploaded_file:
try:
with tempfile.TemporaryDirectory() as temp_dir:
file_path = os.path.join(temp_dir, uploaded_file.name)
with open(file_path, "wb") as f:
f.write(uploaded_file.getvalue())
file_key = f"{session_id}-{uploaded_file.name}"
st.write("Indexing your document...")
if file_key not in st.session_state.get('file_cache', {}):
try:
from llama_parse import LlamaParse
parser = LlamaParse(result_type="markdown")
docs = parser.load_data(file_path)
except Exception as e:
st.error(f'Error parsing PDF: {str(e)}')
st.stop()
# setup llm & embedding model
embed_model = HuggingFaceEmbedding( model_name="BAAI/bge-large-en-v1.5", trust_remote_code=True)
# Creating an index over loaded data
Settings.embed_model = embed_model
index = VectorStoreIndex.from_documents(docs, show_progress=True)
# Create the query engine, where we use a cohere reranker on the fetched nodes
Settings.llm = load_llm()
query_engine = index.as_query_engine()
event_handler = setup_trustworthiness_handler()
st.session_state.event_handler = event_handler
# ====== Customise prompt template ======
qa_prompt_tmpl_str = (
"Context information is below.\n"
"---------------------\n"
"{context_str}\n"
"---------------------\n"
"Given the context information above I want you to think step by step to answer the query in a crisp manner, incase case you don't know the answer say 'I don't know!'.\n"
"Query: {query_str}\n"
"Answer: "
)
qa_prompt_tmpl = PromptTemplate(qa_prompt_tmpl_str)
query_engine.update_prompts(
{"response_synthesizer:text_qa_template": qa_prompt_tmpl}
)
st.session_state.file_cache[file_key] = query_engine
else:
query_engine = st.session_state.file_cache[file_key]
# Inform the user that the file is processed and Display the PDF uploaded
st.success("Ready to Chat!")
display_pdf(uploaded_file)
except Exception as e:
st.error(f"An error occurred: {e}")
st.stop()
col1, col2 = st.columns([6, 1])
with col1:
st.header(f"Chat with Docs using Llama-3.3")
with col2:
st.button("Clear ↺", on_click=reset_chat)
# Initialize chat history
if "messages" not in st.session_state:
reset_chat()
# Display chat messages from history on app rerun
for message in st.session_state.messages:
with st.chat_message(message["role"]):
st.markdown(message["content"])
# Accept user input
if prompt := st.chat_input("What's up?"):
# Add user message to chat history
st.session_state.messages.append({"role": "user", "content": prompt})
# Display user message in chat message container
with st.chat_message("user"):
st.markdown(prompt)
# Display assistant response in chat message container
with st.chat_message("assistant"):
message_placeholder = st.empty()
full_response = ""
# Get response and trustworthiness info
response = query_engine.query(prompt)
response_str, trustworthiness_score, reasoning = outputs_with_trustworthiness(response, st.session_state.event_handler)
# Stream the response word by word
words = response_str.split()
for word in words:
full_response += word + " "
time.sleep(0.05) # Adjust delay as needed
message_placeholder.markdown(full_response + "▌")
message_placeholder.markdown(full_response)
# Add custom CSS for the glow animation
st.markdown("""
<style>
@keyframes glow {
0% {
box-shadow: 0 0 5px rgba(0,255,255,0.2);
}
50% {
box-shadow: 0 0 20px rgba(0,255,255,0.6);
}
100% {
box-shadow: 0 0 5px rgba(0,255,255,0.2);
}
}
.score-container {
padding: 10px 20px;
border-radius: 10px;
background: rgba(255,255,255,0.1);
animation: glow 2s ease-in-out infinite;
margin: 10px 0;
display: inline-block;
}
</style>
""", unsafe_allow_html=True)
# Display trustworthiness score with animation and reasoning separately
st.markdown(f"""
<div class="score-container">
<strong>Trustworthiness Score:</strong> {trustworthiness_score:.2f}
</div>
""", unsafe_allow_html=True)
st.markdown(f"**Reasoning:** {reasoning}")
# Add assistant response to chat history
st.session_state.messages.append({"role": "assistant", "content": full_response})