-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -364,8 +364,8 @@ class AivmManifest(BaseModel): | |
name: Annotated[str, StringConstraints(min_length=1, max_length=80)] | ||
# 音声合成モデルの簡潔な説明 (最大 140 文字 / 省略時は空文字列を設定) | ||
description: Annotated[str, StringConstraints(max_length=140)] = '' | ||
# 音声合成モデルの作成者名のリスト (省略時は空リストを設定) | ||
# 作成者名には npm package.json の "author", "contributors" に指定できるものと同じ書式を利用できる | ||
# 音声合成モデルの制作者名のリスト (省略時は空リストを設定) | ||
# 制作者名には npm package.json の "author", "contributors" に指定できるものと同じ書式を利用できる | ||
# 例: ["John Doe", "Jane Doe <[email protected]>", "John Doe <[email protected]> (https://example.com)"] | ||
creators: list[Annotated[str, StringConstraints(min_length=1, max_length=255)]] = [] | ||
# 音声合成モデルのライセンス情報 (Markdown 形式またはプレーンテキスト / 省略時は None を設定) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,8 +45,8 @@ class AivmManifest(BaseModel): | |
name: Annotated[str, StringConstraints(min_length=1, max_length=80)] | ||
# 音声合成モデルの簡潔な説明 (最大 140 文字 / 省略時は空文字列を設定) | ||
description: Annotated[str, StringConstraints(max_length=140)] = '' | ||
# 音声合成モデルの作成者名のリスト (省略時は空リストを設定) | ||
# 作成者名には npm package.json の "author", "contributors" に指定できるものと同じ書式を利用できる | ||
# 音声合成モデルの制作者名のリスト (省略時は空リストを設定) | ||
# 制作者名には npm package.json の "author", "contributors" に指定できるものと同じ書式を利用できる | ||
# 例: ["John Doe", "Jane Doe <[email protected]>", "John Doe <[email protected]> (https://example.com)"] | ||
creators: list[Annotated[str, StringConstraints(min_length=1, max_length=255)]] = [] | ||
# 音声合成モデルのライセンス情報 (Markdown 形式またはプレーンテキスト / 省略時は None を設定) | ||
|