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

# AI Completion



## OpenAPI

````yaml post /api/v1/ai/completion
openapi: 3.0.0
info:
  title: Libredesk API
  description: >-
    REST API documentation for Libredesk helpdesk system.


    ## Authentication


    The Libredesk API supports two authentication methods:


    ### 1. Basic Authentication

    Use your API key and secret with Basic authentication:

    ```

    Authorization: Basic <base64_encoded_api_key:api_secret>

    ```


    ### 2. Token Authentication  

    Use your API key and secret with token authentication:

    ```

    Authorization: token api_key:api_secret

    ```


    To obtain API credentials, generate them from your agent profile in the
    Libredesk dashboard.
  version: 1.0.0
servers:
  - url: http://localhost:8080
    description: Local development server
security:
  - basicAuth: []
  - tokenAuth: []
paths:
  /api/v1/ai/completion:
    post:
      tags:
        - AI completions
      summary: A I Completion
      operationId: handleAICompletion
      requestBody:
        description: AI completion request
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AICompletionRequest'
      responses:
        '200':
          description: AI completion generated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AICompletionResponse'
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      security:
        - basicAuth: []
        - tokenAuth: []
components:
  schemas:
    AICompletionRequest:
      type: object
      required:
        - prompt_key
        - content
      properties:
        prompt_key:
          type: string
          description: AI prompt identifier
        content:
          type: string
          description: Content for AI completion
    AICompletionResponse:
      type: object
      properties:
        status:
          type: string
          example: success
        data:
          type: string
          example: Thank you for contacting us. I'll help you resolve this issue...
          description: The AI-generated completion response
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Basic authentication using base64 encoded API key and secret. Format:
        `Authorization: Basic <base64(api_key:api_secret)>`
    tokenAuth:
      type: apiKey
      name: Authorization
      in: header
      description: >-
        Token authentication using API key and secret. Format: `Authorization:
        token api_key:api_secret`

````