mirror of
https://github.com/yuruotong1/autoMate.git
synced 2026-03-22 13:07:17 +08:00
12 lines
204 B
Python
12 lines
204 B
Python
import argparse
|
|
from gradio_ui import app
|
|
from util import download_weights
|
|
|
|
def run():
|
|
download_weights.download()
|
|
app.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
download_weights.download()
|
|
run() |