Hyperbolic · Arazzo Workflow

Hyperbolic Discover Model And Chat

Version 1.0.0

List the live model catalog, pick a chat model, and run a chat completion against it.

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

Provider

hyperbolic-ai

Workflows

discover-model-and-chat
Resolve an available chat model from the catalog and generate a chat completion.
Calls the OpenAI-compatible models endpoint to confirm the live catalog, then submits a chat completion using a model id the caller supplies. The catalog read lets the caller validate the model exists before spending inference credits.
2 steps inputs: apiKey, maxTokens, model, prompt, systemPrompt, temperature outputs: answer, models, totalTokens
1
listCatalog
List all models currently available for inference so the target chat model can be confirmed before a completion is requested.
2
chat
Send a single-turn chat completion to the supplied model and capture the assistant message text and token usage.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Hyperbolic Discover Model And Chat
  summary: List the live model catalog, pick a chat model, and run a chat completion against it.
  description: >-
    A foundational Hyperbolic Serverless Inference flow. The workflow first
    pulls the live model catalog so a caller can confirm a chat model is
    available, then sends a chat completion request to that model. Every step
    inlines its request — including the inline Authorization Bearer credential —
    so the flow can be read and executed without opening the underlying OpenAPI
    descriptions.
  version: 1.0.0
sourceDescriptions:
- name: chatCompletionsApi
  url: ../openapi/hyperbolic-ai-chat-completions-api-openapi.yml
  type: openapi
- name: modelsApi
  url: ../openapi/hyperbolic-ai-models-api-openapi.yml
  type: openapi
workflows:
- workflowId: discover-model-and-chat
  summary: Resolve an available chat model from the catalog and generate a chat completion.
  description: >-
    Calls the OpenAI-compatible models endpoint to confirm the live catalog,
    then submits a chat completion using a model id the caller supplies. The
    catalog read lets the caller validate the model exists before spending
    inference credits.
  inputs:
    type: object
    required:
    - apiKey
    - model
    - prompt
    properties:
      apiKey:
        type: string
        description: Hyperbolic API key passed as a Bearer token.
      model:
        type: string
        description: >-
          Chat model identifier (e.g. deepseek-ai/DeepSeek-V3 or
          meta-llama/Meta-Llama-3.1-70B-Instruct).
      systemPrompt:
        type: string
        description: Optional system instruction for the assistant.
      prompt:
        type: string
        description: The user message to send to the chat model.
      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 all models currently available for inference so the target chat
      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
      firstModelId: $response.body#/data/0/id
  - stepId: chat
    description: >-
      Send a single-turn chat completion to the supplied model and capture the
      assistant message text and token usage.
    operationId: createChatCompletion
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    requestBody:
      contentType: application/json
      payload:
        model: $inputs.model
        messages:
        - role: system
          content: $inputs.systemPrompt
        - role: user
          content: $inputs.prompt
        max_tokens: $inputs.maxTokens
        temperature: $inputs.temperature
        stream: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      completionId: $response.body#/id
      answer: $response.body#/choices/0/message/content
      finishReason: $response.body#/choices/0/finish_reason
      totalTokens: $response.body#/usage/total_tokens
  outputs:
    models: $steps.listCatalog.outputs.models
    answer: $steps.chat.outputs.answer
    totalTokens: $steps.chat.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-chat-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.