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

# Initialize the Assistant

> UI mount call — warms the MCP client caches and returns the tool catalog, the workflow reference resource, and the active chat model.



## OpenAPI

````yaml /openapi.yaml get /api/v1/assistant/init
openapi: 3.0.3
info:
  title: Datris API
  description: >
    REST API for the Datris AI Data Platform. Ingest, validate, transform,
    store, and retrieve data.


    For AI agent integration, use the [MCP
    Server](https://docs.datris.ai/mcp-server) instead.
  version: 1.11.3
  contact:
    name: Datris
    url: https://datris.ai
  license:
    name: Apache 2.0
servers:
  - url: http://localhost:8080
    description: Local development
security:
  - ApiKeyAuth: []
paths:
  /api/v1/assistant/init:
    get:
      tags:
        - Assistant
      summary: Initialize the Assistant
      description: >-
        UI mount call — warms the MCP client caches and returns the tool
        catalog, the workflow reference resource, and the active chat model.
      responses:
        '200':
          description: Assistant bootstrap payload
          content:
            application/json:
              schema:
                type: object
                properties:
                  toolCount:
                    type: integer
                  toolNames:
                    type: array
                    items:
                      type: string
                  workflowReference:
                    type: string
                    description: >-
                      Pipeline-config reference resource text (empty if
                      unavailable)
                  provider:
                    type: string
                    description: Active chat AI provider (lowercase)
                  model:
                    type: string
                  extendedThinking:
                    type: boolean
        '400':
          description: User-actionable error
        '500':
          description: Error
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Optional API key for authentication (enabled via application.yaml)

````