Spaces:
Runtime error
Runtime error
File size: 468 Bytes
4779f1e b110ee4 4779f1e 2742c1d 4779f1e 20e4702 4779f1e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
# Custom imports
from multipage import MultiPage
from pages import text_gen, fill_mask, home_page, translation, chat
# Create an instance of the app
app = MultiPage()
# Add all your applications (pages) here
app.add_page("Home Page", home_page.app)
app.add_page("Chat Bot", chat.app)
app.add_page("Mask Fill", fill_mask.app)
app.add_page("Text Generation", text_gen.app)
app.add_page("Translation", translation.app)
# The main app
app.run() |