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

# Supported Devices

> 対応デバイスの一覧を取得します。

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



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/jp/laravel-openapi.json get /supported_devices
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS の音声合成エンジンです。
  version: latest
servers: []
security: []
paths:
  /supported_devices:
    get:
      tags:
        - その他
      summary: Supported Devices
      description: |-
        対応デバイスの一覧を取得します。

        **Laravel実装状況**: ❌ エンジン固有の機能（フォールバックのみ）
      operationId: supported_devices
      parameters:
        - name: core_version
          in: query
          required: false
          schema:
            type: string
            title: Core Version
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SupportedDevicesInfo'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SupportedDevicesInfo:
      properties:
        cpu:
          type: boolean
          title: Cpu
          description: CPUに対応しているか
        cuda:
          type: boolean
          title: Cuda
          description: CUDA(Nvidia GPU)に対応しているか
        dml:
          type: boolean
          title: Dml
          description: DirectML(Nvidia GPU/Radeon GPU等)に対応しているか
      type: object
      required:
        - cpu
        - cuda
        - dml
      title: SupportedDevicesInfo
      description: 対応しているデバイスの情報。
    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

````