Spaces:
Sleeping
Sleeping
File size: 166 Bytes
d13b181 | 1 2 3 4 5 6 7 | from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root(): return {"status": "ok"}
@app.get("/v1/models")
def models(): return {"data": [{"id": "test"}]}
|