deploy_vLLM / app.py
Damien Benveniste
Add application file
48d8d65
raw
history blame
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}