diff --git a/.gitignore b/.gitignore index bcc67868..36a2f80f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ pretrained_models/ +config_data/ playground/ .vscode/ .pdm-python diff --git a/src/gpt_sovits/infer/__init__.py b/src/gpt_sovits/infer/__init__.py new file mode 100644 index 00000000..34fec415 --- /dev/null +++ b/src/gpt_sovits/infer/__init__.py @@ -0,0 +1,3 @@ +from gpt_sovits.infer.inference import GPTSoVITSInference + +__all__ = ["GPTSoVITSInference"] diff --git a/src/gpt_sovits/infer.py b/src/gpt_sovits/infer/inference.py similarity index 100% rename from src/gpt_sovits/infer.py rename to src/gpt_sovits/infer/inference.py