ionvop's picture
Upload 110 files
08b5f9a verified
raw
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)