codeGPT / app.py
red1xe's picture
streamlit
88b53a8
raw
history blame
No virus
281 Bytes
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")