roberta-testing / app.py
prateekagrawal's picture
Updated app.py and about.py
ce82499
raw
history blame contribute delete
No virus
305 Bytes
import streamlit as st
from multiapp import MultiApp
from apps import about, credits, inference
def main():
app = MultiApp()
app.add_app("Inference", inference.app)
app.add_app("About", about.app)
app.add_app("Credits", credits.app)
app.run()
if __name__ == "__main__":
main()