File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 66
77from .errors import NotFoundError , HTTPException
88from .types import AudioQueryType
9- from .types . sing import AudioQuery as SingAudioQueryType , RequestPostAudioQuery
9+ from .types import SingAudioQuery as SingAudioQueryType , RequestPostAudioQuery
1010
1111
1212class Route :
Original file line number Diff line number Diff line change 22
33from .audio_query import AudioQueryType , AccentPhraseType , MoraType
44from .speakers import SpeakerType , StyleType , SupportedFeatureType
5+ from .sing import *
56
67
78__all__ = (
1112 "SpeakerType" ,
1213 "StyleType" ,
1314 "SupportedFeatureType" ,
15+ "SingAudioQuery" ,
16+ "Phoneme" ,
17+ "RequestPostAudioQuery" ,
18+ "Note" ,
1419)
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class Phoneme(TypedDict):
1818 note_id : str
1919
2020
21- class AudioQuery (TypedDict ):
21+ class SingAudioQuery (TypedDict ):
2222 f0 : List [int ]
2323 volume : List [int ]
2424 phonemes : List [Phoneme ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments