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

# Get Inference Model

> The model currently serving inference for this workspace.

`available: false` is an honest state, not an error: it means nothing has been
trained, or what was trained has not passed its evaluation gates and so was never
promoted.



## OpenAPI

````yaml /openapi.json get /v1/inference/model
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/inference/model:
    get:
      tags:
        - inference
      summary: Get Inference Model
      description: >-
        The model currently serving inference for this workspace.


        `available: false` is an honest state, not an error: it means nothing
        has been

        trained, or what was trained has not passed its evaluation gates and so
        was never

        promoted.
      operationId: get_inference_model_v1_inference_model_get
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Get Inference Model V1 Inference Model Get
                type: object
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````