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

# Reload Config

> Reload the agent configuration from the manager or a file.

The optional ``_auth`` dependency consults
``app.state.reload_auth`` (configured via ``create_app(reload_auth=...)``)
and, if set, invokes it. The configured callable is responsible for
raising :class:`fastapi.HTTPException` to deny the request.



## OpenAPI

````yaml /standalone/openapi.json post /reload
openapi: 3.1.0
info:
  title: Idun Agent Engine Server
  description: A production-ready server for conversational AI agents
  version: 0.6.1
servers: []
security: []
tags:
  - name: Runtime
    description: >-
      Public agent run endpoints, engine operations, and chat-channel webhooks.
      SSE streaming via the AG-UI protocol.
  - name: Agent Configuration
    description: >-
      Singleton admin endpoints for the agent, prompts, memory, guardrails, and
      onboarding wizard.
  - name: Auth & SSO
    description: >-
      Login, sessions, password change, SSO config, and the public SSO discovery
      endpoint.
  - name: Integrations & Tools
    description: MCP server registry and external integration credentials.
  - name: Observability
    description: Tracing/logging provider configuration.
  - name: Traces
    description: >-
      Trace and span storage admin endpoints — list, detail, delete, and
      pipeline-health for the standalone trace store.
  - name: Dashboard
    description: >-
      Operator dashboard widgets — KPIs, time-series, top errors, and
      configuration summary.
paths:
  /reload:
    post:
      tags:
        - Runtime
      summary: Reload Config
      description: >-
        Reload the agent configuration from the manager or a file.


        The optional ``_auth`` dependency consults

        ``app.state.reload_auth`` (configured via
        ``create_app(reload_auth=...)``)

        and, if set, invokes it. The configured callable is responsible for

        raising :class:`fastapi.HTTPException` to deny the request.
      operationId: reload_config_reload_post
      requestBody:
        content:
          application/json:
            schema:
              anyOf:
                - $ref: '#/components/schemas/ReloadRequest'
                - type: 'null'
              title: Body
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ReloadRequest:
      properties:
        path:
          anyOf:
            - type: string
            - type: 'null'
          title: Path
      type: object
      title: ReloadRequest
      description: Request body for reload endpoint.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````