We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b30cb2 commit eef8ed1Copy full SHA for eef8ed1
src/service/namespace.py
@@ -45,6 +45,7 @@ def create_namespace(self) -> Namespace:
45
created_at = datetime.now(timezone.utc)
46
home_path = os.path.join(self.base_dir, namespace_id)
47
os.makedirs(home_path, exist_ok=True)
48
+ os.makedirs(os.path.join(home_path, "voices"), exist_ok=True)
49
50
namespace = Namespace(
51
namespaceID=namespace_id,
0 commit comments