TensorFlow · Arazzo Workflow

TensorFlow Serving Preflight and Regress

Version 1.0.0

Confirm a model is loaded and its signature is known before running regression inference.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Artificial IntelligenceDeep LearningJavaScriptMachine-LearningModel ServingNeural NetworksOpen-SourcePythonArazzoWorkflows

Provider

tensorflow

Workflows

regress-preflight
Check model status, read the signature, then run regression inference.
Verifies the named model reports an AVAILABLE version, resolves its signature metadata, and submits tf.Example inputs for regression, returning one numeric result per example.
3 steps inputs: context, examples, modelName, signatureName outputs: modelSpecVersion, result, servingVersion
1
checkModelStatus
Confirm the ModelServer has the model loaded and reports a version in the AVAILABLE state before any inference is attempted.
2
readModelMetadata
Read the metadata of the latest available version to confirm the model exposes a regression signature and to see the features it expects.
3
runRegression
Submit the examples for regression against the model's latest available version, returning the predicted numeric value for each example.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: TensorFlow Serving Preflight and Regress
  summary: Confirm a model is loaded and its signature is known before running regression inference.
  description: >-
    Regression in TensorFlow Serving follows PredictionService.Regress semantics
    and, like classify, takes tf.Example style inputs through the examples array
    rather than the instances array used by predict. It returns a single numeric
    value per input example instead of label and score pairs. This workflow
    checks that the model reports an AVAILABLE version, reads its metadata to
    confirm the regression signature, and then submits the examples for scoring.
    Every step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: inferenceApi
  url: ../openapi/tensorflow-inference-api-openapi.yml
  type: openapi
- name: modelsApi
  url: ../openapi/tensorflow-models-api-openapi.yml
  type: openapi
workflows:
- workflowId: regress-preflight
  summary: Check model status, read the signature, then run regression inference.
  description: >-
    Verifies the named model reports an AVAILABLE version, resolves its signature
    metadata, and submits tf.Example inputs for regression, returning one numeric
    result per example.
  inputs:
    type: object
    required:
    - modelName
    - examples
    properties:
      modelName:
        type: string
        description: The name the model was registered under in the ModelServer.
      signatureName:
        type: string
        description: >-
          Optional regression signature to target. When omitted the ModelServer
          uses the model's default serving signature.
      context:
        type: object
        description: Optional context features shared across every supplied example.
      examples:
        type: array
        description: The tf.Example style input records to score, one numeric result returned per example.
        items:
          type: object
  steps:
  - stepId: checkModelStatus
    description: >-
      Confirm the ModelServer has the model loaded and reports a version in the
      AVAILABLE state before any inference is attempted.
    operationId: getModelStatus
    parameters:
    - name: model_name
      in: path
      value: $inputs.modelName
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.model_version_status[0].state == 'AVAILABLE'
      type: jsonpath
    outputs:
      servingState: $response.body#/model_version_status/0/state
      servingVersion: $response.body#/model_version_status/0/version
      errorMessage: $response.body#/model_version_status/0/status/error_message
  - stepId: readModelMetadata
    description: >-
      Read the metadata of the latest available version to confirm the model
      exposes a regression signature and to see the features it expects.
    operationId: getModelMetadata
    parameters:
    - name: model_name
      in: path
      value: $inputs.modelName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      modelSpecName: $response.body#/model_spec/name
      modelSpecVersion: $response.body#/model_spec/version
      signatureMetadata: $response.body#/metadata
  - stepId: runRegression
    description: >-
      Submit the examples for regression against the model's latest available
      version, returning the predicted numeric value for each example.
    operationId: regressModel
    parameters:
    - name: model_name
      in: path
      value: $inputs.modelName
    requestBody:
      contentType: application/json
      payload:
        signature_name: $inputs.signatureName
        context: $inputs.context
        examples: $inputs.examples
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      result: $response.body#/result
      firstValue: $response.body#/result/0
  outputs:
    servingVersion: $steps.checkModelStatus.outputs.servingVersion
    modelSpecVersion: $steps.readModelMetadata.outputs.modelSpecVersion
    result: $steps.runRegression.outputs.result

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/tensorflow-regress-preflight-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.