Spaces:
Runtime error
Runtime error
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() | |