Update app.py
Browse files
app.py
CHANGED
|
@@ -8,19 +8,19 @@ from langchain_community.llms import HuggingFaceEndpoint
|
|
| 8 |
import time
|
| 9 |
import translators as ts
|
| 10 |
from huggingface_hub import hf_hub_download
|
| 11 |
-
|
| 12 |
-
# Set page layout to wide
|
| 13 |
-
st.set_page_config(layout="wide")
|
| 14 |
|
| 15 |
# ================== CONFIGURATION ================== #
|
| 16 |
-
HF_TOKEN
|
|
|
|
|
|
|
|
|
|
| 17 |
VECTORSTORE_REPO_ID = "vashu2425/bhagavad-geeta-faiss-vectordb"
|
| 18 |
MODEL_REPO_ID = "mistralai/Mistral-7B-Instruct-v0.3"
|
| 19 |
|
| 20 |
-
|
| 21 |
CUSTOM_PROMPT_TEMPLATE = """
|
| 22 |
Use The Pieces Of Information Provided In The Context To Answer User's Question.
|
| 23 |
-
If You Don't Know The Answer, Just Say "I Don't Have Information",except this do not say anything.
|
| 24 |
Don't Try To Make Up An Answer. Don't Provide Anything Out Of The Given Context.
|
| 25 |
|
| 26 |
Context: {context}
|
|
@@ -28,9 +28,9 @@ Question: {question}
|
|
| 28 |
|
| 29 |
Start The Answer Directly., Please. The Answer Should Contain All 3 Contexts.
|
| 30 |
Consider Yourself As God Krishna And Answer The Question Result Should Not Start With "Answer"
|
| 31 |
-
"""
|
| 32 |
|
| 33 |
-
# ---------- Session Management
|
| 34 |
def initialize_session_states():
|
| 35 |
session_defaults = {
|
| 36 |
"messages": [],
|
|
@@ -38,46 +38,16 @@ def initialize_session_states():
|
|
| 38 |
"show_predefined": True,
|
| 39 |
"last_response": None,
|
| 40 |
"translation_done": False,
|
| 41 |
-
"last_prompt": None
|
| 42 |
}
|
| 43 |
for key, val in session_defaults.items():
|
| 44 |
if key not in st.session_state:
|
| 45 |
st.session_state[key] = val
|
| 46 |
|
| 47 |
-
|
| 48 |
-
for message in st.session_state.messages:
|
| 49 |
-
with st.chat_message(message["role"], avatar="🐿" if message["role"] == "user" else "🪈"):
|
| 50 |
-
content = message["content"]
|
| 51 |
-
if "hindi-text" in content:
|
| 52 |
-
st.markdown(content, unsafe_allow_html=True)
|
| 53 |
-
else:
|
| 54 |
-
st.markdown(content)
|
| 55 |
-
|
| 56 |
-
def render_predefined_questions():
|
| 57 |
-
predefined_questions = [
|
| 58 |
-
"Meaning of Dharma?",
|
| 59 |
-
"What is the purpose of life?",
|
| 60 |
-
"How to find inner peace?",
|
| 61 |
-
"How can I be a better person?",
|
| 62 |
-
"What is the meaning of life?",
|
| 63 |
-
"How can I be a better friend?"
|
| 64 |
-
]
|
| 65 |
-
st.markdown("### Or, try one of these:")
|
| 66 |
-
buttons = st.columns(len(predefined_questions))
|
| 67 |
-
for idx, question in enumerate(predefined_questions):
|
| 68 |
-
if buttons[idx].button(question, key=f"predefined_{idx}"):
|
| 69 |
-
st.session_state.selected_question = question
|
| 70 |
-
st.session_state.show_predefined = False
|
| 71 |
-
|
| 72 |
-
# ---------- Core Functionality Functions ---------- #
|
| 73 |
def translate_text(text, dest_language="hi"):
|
| 74 |
try:
|
| 75 |
-
|
| 76 |
-
return ts.translate_text(
|
| 77 |
-
text,
|
| 78 |
-
to_language=dest_language,
|
| 79 |
-
translator='google'
|
| 80 |
-
)
|
| 81 |
except Exception as e:
|
| 82 |
st.error(f"Translation failed: {str(e)}")
|
| 83 |
return text
|
|
@@ -107,70 +77,56 @@ def get_vectorstore():
|
|
| 107 |
def set_custom_prompt(custom_prompt_template):
|
| 108 |
return PromptTemplate(template=custom_prompt_template, input_variables=["context", "question"])
|
| 109 |
|
| 110 |
-
def load_llm(
|
| 111 |
return HuggingFaceEndpoint(
|
| 112 |
-
repo_id=
|
| 113 |
temperature=0.5,
|
| 114 |
-
huggingfacehub_api_token=
|
| 115 |
model_kwargs={"max_length": 512}
|
| 116 |
)
|
| 117 |
|
| 118 |
-
def format_source_docs(source_documents):
|
| 119 |
-
formatted_docs = []
|
| 120 |
-
for idx, doc in enumerate(source_documents, start=1):
|
| 121 |
-
content = doc.page_content.replace('\t', ' ').replace('\n', ' ').strip()
|
| 122 |
-
formatted_doc = f"**Source {idx}** (Page {doc.metadata['page']}):\n\n{content[:500]}..."
|
| 123 |
-
formatted_docs.append(formatted_doc)
|
| 124 |
-
return "\n\n".join(formatted_docs)
|
| 125 |
-
|
| 126 |
def handle_user_input(prompt, qa_chain):
|
| 127 |
if prompt:
|
| 128 |
-
# Check if this prompt has already been processed
|
| 129 |
if st.session_state.get("last_prompt") == prompt:
|
| 130 |
return
|
| 131 |
-
|
| 132 |
-
# Store the current prompt to prevent reprocessing
|
| 133 |
st.session_state.last_prompt = prompt
|
| 134 |
-
|
| 135 |
with st.chat_message("user", avatar="🐿"):
|
| 136 |
st.markdown(prompt)
|
| 137 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
| 138 |
|
| 139 |
try:
|
| 140 |
-
# Add temporary assistant message
|
| 141 |
with st.chat_message("assistant", avatar="🪈"):
|
| 142 |
response_placeholder = st.empty()
|
| 143 |
|
| 144 |
-
# Process query and generate response
|
| 145 |
response = qa_chain.invoke({"query": prompt})
|
| 146 |
result = response["result"]
|
| 147 |
source_documents = response["source_documents"]
|
| 148 |
|
| 149 |
-
# Build response incrementally
|
| 150 |
accumulated_text = ""
|
| 151 |
for char in result:
|
| 152 |
accumulated_text += char
|
| 153 |
response_placeholder.markdown(f'<div class="english-text">{accumulated_text}</div>', unsafe_allow_html=True)
|
| 154 |
time.sleep(0.01)
|
| 155 |
|
| 156 |
-
# Update session state with final response
|
| 157 |
st.session_state.messages.append({
|
| 158 |
"role": "assistant",
|
| 159 |
"content": f'<div class="english-text">{accumulated_text}</div>',
|
| 160 |
"original": accumulated_text
|
| 161 |
})
|
| 162 |
-
|
| 163 |
st.session_state.last_response = accumulated_text
|
| 164 |
st.session_state.show_predefined = False
|
| 165 |
st.session_state.translation_done = False
|
| 166 |
|
| 167 |
if "don't have information" not in result.lower():
|
| 168 |
with st.expander("Source Documents"):
|
| 169 |
-
|
|
|
|
|
|
|
| 170 |
|
| 171 |
except Exception as e:
|
| 172 |
st.error(f"Error: {str(e)}")
|
| 173 |
-
# Remove temporary assistant message on error
|
| 174 |
if st.session_state.messages and st.session_state.messages[-1]["role"] == "assistant":
|
| 175 |
st.session_state.messages.pop()
|
| 176 |
|
|
@@ -180,146 +136,45 @@ def handle_translation():
|
|
| 180 |
if not st.session_state.get("translation_done", False):
|
| 181 |
translated_text = translate_text(st.session_state.last_response, "hi")
|
| 182 |
|
| 183 |
-
# Update messages
|
| 184 |
for msg in reversed(st.session_state.messages):
|
| 185 |
if msg["role"] == "assistant":
|
| 186 |
msg["content"] = f'<div class="hindi-text">{translated_text}</div>'
|
| 187 |
break
|
| 188 |
|
| 189 |
st.session_state.translation_done = True
|
| 190 |
-
st.rerun()
|
| 191 |
-
|
| 192 |
except Exception as e:
|
| 193 |
st.error(f"Translation error: {str(e)}")
|
| 194 |
|
| 195 |
-
def
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 196 |
for message in st.session_state.messages:
|
| 197 |
with st.chat_message(message["role"], avatar="🐿" if message["role"] == "user" else "🪈"):
|
| 198 |
-
content = message.get("original", message["content"])
|
| 199 |
if "hindi-text" in message["content"]:
|
| 200 |
st.markdown(message["content"], unsafe_allow_html=True)
|
| 201 |
else:
|
| 202 |
st.markdown(content)
|
| 203 |
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
.hindi-text {
|
| 209 |
-
font-family: 'Noto Sans Devanagari', sans-serif;
|
| 210 |
-
font-size: 16px;
|
| 211 |
-
line-height: 1.8;
|
| 212 |
-
direction: ltr;
|
| 213 |
-
text-align: left;
|
| 214 |
-
}
|
| 215 |
-
|
| 216 |
-
.english-text {
|
| 217 |
-
font-family: Arial, sans-serif;
|
| 218 |
-
font-size: 16px;
|
| 219 |
-
line-height: 1.6;
|
| 220 |
-
}
|
| 221 |
-
|
| 222 |
-
.translate-btn {
|
| 223 |
-
background-color: #4CAF50 !important;
|
| 224 |
-
color: white !important;
|
| 225 |
-
border-radius: 20px; /* Reduced from 25px */
|
| 226 |
-
padding: 6px 20px; /* Reduced from 8px 25px */
|
| 227 |
-
margin: 6px 0; /* Reduced from 10px 0 */
|
| 228 |
-
border: none;
|
| 229 |
-
transition: all 0.3s ease;
|
| 230 |
-
font-size: 14px; /* Added font-size control */
|
| 231 |
-
min-width: 120px; /* Added for better proportions */
|
| 232 |
-
}
|
| 233 |
-
|
| 234 |
-
.translate-btn:hover {
|
| 235 |
-
background-color: #45a049 !important;
|
| 236 |
-
transform: scale(1.03); /* Reduced from 1.05 */
|
| 237 |
-
}
|
| 238 |
-
|
| 239 |
-
.top-left-button {
|
| 240 |
-
position: auto;
|
| 241 |
-
top: 50px;
|
| 242 |
-
left: 20px;
|
| 243 |
-
z-index: 100;
|
| 244 |
-
padding: 10px 20px;
|
| 245 |
-
background-color: #e0162e;
|
| 246 |
-
color: white !important;
|
| 247 |
-
text-decoration: none !important;
|
| 248 |
-
border-radius: 50px;
|
| 249 |
-
margin-top: 10px;
|
| 250 |
-
font-size: 16px;
|
| 251 |
-
text-align: center;
|
| 252 |
-
}
|
| 253 |
-
.top-left-button:hover {
|
| 254 |
-
background-color: #f7525a;
|
| 255 |
-
}
|
| 256 |
-
|
| 257 |
-
/* Fullscreen styles */
|
| 258 |
-
body {
|
| 259 |
-
margin: 0;
|
| 260 |
-
padding: 0;
|
| 261 |
-
width: 100vw;
|
| 262 |
-
height: 100vh;
|
| 263 |
-
display: flex;
|
| 264 |
-
justify-content: center;
|
| 265 |
-
align-items: center;
|
| 266 |
-
background-color: #1e1e30; /* Change the background color to #1e1e30 */
|
| 267 |
-
}
|
| 268 |
-
|
| 269 |
-
[data-testid="stAppViewContainer"] > .main {
|
| 270 |
-
background-size: cover;
|
| 271 |
-
background-position: center center;
|
| 272 |
-
background-repeat: no-repeat;
|
| 273 |
-
background-attachment: local;
|
| 274 |
-
}
|
| 275 |
-
|
| 276 |
-
/* Header background */
|
| 277 |
-
[data-testid="stHeader"] {
|
| 278 |
-
background: #1e1e30;
|
| 279 |
-
}
|
| 280 |
-
|
| 281 |
-
/* Apply background color to the whole Streamlit app */
|
| 282 |
-
.stApp {
|
| 283 |
-
width: 100%;
|
| 284 |
-
max-width: 100vw;
|
| 285 |
-
display: flex;
|
| 286 |
-
justify-content: center;
|
| 287 |
-
align-items: flex-start;
|
| 288 |
-
padding: 20px;
|
| 289 |
-
background-color: #1e1e30; /* This will apply the background color to the entire app */
|
| 290 |
-
}
|
| 291 |
-
|
| 292 |
-
.custom-paragraph {
|
| 293 |
-
font-size: 20px !important;
|
| 294 |
-
line-height: 0.2;
|
| 295 |
-
color: #666666;
|
| 296 |
-
}
|
| 297 |
-
|
| 298 |
-
/* Apply background color to stBottomBlockContainer */
|
| 299 |
-
[data-testid="stBottomBlockContainer"] {
|
| 300 |
-
background-color: #1e1e30; /* Set the same color for bottom block */
|
| 301 |
-
}
|
| 302 |
-
|
| 303 |
-
/* Hover effect for textarea (optional) */
|
| 304 |
-
.stTextArea>div>textarea:hover {
|
| 305 |
-
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Change shadow on hover */
|
| 306 |
-
</style>
|
| 307 |
-
<a href="https://iskconmangaluru.com/wp-content/uploads/2021/04/English-Bhagavad-gita-His-Divine-Grace-AC-Bhaktivedanta-Swami-Prabhupada.pdf" target="_blank" class="top-left-button">
|
| 308 |
-
Source Bhagavad Gita PDF
|
| 309 |
-
</a>
|
| 310 |
-
""",
|
| 311 |
-
unsafe_allow_html=True
|
| 312 |
-
)
|
| 313 |
|
| 314 |
-
st.title("Ask Krishna! 🦚")
|
| 315 |
-
st.markdown('<p class="hindi-text" style="color:#666666; font-size:20px;">शांति स्वीकृति से शुरू होती है</p>',
|
| 316 |
-
unsafe_allow_html=True)
|
| 317 |
-
|
| 318 |
-
initialize_session_states()
|
| 319 |
-
render_chat_messages()
|
| 320 |
-
|
| 321 |
if st.session_state.show_predefined:
|
| 322 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 323 |
|
| 324 |
prompt = st.chat_input("What's your curiosity?") or st.session_state.selected_question
|
| 325 |
st.session_state.selected_question = None
|
|
@@ -327,7 +182,7 @@ def main():
|
|
| 327 |
try:
|
| 328 |
vectorstore = get_vectorstore()
|
| 329 |
qa_chain = RetrievalQA.from_chain_type(
|
| 330 |
-
llm=load_llm(
|
| 331 |
chain_type="stuff",
|
| 332 |
retriever=vectorstore.as_retriever(search_kwargs={"k": 3}),
|
| 333 |
return_source_documents=True,
|
|
@@ -350,4 +205,4 @@ def main():
|
|
| 350 |
st.error(f"Initialization error: {str(e)}")
|
| 351 |
|
| 352 |
if __name__ == "__main__":
|
| 353 |
-
main()
|
|
|
|
| 8 |
import time
|
| 9 |
import translators as ts
|
| 10 |
from huggingface_hub import hf_hub_download
|
| 11 |
+
from dotenv import load_dotenv # Load .env locally
|
|
|
|
|
|
|
| 12 |
|
| 13 |
# ================== CONFIGURATION ================== #
|
| 14 |
+
# Load HF_TOKEN from Secrets or .env (for local development)
|
| 15 |
+
load_dotenv()
|
| 16 |
+
HF_TOKEN = os.getenv("HF_TOKEN")
|
| 17 |
+
|
| 18 |
VECTORSTORE_REPO_ID = "vashu2425/bhagavad-geeta-faiss-vectordb"
|
| 19 |
MODEL_REPO_ID = "mistralai/Mistral-7B-Instruct-v0.3"
|
| 20 |
|
|
|
|
| 21 |
CUSTOM_PROMPT_TEMPLATE = """
|
| 22 |
Use The Pieces Of Information Provided In The Context To Answer User's Question.
|
| 23 |
+
If You Don't Know The Answer, Just Say "I Don't Have Information", except this do not say anything.
|
| 24 |
Don't Try To Make Up An Answer. Don't Provide Anything Out Of The Given Context.
|
| 25 |
|
| 26 |
Context: {context}
|
|
|
|
| 28 |
|
| 29 |
Start The Answer Directly., Please. The Answer Should Contain All 3 Contexts.
|
| 30 |
Consider Yourself As God Krishna And Answer The Question Result Should Not Start With "Answer"
|
| 31 |
+
"""
|
| 32 |
|
| 33 |
+
# ---------- Session Management ---------- #
|
| 34 |
def initialize_session_states():
|
| 35 |
session_defaults = {
|
| 36 |
"messages": [],
|
|
|
|
| 38 |
"show_predefined": True,
|
| 39 |
"last_response": None,
|
| 40 |
"translation_done": False,
|
| 41 |
+
"last_prompt": None
|
| 42 |
}
|
| 43 |
for key, val in session_defaults.items():
|
| 44 |
if key not in st.session_state:
|
| 45 |
st.session_state[key] = val
|
| 46 |
|
| 47 |
+
# ---------- Core Functionality ---------- #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
def translate_text(text, dest_language="hi"):
|
| 49 |
try:
|
| 50 |
+
return ts.translate_text(text, to_language=dest_language, translator='google')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
except Exception as e:
|
| 52 |
st.error(f"Translation failed: {str(e)}")
|
| 53 |
return text
|
|
|
|
| 77 |
def set_custom_prompt(custom_prompt_template):
|
| 78 |
return PromptTemplate(template=custom_prompt_template, input_variables=["context", "question"])
|
| 79 |
|
| 80 |
+
def load_llm():
|
| 81 |
return HuggingFaceEndpoint(
|
| 82 |
+
repo_id=MODEL_REPO_ID,
|
| 83 |
temperature=0.5,
|
| 84 |
+
huggingfacehub_api_token=HF_TOKEN,
|
| 85 |
model_kwargs={"max_length": 512}
|
| 86 |
)
|
| 87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
def handle_user_input(prompt, qa_chain):
|
| 89 |
if prompt:
|
|
|
|
| 90 |
if st.session_state.get("last_prompt") == prompt:
|
| 91 |
return
|
|
|
|
|
|
|
| 92 |
st.session_state.last_prompt = prompt
|
| 93 |
+
|
| 94 |
with st.chat_message("user", avatar="🐿"):
|
| 95 |
st.markdown(prompt)
|
| 96 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
| 97 |
|
| 98 |
try:
|
|
|
|
| 99 |
with st.chat_message("assistant", avatar="🪈"):
|
| 100 |
response_placeholder = st.empty()
|
| 101 |
|
|
|
|
| 102 |
response = qa_chain.invoke({"query": prompt})
|
| 103 |
result = response["result"]
|
| 104 |
source_documents = response["source_documents"]
|
| 105 |
|
|
|
|
| 106 |
accumulated_text = ""
|
| 107 |
for char in result:
|
| 108 |
accumulated_text += char
|
| 109 |
response_placeholder.markdown(f'<div class="english-text">{accumulated_text}</div>', unsafe_allow_html=True)
|
| 110 |
time.sleep(0.01)
|
| 111 |
|
|
|
|
| 112 |
st.session_state.messages.append({
|
| 113 |
"role": "assistant",
|
| 114 |
"content": f'<div class="english-text">{accumulated_text}</div>',
|
| 115 |
"original": accumulated_text
|
| 116 |
})
|
| 117 |
+
|
| 118 |
st.session_state.last_response = accumulated_text
|
| 119 |
st.session_state.show_predefined = False
|
| 120 |
st.session_state.translation_done = False
|
| 121 |
|
| 122 |
if "don't have information" not in result.lower():
|
| 123 |
with st.expander("Source Documents"):
|
| 124 |
+
for idx, doc in enumerate(source_documents, start=1):
|
| 125 |
+
content = doc.page_content.replace('\t', ' ').replace('\n', ' ').strip()
|
| 126 |
+
st.markdown(f"**Source {idx}**: {content[:500]}...")
|
| 127 |
|
| 128 |
except Exception as e:
|
| 129 |
st.error(f"Error: {str(e)}")
|
|
|
|
| 130 |
if st.session_state.messages and st.session_state.messages[-1]["role"] == "assistant":
|
| 131 |
st.session_state.messages.pop()
|
| 132 |
|
|
|
|
| 136 |
if not st.session_state.get("translation_done", False):
|
| 137 |
translated_text = translate_text(st.session_state.last_response, "hi")
|
| 138 |
|
|
|
|
| 139 |
for msg in reversed(st.session_state.messages):
|
| 140 |
if msg["role"] == "assistant":
|
| 141 |
msg["content"] = f'<div class="hindi-text">{translated_text}</div>'
|
| 142 |
break
|
| 143 |
|
| 144 |
st.session_state.translation_done = True
|
| 145 |
+
st.rerun()
|
| 146 |
+
|
| 147 |
except Exception as e:
|
| 148 |
st.error(f"Translation error: {str(e)}")
|
| 149 |
|
| 150 |
+
def main():
|
| 151 |
+
st.set_page_config(layout="wide")
|
| 152 |
+
st.title("Ask Krishna! 🦚")
|
| 153 |
+
st.markdown('<p class="hindi-text" style="color:#666666; font-size:20px;">शांति स्वीकृति से शुरू होती है</p>',
|
| 154 |
+
unsafe_allow_html=True)
|
| 155 |
+
|
| 156 |
+
initialize_session_states()
|
| 157 |
+
|
| 158 |
for message in st.session_state.messages:
|
| 159 |
with st.chat_message(message["role"], avatar="🐿" if message["role"] == "user" else "🪈"):
|
| 160 |
+
content = message.get("original", message["content"])
|
| 161 |
if "hindi-text" in message["content"]:
|
| 162 |
st.markdown(message["content"], unsafe_allow_html=True)
|
| 163 |
else:
|
| 164 |
st.markdown(content)
|
| 165 |
|
| 166 |
+
predefined_questions = [
|
| 167 |
+
"Meaning of Dharma?", "What is the purpose of life?",
|
| 168 |
+
"How to find inner peace?", "How can I be a better person?"
|
| 169 |
+
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 170 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
if st.session_state.show_predefined:
|
| 172 |
+
st.markdown("### Or, try one of these:")
|
| 173 |
+
buttons = st.columns(len(predefined_questions))
|
| 174 |
+
for idx, question in enumerate(predefined_questions):
|
| 175 |
+
if buttons[idx].button(question, key=f"predefined_{idx}"):
|
| 176 |
+
st.session_state.selected_question = question
|
| 177 |
+
st.session_state.show_predefined = False
|
| 178 |
|
| 179 |
prompt = st.chat_input("What's your curiosity?") or st.session_state.selected_question
|
| 180 |
st.session_state.selected_question = None
|
|
|
|
| 182 |
try:
|
| 183 |
vectorstore = get_vectorstore()
|
| 184 |
qa_chain = RetrievalQA.from_chain_type(
|
| 185 |
+
llm=load_llm(),
|
| 186 |
chain_type="stuff",
|
| 187 |
retriever=vectorstore.as_retriever(search_kwargs={"k": 3}),
|
| 188 |
return_source_documents=True,
|
|
|
|
| 205 |
st.error(f"Initialization error: {str(e)}")
|
| 206 |
|
| 207 |
if __name__ == "__main__":
|
| 208 |
+
main()
|