YashashMathur's picture
Fix: Add models.py and update server
2d4a521 verified
raw
history blame
144 Bytes
from env.server import app
import uvicorn
def main():
uvicorn.run(app, host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()