File size: 281 Bytes
88b53a8 4862b9f a942c83 5f87533 a942c83 |
1 2 3 4 5 6 7 8 |
import streamlit as st
from langchain.embeddings import HuggingFaceEmbeddings
from langchain.vectorstores import FAISS
st.title("Embedding Creation for Langchain")
st.header("This is a header")
files = st.file_uploader("Upload your files", accept_multiple_files=True, type="pdf")
|