> ## Documentation Index
> Fetch the complete documentation index at: https://kawax.biz/llms.txt
> Use this file to discover all available pages before exploring further.

# Installed Libraries

> インストールした音声ライブラリの情報を返します。

**Laravel実装状況**: ❌ エンジン固有の機能（フォールバックもなし）



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/jp/laravel-openapi.json get /installed_libraries
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS の音声合成エンジンです。
  version: latest
servers: []
security: []
paths:
  /installed_libraries:
    get:
      tags:
        - 音声ライブラリ管理
      summary: Installed Libraries
      description: |-
        インストールした音声ライブラリの情報を返します。

        **Laravel実装状況**: ❌ エンジン固有の機能（フォールバックもなし）
      operationId: installed_libraries
      responses:
        '200':
          description: インストールした音声ライブラリの情報
          content:
            application/json:
              schema:
                additionalProperties:
                  $ref: '#/components/schemas/InstalledLibraryInfo'
                type: object
                title: Response Installed Libraries Installed Libraries Get
components:
  schemas:
    InstalledLibraryInfo:
      properties:
        name:
          type: string
          title: Name
          description: 音声ライブラリの名前
        uuid:
          type: string
          title: Uuid
          description: 音声ライブラリのUUID
        version:
          type: string
          title: Version
          description: 音声ライブラリのバージョン
        download_url:
          type: string
          title: Download Url
          description: 音声ライブラリのダウンロードURL
        bytes:
          type: integer
          title: Bytes
          description: 音声ライブラリのバイト数
        speakers:
          items:
            $ref: '#/components/schemas/LibrarySpeaker'
          type: array
          title: Speakers
          description: 音声ライブラリに含まれるキャラクターのリスト
        uninstallable:
          type: boolean
          title: Uninstallable
          description: アンインストール可能かどうか
      type: object
      required:
        - name
        - uuid
        - version
        - download_url
        - bytes
        - speakers
        - uninstallable
      title: InstalledLibraryInfo
      description: インストール済み音声ライブラリの情報。
    LibrarySpeaker:
      properties:
        speaker:
          $ref: '#/components/schemas/Speaker'
        speaker_info:
          $ref: '#/components/schemas/SpeakerInfo'
      type: object
      required:
        - speaker
        - speaker_info
      title: LibrarySpeaker
      description: 音声ライブラリに含まれるキャラクターの情報。
    Speaker:
      properties:
        name:
          type: string
          title: Name
          description: 名前
        speaker_uuid:
          type: string
          title: Speaker Uuid
          description: キャラクターのUUID
        styles:
          items:
            $ref: '#/components/schemas/SpeakerStyle'
          type: array
          title: Styles
          description: スタイルの一覧
        version:
          type: string
          title: Version
          description: キャラクターのバージョン
        supported_features:
          $ref: '#/components/schemas/SpeakerSupportedFeatures'
          description: キャラクターの対応機能
      type: object
      required:
        - name
        - speaker_uuid
        - styles
        - version
      title: Speaker
      description: キャラクター情報
    SpeakerInfo:
      properties:
        policy:
          type: string
          title: Policy
          description: policy.md
        portrait:
          type: string
          title: Portrait
          description: 立ち絵画像をbase64エンコードしたもの、あるいはURL
        style_infos:
          items:
            $ref: '#/components/schemas/StyleInfo'
          type: array
          title: Style Infos
          description: スタイルの追加情報
      type: object
      required:
        - policy
        - portrait
        - style_infos
      title: SpeakerInfo
      description: キャラクターの追加情報
    SpeakerStyle:
      properties:
        name:
          type: string
          title: Name
          description: スタイル名
        id:
          type: integer
          title: Id
          description: スタイルID
        type:
          type: string
          enum:
            - talk
            - singing_teacher
            - frame_decode
            - sing
          title: Type
          description: >-
            スタイルの種類。talk:音声合成クエリの作成と音声合成が可能。singing_teacher:歌唱音声合成用のクエリの作成が可能。frame_decode:歌唱音声合成が可能。sing:歌唱音声合成用のクエリの作成と歌唱音声合成が可能。
          default: talk
      type: object
      required:
        - name
        - id
      title: SpeakerStyle
      description: キャラクターのスタイル情報
    SpeakerSupportedFeatures:
      properties:
        permitted_synthesis_morphing:
          type: string
          enum:
            - ALL
            - SELF_ONLY
            - NOTHING
          title: Permitted Synthesis Morphing
          description: >-
            モーフィング機能への対応。'ALL' は「全て許可」、'SELF_ONLY' は「同じキャラクター内でのみ許可」、'NOTHING'
            は「全て禁止」
          default: ALL
      type: object
      title: SpeakerSupportedFeatures
      description: キャラクターの対応機能の情報
    StyleInfo:
      properties:
        id:
          type: integer
          title: Id
          description: スタイルID
        icon:
          type: string
          title: Icon
          description: このスタイルのアイコンをbase64エンコードしたもの、あるいはURL
        portrait:
          type: string
          title: Portrait
          description: このスタイルの立ち絵画像をbase64エンコードしたもの、あるいはURL
        voice_samples:
          items:
            type: string
          type: array
          title: Voice Samples
          description: サンプル音声をbase64エンコードしたもの、あるいはURL
      type: object
      required:
        - id
        - icon
        - voice_samples
      title: StyleInfo
      description: スタイルの追加情報

````