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

# Get adminsystemsummarisation config



## OpenAPI

````yaml /openapi.json get /admin/system/summarisation-config
openapi: 3.0.0
info:
  title: Kair Voice
  version: '1.0'
servers:
  - url: http://0.0.0.0:8000/api
security: []
tags:
  - name: Admin
  - name: ApiKey
  - name: Auth
  - name: Concerns
  - name: Device
  - name: Graph
  - name: Health
  - name: Job
  - name: Session
  - name: Workshop
  - name: Workspace
paths:
  /admin/system/summarisation-config:
    get:
      tags:
        - Admin
      operationId: get-admin-system-summarisation-config
      responses:
        '200':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/AdminSummarisationConfigResponse'
        '400':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    AdminSummarisationConfigResponse:
      type: object
      title: AdminSummarisationConfigResponse
      required:
        - client
        - model
        - temperature
        - ollama_url
        - ollama_api_key_set
      properties:
        client:
          $ref: '#/components/schemas/AdminSummarisationClient'
        model:
          type: string
        temperature:
          type: number
          format: double
        ollama_url:
          type: string
          description: >-
            Effective Ollama base URL (defaults to `http://localhost:11434` when
            unset).
        ollama_api_key_set:
          type: boolean
    ErrorResponse:
      type: object
      title: ErrorResponse
      required:
        - success
        - message
      properties:
        success:
          type: boolean
        message:
          type: string
    AdminSummarisationClient:
      type: string
      enum:
        - ollama
        - openai
        - anthropic
        - gemini
        - openrouter

````