gcli2api / run.py
bibibi12345's picture
added image and file upload support for openai
9963145
raw
history blame
115 Bytes
import uvicorn
from src.main import app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8888)