Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ionvop
/
chu2-rvc-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e426112
chu2-rvc-api
/
rvc
/
wrapper
/
api
/
api.py
ionvop
Upload 110 files
08b5f9a
verified
3 months ago
raw
Copy download link
history
blame
193 Bytes
import
uvicorn
from
dotenv
import
load_dotenv
from
fastapi
import
FastAPI
from
rvc.wrapper.api.endpoints
import
inference
load_dotenv()
app = FastAPI()
app.include_router(inference.router)