Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Wolf369
/
vllm
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
4de23b1
vllm
/
main.py
Wolf369
Initial commit
78e119e
over 1 year ago
raw
Copy download link
history
blame
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}