Spaces:
Sleeping
Sleeping
File size: 579 Bytes
ef34e97 d765d3d ef34e97 d765d3d ef34e97 d765d3d ef34e97 d765d3d ef34e97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI(title="Deploying FastAPI Apps on Huggingface")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/", tags=["Home"])
def api_home():
return {"detail": "Welcome to FastAPI TextGen Tutorial!"}
@app.post(
"/api/generate",
summary="Generate text from prompt",
tags=["Generate"],
response_model=Generate,
)
def inference(input_prompt: str):
return "Hello"
|