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

# Chat Health

> Diagnostic endpoint. Aggregates Qdrant reachability, settings state,
index status, and budget. Issues list is human-readable so the admin
UI can surface action items without further parsing.



## OpenAPI

````yaml https://api.vellaro.io/openapi.json get /api/v1/admin/chat/health
openapi: 3.1.0
info:
  title: Vellaro API
  description: Vellaro 2026 — E-commerce API
  version: 0.1.0
servers:
  - url: https://api.vellaro.io
    description: Produzione
security: []
tags: []
paths:
  /api/v1/admin/chat/health:
    get:
      tags:
        - admin:chat
      summary: Chat Health
      description: |-
        Diagnostic endpoint. Aggregates Qdrant reachability, settings state,
        index status, and budget. Issues list is human-readable so the admin
        UI can surface action items without further parsing.
      operationId: chat_health_api_v1_admin_chat_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_ChatHealthOut_'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiResponse_ChatHealthOut_:
      properties:
        data:
          anyOf:
            - $ref: '#/components/schemas/ChatHealthOut'
            - type: 'null'
        meta:
          anyOf:
            - $ref: '#/components/schemas/PaginationMeta'
            - type: 'null'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
      type: object
      title: ApiResponse[ChatHealthOut]
    ChatHealthOut:
      properties:
        qdrant:
          additionalProperties: true
          type: object
          title: Qdrant
        settings_configured:
          type: boolean
          title: Settings Configured
        indexing:
          additionalProperties: true
          type: object
          title: Indexing
        budget:
          additionalProperties: true
          type: object
          title: Budget
        issues:
          items:
            type: string
          type: array
          title: Issues
      type: object
      required:
        - qdrant
        - settings_configured
        - indexing
        - budget
        - issues
      title: ChatHealthOut
      description: |-
        Overall chat module health, exposed at /admin/chat/health.

        Tenant operators use this to confirm: Qdrant reachable, the tenant
        has an API key configured, indexing has run at least once.
    PaginationMeta:
      properties:
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        total:
          type: integer
          title: Total
        total_pages:
          type: integer
          title: Total Pages
      type: object
      required:
        - page
        - page_size
        - total
        - total_pages
      title: PaginationMeta
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````