ToolAssay

Selects and fills a small declared dialogue template using a caller-supplied see

Selects and fills a small declared dialogue template using a caller-supplied seed, NPC name, intent, tone, and facts. It produces a reproducible writing prompt, not model-generated prose, lore verification, localization, or a complete conversation system.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
954 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://gaming.halowerk.com/v1/npc-dialogue-gen

CategoryEverything else
Provider hostgaming.halowerk.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 954 ms

Example input (from the provider)

{
  "body": {
    "facts": [
      "The east beacon stopped at midnight.",
      "The harbor gate closes at dawn."
    ],
    "intent": "offer_quest",
    "npc_name": "Captain Ilyra",
    "player_name": "Mara",
    "seed": "harbor-night-17",
    "tone": "wary"
  },
  "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": {
          "additionalProperties": false,
          "properties": {
            "facts": {
              "items": {
                "description": "A fact that may be surfaced verbatim.",
                "maxLength": 512,
                "minLength": 1,
                "type": "string"
              },
              "maxItems": 20,
              "minItems": 1,
              "type": "array"
            },
            "intent": {
              "enum": [
                "greet",
                "warn",
                "offer_quest",
                "trade",
                "refuse"
              ],
              "type": "string"
            },
            "npc_name": {
              "maxLength": 128,
              "minLength": 1,
              "type": "string"
            },
            "player_name": {
              "maxLength": 128,
              "minLength": 1,
              "type": "string"
            },
            "seed": {
              "description": "Stable seed used only for deterministic template selection.",
              "maxLength": 256,
              "minLength": 1,
              "type": "string"
            },
            "tone": {
              "enum": [
                "warm",
                "formal",
                "wary",
                "urgent",
                "dry"
              ],
              "type": "string"
            }
          },
          "required": [
            "seed",
            "npc_name",
            "player_name",
            "intent",
            "tone",
            "facts"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON