ArticlePara / app.py
olusegun.odewole
first commit
8749106
raw
history blame
527 Bytes
import streamlit as st
from multiapp import MultiApp
# import your app modules here
from apps import paraphraseApp, summarizeApp
app = MultiApp()
st.markdown("""
# ArticleHelp
ArticleHelp provides two services - Paraphrasing and Summarizing. It utilizes TF-IDF Algorithm for summarization and transformer models for paraphrasing.
## Enter your text and see the magic!
""")
# Add all your application here
app.add_app("Paraphraser", paraphraseApp.app)
app.add_app("Summarizer", summarizeApp.app)
# The main app
app.run()