add inference cli

This commit is contained in:
Ftps
2024-01-20 22:48:15 +09:00
parent 95d989827d
commit 6d759b4b96
13 changed files with 276 additions and 4 deletions

8
rvc/cli/utils/dlmodel.py Normal file
View File

@@ -0,0 +1,8 @@
import urllib
import click
@click.command()
def dlmodel() -> None:
# Download models [harvest, uvr5, and more ]
pass

13
rvc/cli/utils/env.py Normal file
View File

@@ -0,0 +1,13 @@
"""
setup or cleanup enviroment file
usage: rvc env [set / cleanup]
Default: [nowDir/.env]
"""
import click
@click.command()
def env():
pass

View File

@@ -0,0 +1,14 @@
"""
Uage: rvc init
download model and setup environmmnt file
"""
import click
import click
@click.command()
def initialize():
pass