File size: 739 Bytes
c213ed8
9cb09c3
 
c232e90
9367eff
c213ed8
 
 
8d1f074
c213ed8
8d1f074
c213ed8
 
8d1f074
 
9cb09c3
c213ed8
 
 
 
9367eff
c213ed8
f65331d
c213ed8
 
 
d5a6d18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import streamlit as st
import os
retval = os.getcwd()
os.chdir("src/")
from src.models.predict_model import predict_model


def visualize():
    st.write("# Summarization  UI")
    st.markdown(
        """
        *For additional questions and inquiries, please contact **Gagan Bhatia** via [LinkedIn](
        https://www.linkedin.com/in/gbhatia30/) or [Github](https://github.com/gagan3012).*
        """
    )
    st.write(retval)

    text = st.text_area("Enter text here")
    if st.button("Generate Summary"):
        with st.spinner("Connecting the Dots..."):
            sumtext = predict_model(text=text)
        st.write("# Generated Summary:")
        st.write("{}".format(sumtext))


if __name__ == "__main__":
    visualize()