File size: 270 Bytes
c7ad194
 
bc97c74
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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)