ToolAssay

Splits caller-supplied proposal text into sentences, scores each sentence by nor

Splits caller-supplied proposal text into sentences, scores each sentence by normalized non-stopword frequency, and returns the highest-scoring sentences in source order. It does not infer unstated intent, verify claims, or produce an abstractive interpretation.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1056 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://gov.halowerk.com/v1/proposal-summary

CategoryEverything else
Provider hostgov.halowerk.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days3 from 3 payers (the provider's figure, not ours)

Our checks, last 30 days

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

Example input (from the provider)

{
  "body": {
    "max_keywords": 6,
    "max_sentences": 2,
    "text": "The proposal funds three public-data audits. Each audit has a published budget and milestone. Delegates receive monthly progress reports. Unused funds return to the treasury."
  },
  "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": {
            "max_keywords": {
              "description": "Maximum number of frequency-ranked keywords.",
              "maximum": 30,
              "minimum": 1,
              "type": "integer"
            },
            "max_sentences": {
              "description": "Maximum number of source sentences to return.",
              "maximum": 10,
              "minimum": 1,
              "type": "integer"
            },
            "text": {
              "description": "Proposal text to summarize.",
              "maxLength": 50000,
              "minLength": 20,
              "type": "string"
            }
          },
          "required": [
            "text"
          ],
          "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