Skip to content

Commit

Permalink
追加featureのsingをoptionalに (#1037)
Browse files Browse the repository at this point in the history
追加feature sing をoptionalに
  • Loading branch information
Hiroshiba authored Jan 31, 2024
1 parent 0f06aeb commit 5e9931c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -876,8 +876,7 @@
"adjust_intonation_scale",
"adjust_volume_scale",
"interrogative_upspeak",
"synthesis_morphing",
"sing"
"synthesis_morphing"
],
"title": "SupportedFeatures",
"type": "object"
Expand Down
2 changes: 1 addition & 1 deletion voicevox_engine/engine_manifest/EngineManifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class SupportedFeatures(BaseModel):
adjust_volume_scale: bool = Field(title="全体の音量の調整")
interrogative_upspeak: bool = Field(title="疑問文の自動調整")
synthesis_morphing: bool = Field(title="2種類のスタイルでモーフィングした音声を合成")
sing: bool = Field(title="歌唱音声合成")
sing: Optional[bool] = Field(title="歌唱音声合成")
manage_library: Optional[bool] = Field(title="音声ライブラリのインストール・アンインストール")


Expand Down

0 comments on commit 5e9931c

Please sign in to comment.