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

# Diagnostics

> Get diagnostic information for the container.



## OpenAPI

````yaml /openapi/privateai_4.3.0.json get /diagnostics
openapi: 3.1.0
info:
  title: API Reference
  description: Private AI API Reference
  termsOfService: https://www.getlimina.ai/en/terms-of-use
  contact:
    url: https://www.getlimina.ai/en/contact-us
    email: info@getlimina.ai
  version: 4.3.0
servers:
  - url: https://api.private-ai.com/community
    description: Private AI Community API
  - url: https://api.private-ai.com/cloud
    description: Private AI Cloud API
  - url: http://localhost:8080
    description: Local Server
security: []
paths:
  /diagnostics:
    get:
      summary: Diagnostics
      description: Get diagnostic information for the container.
      operationId: diagnostics_diagnostics_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DiagnosticResponse'
components:
  schemas:
    DiagnosticResponse:
      properties:
        platform:
          type: string
          title: Platform
          description: The platform on which the container is running.
        cpu_count:
          type: integer
          title: Cpu Count
          description: The number of CPUs allocated to the container.
        container_version:
          type: string
          title: Container Version
          description: The version of the container.
        cpu_name:
          type: string
          title: Cpu Name
          description: The name of the CPU.
        gpu_info:
          additionalProperties:
            type: string
          type: object
          title: Gpu Info
          description: The uuid and name of attached GPUs.
      type: object
      required:
        - platform
        - cpu_count
        - container_version
        - cpu_name
      title: DiagnosticResponse

````