Skip to content

Commit

Permalink
Update: 「作成者名」を「制作者名」に変更
Browse files Browse the repository at this point in the history
その方がしっくりくる
  • Loading branch information
tsukumijima committed Nov 14, 2024
1 parent 0705480 commit 0bbfccc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 を設定)
Expand Down
4 changes: 2 additions & 2 deletions aivmlib/schemas/aivm_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 を設定)
Expand Down

0 comments on commit 0bbfccc

Please sign in to comment.