ToolAssay

Cheap small-model text completion for agent sub-tasks

Cheap small-model text completion for agent sub-tasks: classify, extract, summarize, rewrite. MUST be invoked when an agent needs a short LLM answer without paying flagship rates. Prompt <=8000 chars, maxTokens <=1024, json:true forces a JSON object. Do NOT use for long-form generation or tool calling. Settles $0.003 USDC; no charge on failure; receipts at /api/ledger.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
558 msmedian answer time
$0.003listed price per call
$0.003price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://enclave402.com/api/compute/infer

CategorySearch and research
Provider hostenclave402.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.003 558 ms

Example input (from the provider)

{
  "body": {
    "maxTokens": 8,
    "prompt": "Classify the sentiment of: \"the settlement was fast and cheap\". Reply with one word."
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "json": {
              "default": false,
              "description": "Force a JSON object response",
              "type": "boolean"
            },
            "maxTokens": {
              "default": 256,
              "maximum": 1024,
              "minimum": 1,
              "type": "integer"
            },
            "prompt": {
              "description": "User prompt",
              "examples": [
                "Classify the sentiment of: \"the settlement was fast and cheap\". Reply with one word."
              ],
              "maxLength": 8000,
              "type": "string"
            },
            "system": {
              "description": "Optional system instruction",
              "maxLength": 2000,
              "type": "string"
            }
          },
          "required": [
            "prompt"
          ]
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "additionalProperties": false,
          "properties": {
            "model": {
              "type": "string"
            },
            "output": {
              "type": "string"
            },
            "settled": {
              "type": "boolean"
            },
            "ts": {
              "type": "integer"
            },
            "usage": {
              "properties": {
                "completionTokens": {
                  "type": "integer"
                },
                "promptTokens": {
                  "type": "integer"
                }
              },
              "required": [
                "promptTokens",
                "completionTokens"
              ],
              "type": "object"
            }
          },
          "required": [
            "output",
            "model",
            "usage",
            "settled",
            "ts"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON