free-llm / main.py
gingdev's picture
first commit
cfc0cce
raw
history blame contribute delete
No virus
89 Bytes
import uvicorn
from app.main import app
if __name__ == '__main__':
uvicorn.run(app)