sina
A basic UI
bc97c74
import streamlit as st
st.title("πŸ¦™ Llama Index Term Extractor πŸ¦™")
document_text = st.text_area("Or enter raw text")
if st.button("Extract") and document_text:
with st.spinner("Extracting..."):
extracted_terms = 'hello'
st.write(extracted_terms)