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

# Get resolved bare/workflow runtime configuration



## OpenAPI

````yaml /api-reference/openapi.json get /v1/assistants/{agent_id}/revisions/{revision_id}/effective-runtime-config
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/assistants/{agent_id}/revisions/{revision_id}/effective-runtime-config:
    get:
      tags:
        - assistants
      summary: Get resolved bare/workflow runtime configuration
      operationId: getAssistantEffectiveRuntimeConfig
      parameters:
        - name: agent_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Agent Id
        - name: revision_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Revision Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EffectiveRuntimeConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    EffectiveRuntimeConfigResponse:
      properties:
        workflow_enabled:
          type: boolean
          title: Workflow Enabled
        runtime_mode:
          type: string
          enum:
            - bare
            - workflow
          title: Runtime Mode
        workflow_revision_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Workflow Revision Id
        analyzer:
          $ref: '#/components/schemas/EffectiveAnalyzerConfig'
        current_time:
          $ref: '#/components/schemas/CurrentTimeConfigResponse'
      type: object
      required:
        - workflow_enabled
        - runtime_mode
        - analyzer
        - current_time
      title: EffectiveRuntimeConfigResponse
      description: Resolved runtime mode and provenance-bearing behavioral settings.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EffectiveAnalyzerConfig:
      properties:
        active:
          type: boolean
          title: Active
        override:
          anyOf:
            - $ref: '#/components/schemas/ModelChainEntry'
            - type: 'null'
        effective_model:
          anyOf:
            - type: string
            - type: 'null'
          title: Effective Model
        effective_config:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Effective Config
        source:
          anyOf:
            - type: string
              enum:
                - assistant_revision
                - workflow_revision
                - workflow_router
                - organization
                - default
            - type: 'null'
          title: Source
        inactive_reason:
          anyOf:
            - type: string
              enum:
                - workflow_disabled
                - no_effective_workflow
            - type: 'null'
          title: Inactive Reason
      type: object
      required:
        - active
      title: EffectiveAnalyzerConfig
    CurrentTimeConfigResponse:
      properties:
        enabled:
          type: boolean
          title: Enabled
        timezone:
          type: string
          title: Timezone
        enabled_source:
          type: string
          enum:
            - revision
            - organization
            - default
          title: Enabled Source
        timezone_source:
          type: string
          enum:
            - revision
            - organization
            - default
          title: Timezone Source
        organization:
          $ref: '#/components/schemas/CurrentTimeSettings'
        revision:
          anyOf:
            - $ref: '#/components/schemas/CurrentTimeSettings'
            - type: 'null'
      type: object
      required:
        - enabled
        - timezone
        - enabled_source
        - timezone_source
      title: CurrentTimeConfigResponse
      description: Effective clock settings, per-field provenance, and raw tier overrides.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    ModelChainEntry:
      properties:
        model:
          type: string
          title: Model
        config:
          $ref: '#/components/schemas/ModelConfig'
      type: object
      required:
        - model
      title: ModelChainEntry
    CurrentTimeSettings:
      properties:
        enabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Enabled
        timezone:
          anyOf:
            - type: string
            - type: 'null'
          title: Timezone
      additionalProperties: false
      type: object
      title: CurrentTimeSettings
      description: >-
        One tier's optional current-time overrides.


        ``None`` means inherit for that field. An empty object therefore clears
        the tier and inherits

        both values. The API stores only non-null fields.
    ModelConfig:
      properties:
        temperature:
          anyOf:
            - type: number
              maximum: 2
              minimum: 0
            - type: 'null'
          title: Temperature
        max_tokens:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
          title: Max Tokens
        top_p:
          anyOf:
            - type: number
              maximum: 1
              minimum: 0
            - type: 'null'
          title: Top P
        stop_sequences:
          anyOf:
            - items:
                type: string
              type: array
              maxItems: 8
            - type: 'null'
          title: Stop Sequences
        reasoning_effort:
          anyOf:
            - type: string
              enum:
                - none
                - minimal
                - low
                - medium
                - high
                - xhigh
                - max
            - type: 'null'
          title: Reasoning Effort
        request_timeout_ms:
          anyOf:
            - type: integer
              maximum: 20000
              minimum: 1000
            - type: 'null'
          title: Request Timeout Ms
        thinking_budget:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
          title: Thinking Budget
      type: object
      title: ModelConfig
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````