add inference cli
This commit is contained in:
8
rvc/cli/utils/dlmodel.py
Normal file
8
rvc/cli/utils/dlmodel.py
Normal 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
13
rvc/cli/utils/env.py
Normal 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
|
||||
14
rvc/cli/utils/initialize.py
Normal file
14
rvc/cli/utils/initialize.py
Normal file
@@ -0,0 +1,14 @@
|
||||
"""
|
||||
Uage: rvc init
|
||||
download model and setup environmmnt file
|
||||
|
||||
"""
|
||||
import click
|
||||
|
||||
|
||||
import click
|
||||
|
||||
|
||||
@click.command()
|
||||
def initialize():
|
||||
pass
|
||||
Reference in New Issue
Block a user