{
  "tool_id": "hallucination-detector",
  "slug": "hallucination-detector",
  "path": "/hallucination-detector/",
  "mode": "client_side",
  "usage": "Client-side analyzer. Open https://aifinhub.io/hallucination-detector/ and paste a source document + LLM output. Every numeric claim is cross-checked against the source in-browser.",
  "methodology": "https://aifinhub.io/methodology/hallucination-detector/",
  "sample_input": {
    "tool": "hallucination-detector",
    "source": "",
    "output": ""
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "source": {
        "type": "string"
      },
      "output": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "source",
      "output"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "numeric_claims": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "claim": {
              "type": "string"
            },
            "value": {
              "type": "number"
            },
            "supported": {
              "type": "boolean"
            },
            "source_quote": {
              "type": "string"
            }
          }
        }
      },
      "unsupported_fraction": {
        "type": "number"
      },
      "verdict": {
        "type": "string"
      }
    }
  }
}
