T5-model / Main.py
Dorn4449's picture
Create Main.py
9c15df8
raw
history blame contribute delete
115 Bytes
import streamlit as st
from app.py import run_app
def main():
run_app()
if __name__ == '__main__':
main()