> ## 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

> Initialize specified style.

Other APIs can be used without execution, but first execution may take time.

**Laravel Implementation Status**: ❌ Core is pre-initialized via vvm loading (no fallback)



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/en/laravel-openapi.json post /initialize_speaker
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /initialize_speaker:
    post:
      tags:
        - Other
      summary: Initialize Speaker
      description: >-
        Initialize specified style.


        Other APIs can be used without execution, but first execution may take
        time.


        **Laravel Implementation Status**: ❌ Core is pre-initialized via vvm
        loading (no fallback)
      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: >-
              Whether to skip reinitialization of a style that has already been
              initialized
            default: false
            title: Skip Reinit
          description: >-
            Whether to skip reinitialization of a style that has already been
            initialized
        - 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

````