Tomtom84 commited on
Commit
594b7d6
·
verified ·
1 Parent(s): f749a75

Create __init__.py

Browse files
Files changed (1) hide show
  1. orpheus-tts/__init__.py +8 -0
orpheus-tts/__init__.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ """Orpheus Text-to-Speech System."""
2
+
3
+ __version__ = "0.1.0"
4
+
5
+ # Import and expose the main function
6
+ # from .main import generate_tokens_sync
7
+ from .decoder import tokens_decoder_sync
8
+ from .engine_class import OrpheusModel