Hyperbolic · Arazzo Workflow

Hyperbolic Discover Model And Complete

Version 1.0.0

List the catalog and run a base-model text completion against a non-instruct model.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Artificial IntelligenceComputeDecentralizedDePINGPUImage-GenerationInferenceLLMMarketplaceOpen-SourceArazzoWorkflows

Provider

hyperbolic-ai

Workflows

discover-model-and-complete
Confirm a base model from the catalog and generate a raw text completion.
Reads the model catalog, then sends a prompt to the legacy completions endpoint for a base model. Useful for high-throughput base-model prompting where instruct chat formatting is not wanted.
2 steps inputs: apiKey, maxTokens, model, prompt, temperature outputs: models, text, totalTokens
1
listCatalog
List the live inference catalog so the base model can be confirmed before a completion is requested.
2
complete
Submit the prompt to the base model and capture the generated text and token usage.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Hyperbolic Discover Model And Complete
  summary: List the catalog and run a base-model text completion against a non-instruct model.
  description: >-
    Targets Hyperbolic's legacy text completions endpoint, which serves base
    (non-instruct) models such as the Llama-3.1-405B base BF16 and FP8 variants
    unique to Hyperbolic. The workflow lists the live catalog to confirm the
    base model, then submits a prompt completion. Each step inlines its request
    and inline Authorization Bearer credential.
  version: 1.0.0
sourceDescriptions:
- name: completionsApi
  url: ../openapi/hyperbolic-ai-completions-api-openapi.yml
  type: openapi
- name: modelsApi
  url: ../openapi/hyperbolic-ai-models-api-openapi.yml
  type: openapi
workflows:
- workflowId: discover-model-and-complete
  summary: Confirm a base model from the catalog and generate a raw text completion.
  description: >-
    Reads the model catalog, then sends a prompt to the legacy completions
    endpoint for a base model. Useful for high-throughput base-model prompting
    where instruct chat formatting is not wanted.
  inputs:
    type: object
    required:
    - apiKey
    - model
    - prompt
    properties:
      apiKey:
        type: string
        description: Hyperbolic API key passed as a Bearer token.
      model:
        type: string
        description: Base model id (e.g. meta-llama/Meta-Llama-3.1-405B).
      prompt:
        type: string
        description: The raw text prompt to complete.
      maxTokens:
        type: integer
        description: Maximum number of tokens to generate.
      temperature:
        type: number
        description: Sampling temperature between 0 and 2.
  steps:
  - stepId: listCatalog
    description: >-
      List the live inference catalog so the base model can be confirmed before
      a completion is requested.
    operationId: listModels
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      models: $response.body#/data
  - stepId: complete
    description: >-
      Submit the prompt to the base model and capture the generated text and
      token usage.
    operationId: createCompletion
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        model: $inputs.model
        prompt: $inputs.prompt
        max_tokens: $inputs.maxTokens
        temperature: $inputs.temperature
        stream: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      completionId: $response.body#/id
      text: $response.body#/choices/0/text
      finishReason: $response.body#/choices/0/finish_reason
      totalTokens: $response.body#/usage/total_tokens
  outputs:
    models: $steps.listCatalog.outputs.models
    text: $steps.complete.outputs.text
    totalTokens: $steps.complete.outputs.totalTokens

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/hyperbolic-ai-discover-model-and-complete-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.