> ## 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_3.4.2.json get /diagnostics
openapi: 3.0.2
info:
  title: API Reference
  description: Private AI API Reference
  termsOfService: https://www.private-ai.com/terms-of-use/
  contact:
    url: https://www.private-ai.com/contact/
    email: info@private-ai.com
  version: 3.4.2
servers:
  - url: https://api.private-ai.com/deid
    description: Private AI Demo Server
  - 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:
      title: DiagnosticResponse
      required:
        - platform
        - cpu_count
        - container_version
        - cpu_name
      type: object
      properties:
        platform:
          title: Platform
          type: string
          description: The platform on which the container is running.
        cpu_count:
          title: Cpu Count
          type: integer
          description: The number of CPUs allocated to the container.
        container_version:
          title: Container Version
          type: string
          description: The version of the container.
        cpu_name:
          title: Cpu Name
          type: string
          description: The name of the CPU.
        gpu_info:
          title: Gpu Info
          type: object
          additionalProperties:
            type: string
          description: The uuid and name of attached GPUs.

````