> ## 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 adminsystemhirag config



## OpenAPI

````yaml /openapi.json get /admin/system/hirag-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/hirag-config:
    get:
      tags:
        - Admin
      operationId: get-admin-system-hirag-config
      responses:
        '200':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/AdminHiragConfigResponse'
        '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:
    AdminHiragConfigResponse:
      type: object
      title: AdminHiragConfigResponse
      required:
        - agent_client
        - embedding_client
        - llm_model
        - embedding_model
        - ollama_url
        - ollama_api_key_set
      properties:
        agent_client:
          $ref: '#/components/schemas/AdminHiragAgentClient'
        embedding_client:
          $ref: '#/components/schemas/AdminHiragEmbeddingClient'
        llm_model:
          type: string
        embedding_model:
          type: string
        ollama_url:
          type: string
          description: >-
            Effective Ollama HTTP URL (defaults to `http://localhost:11434` when
            unset/blank).
        ollama_api_key_set:
          type: boolean
    ErrorResponse:
      type: object
      title: ErrorResponse
      required:
        - success
        - message
      properties:
        success:
          type: boolean
        message:
          type: string
    AdminHiragAgentClient:
      type: string
      enum:
        - ollama
        - anthropic
        - gemini
        - openrouter
    AdminHiragEmbeddingClient:
      type: string
      enum:
        - ollama
        - openai
        - gemini

````