Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
import os
|
2 |
import tempfile
|
3 |
import streamlit as st
|
4 |
-
from
|
5 |
-
from
|
6 |
-
from
|
7 |
-
from
|
8 |
-
from
|
9 |
-
from
|
10 |
|
11 |
# Streamlit App Title
|
12 |
st.title("π DeepSeek-Powered RAG Chatbot")
|
|
|
1 |
import os
|
2 |
import tempfile
|
3 |
import streamlit as st
|
4 |
+
from langchain_community.document_loaders import PyPDFLoader
|
5 |
+
from langchain_community.text_splitter import RecursiveCharacterTextSplitter
|
6 |
+
from langchain_community.embeddings import HuggingFaceEmbeddings
|
7 |
+
from langchain_community.vectorstores import FAISS
|
8 |
+
from langchain_community.chains import RetrievalQA
|
9 |
+
from langchain_community.chat_models import ChatOpenAI
|
10 |
|
11 |
# Streamlit App Title
|
12 |
st.title("π DeepSeek-Powered RAG Chatbot")
|