Spaces:
Sleeping
Sleeping
File size: 4,869 Bytes
ce3af46 f67181d f78495c ce3af46 f78495c ce3af46 f78495c ce3af46 f78495c ce3af46 f78495c ce3af46 f78495c ce3af46 f78495c ce3af46 f78495c ce3af46 ced5431 ce3af46 f78495c ad53611 ce3af46 a523549 ce3af46 a523549 ce3af46 f67181d ce3af46 b6c820d ce3af46 b6c820d ce3af46 ced5431 ce3af46 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
import streamlit as st
from generator import generate_response_from_document
from retrieval import retrieve_documents_hybrid
from evaluation import calculate_metrics
from data_processing import load_recent_questions, save_recent_question
import time
# Page Title
st.title("RAG7 - Real World RAG System")
# global retrieved_documents
# retrieved_documents = []
# global response
# response = ""
# global time_taken_for_response
# time_taken_for_response = 'N/A'
# @st.cache_data
# def load_data():
# load_data_from_faiss()
# data_status = load_data()
# Question Section
st.subheader("Hi, What do you want to know today?")
question = st.text_area("Enter your question:", placeholder="Type your question here...", height=100)
# # Submit Button
# if st.button("Submit"):
# start_time = time.time()
# retrieved_documents = retrieve_documents_hybrid(question, 10)
# response = generate_response_from_document(question, retrieved_documents)
# end_time = time.time()
# time_taken_for_response = end_time-start_time
# else:
# response = ""
# # Response Section
# st.subheader("Response")
# st.text_area("Generated Response:", value=response, height=150, disabled=True)
# # Metrics Section
# st.subheader("Metrics")
# col1, col2 = st.columns([1, 3]) # Creating two columns for button and metrics display
# with col1:
# if st.button("Calculate Metrics"):
# metrics = calculate_metrics(question, response, retrieved_documents, time_taken_for_response)
# else:
# metrics = ""
# with col2:
# st.text_area("Metrics:", value=metrics, height=100, disabled=True)
if "retrieved_documents" not in st.session_state:
st.session_state.retrieved_documents = []
if "response" not in st.session_state:
st.session_state.response = ""
if "time_taken_for_response" not in st.session_state:
st.session_state.time_taken_for_response = "N/A"
if "metrics" not in st.session_state:
st.session_state.metrics = {}
# Streamlit Sidebar for Recent Questions
st.sidebar.title("Recent Questions")
recent_data = load_recent_questions()
for q in reversed(recent_data["questions"]): # Show latest first
st.sidebar.write(f"🔹 {q['question']}")
st.sidebar.markdown("---") # Separator
import matplotlib.pyplot as plt
# for visualization
st.sidebar.title("Analytics")
context_relevance = [q["metrics"]["context_relevance"] for q in recent_data["questions"]]
response_time = [q["metrics"]["response_time"] for q in recent_data["questions"]]
labels = [f"Q{i+1}" for i in range(len(context_relevance))] # Labels for X-axis
fig, ax = plt.subplots()
ax.plot(labels, context_relevance, marker="o", label="Context Relevance")
ax.plot(labels, response_time, marker="s", label="Response Time (sec)")
ax.set_xlabel("Recent Questions")
ax.set_ylabel("Scores")
ax.legend()
st.sidebar.pyplot(fig)
# Submit Button
# if st.button("Submit"):
# start_time = time.time()
# st.session_state.retrieved_documents = retrieve_documents_hybrid(question, 10)
# st.session_state.response = generate_response_from_document(question, st.session_state.retrieved_documents)
# end_time = time.time()
# st.session_state.time_taken_for_response = end_time - start_time
if st.button("Submit"):
start_time = time.time()
st.session_state.retrieved_documents = retrieve_documents_hybrid(question, 10)
st.session_state.response = generate_response_from_document(question, st.session_state.retrieved_documents)
end_time = time.time()
st.session_state.time_taken_for_response = end_time - start_time
# Calculate metrics
st.session_state.metrics = calculate_metrics(question, st.session_state.response, st.session_state.retrieved_documents, st.session_state.time_taken_for_response)
# Save question & metrics
save_recent_question(question, st.session_state.metrics)
# Display stored response
st.subheader("Response")
st.text_area("Generated Response:", value=st.session_state.response, height=150, disabled=True)
col1, col2 = st.columns([1, 3]) # Creating two columns for button and metrics display
# # Calculate Metrics Button
# with col1:
# if st.button("Calculate Metrics"):
# metrics = calculate_metrics(question, st.session_state.response, st.session_state.retrieved_documents, st.session_state.time_taken_for_response)
# else:
# metrics = {}
# with col2:
# #st.text_area("Metrics:", value=metrics, height=100, disabled=True)
# st.json(metrics)
# Calculate Metrics Button
with col1:
if st.button("Show Metrics"):
metrics_ = st.session_state.metrics
else:
metrics_ = {}
with col2:
#st.text_area("Metrics:", value=metrics, height=100, disabled=True)
st.json(metrics_) |