Update app.py
Browse files
app.py
CHANGED
@@ -181,6 +181,10 @@ def recreate_faiss_index(pdf_docs, chunk_size, chunk_overlap, api_key):
|
|
181 |
|
182 |
|
183 |
def main():
|
|
|
|
|
|
|
|
|
184 |
st.header("RAG based LLM Application")
|
185 |
|
186 |
user_question = st.text_input("Ask a Question from the PDF Files", key="user_question")
|
|
|
181 |
|
182 |
|
183 |
def main():
|
184 |
+
|
185 |
+
CH_size = 450
|
186 |
+
CH_overlap = 50
|
187 |
+
|
188 |
st.header("RAG based LLM Application")
|
189 |
|
190 |
user_question = st.text_input("Ask a Question from the PDF Files", key="user_question")
|