vllm / main.py
Wolf369's picture
Initial commit
78e119e
raw
history blame
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}