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

# Initialize Speaker

> 指定されたスタイルを初期化します。

実行しなくても他のAPIは使用できますが、初回実行時に時間がかかることがあります。

**Laravel実装状況**: ❌ コアはvvmロードで初期化済み（フォールバックもなし）



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/jp/laravel-openapi.json post /initialize_speaker
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS の音声合成エンジンです。
  version: latest
servers: []
security: []
paths:
  /initialize_speaker:
    post:
      tags:
        - その他
      summary: Initialize Speaker
      description: |-
        指定されたスタイルを初期化します。

        実行しなくても他のAPIは使用できますが、初回実行時に時間がかかることがあります。

        **Laravel実装状況**: ❌ コアはvvmロードで初期化済み（フォールバックもなし）
      operationId: initialize_speaker
      parameters:
        - name: speaker
          in: query
          required: true
          schema:
            type: integer
            title: Speaker
        - name: skip_reinit
          in: query
          required: false
          schema:
            type: boolean
            description: 既に初期化済みのスタイルの再初期化をスキップするかどうか
            default: false
            title: Skip Reinit
          description: 既に初期化済みのスタイルの再初期化をスキップするかどうか
        - name: core_version
          in: query
          required: false
          schema:
            type: string
            title: Core Version
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````