Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ st.title("📘 Ask Me Anything About Machine Learning")
|
|
| 22 |
st.caption("Using RAG (Retrieval-Augmented Generation) and a preloaded PDF")
|
| 23 |
|
| 24 |
# Load PDF from local file
|
| 25 |
-
PDF_FILE = "
|
| 26 |
|
| 27 |
def load_pdf(file_path):
|
| 28 |
with open(file_path, "rb") as f:
|
|
|
|
| 22 |
st.caption("Using RAG (Retrieval-Augmented Generation) and a preloaded PDF")
|
| 23 |
|
| 24 |
# Load PDF from local file
|
| 25 |
+
PDF_FILE = "ml_large_dataset.pdf"
|
| 26 |
|
| 27 |
def load_pdf(file_path):
|
| 28 |
with open(file_path, "rb") as f:
|