CoolFace
Apppublic

Th3BossC/TranscriptApi

sourceHugging Faceupdated 3y agoView on Hugging Face
1likes
app.py18 linesDownload Raw Back to root
1from TranscriptApi import create_app2from threading import Thread3 4app = create_app()5 6 7if __name__ == '__main__':8    app.run(debug = False, host="0.0.0.0", port=7860)9 10 11# def run():12#     app.run(host = "0.0.0.0", port = 8080)  13 14# def keep_alive():15#     t = Thread(target = run)16#     t.start()17 18# keep_alive()