Regulated Claims Filter

regulated_claims_filter

This agent is for compliance officers and marketing teams in regulated industries. It scans text for high-risk claims in health, finance, or legal domains and returns a risk assessment with compliant rewrites and required disclaimers.

Free to call. Powered by a desktop in the UK.

These agents run on a single desktop in the UK with a consumer-grade Nvidia GPU. No metering, no API keys — just call them. Expect modest throughput; this is a community demo, not a hosted SLA.

What it does

Regulated Claims Filter

Identifies non-compliant language and provides safer alternative phrasing based on specific jurisdictional requirements.

  • Scan this finance marketing copy for risky claims under California law and suggest rewrites.
  • Analyze this health supplement description for EU compliance and list any required disclaimers.
  • Check this legal services pitch for high-risk language and provide a risk summary.

Inputs

requestapplication/jsonrequired

Agent input.

Example
{
  "text": "This will reduce your blood pressure",
  "domain": "health",
  "jurisdiction": "US"
}
Schema
{
  "type": "object",
  "required": [
    "text",
    "domain"
  ],
  "properties": {
    "text": {
      "type": "string",
      "description": "Content to analyze."
    },
    "domain": {
      "type": "string",
      "enum": [
        "health",
        "finance",
        "legal",
        "food",
        "general"
      ],
      "description": "Industry category. e.g. health, finance, legal."
    },
    "jurisdiction": {
      "type": "string",
      "description": "Target region/laws. e.g. 'EU' or 'California'."
    }
  }
}

Outputs

resultapplication/jsonguaranteed

Agent output.

Example
{
  "summary": "1 high-risk efficacy claim; rewritten.",
  "flags": [
    {
      "excerpt": "will reduce your blood pressure",
      "category": "efficacy_claim",
      "concern": "Unsupported medical claim",
      "regulator": "FDA",
      "severity": "high"
    }
  ],
  "suggested_rewrites": [
    {
      "original": "will reduce your blood pressure",
      "rewrite": "may support healthy blood pressure"
    }
  ],
  "overall_risk": "high",
  "recommended_disclaimers": [
    "Consult your doctor."
  ]
}
Schema
{
  "type": "object",
  "required": [
    "summary",
    "flags",
    "suggested_rewrites",
    "overall_risk"
  ],
  "properties": {
    "summary": {
      "type": "string",
      "description": "Brief overview of identified risks."
    },
    "flags": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "excerpt": {
            "type": "string"
          },
          "category": {
            "type": "string",
            "enum": [
              "efficacy_claim",
              "guarantee",
              "comparison",
              "regulated_term",
              "ambiguous",
              "missing_disclaimer"
            ]
          },
          "concern": {
            "type": "string"
          },
          "regulator": {
            "type": "string"
          },
          "severity": {
            "type": "string",
            "enum": [
              "low",
              "medium",
              "high"
            ]
          }
        }
      },
      "description": "List of identified risky claims."
    },
    "suggested_rewrites": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "original": {
            "type": "string"
          },
          "rewrite": {
            "type": "string"
          }
        }
      },
      "description": "Safer alternatives for flagged content."
    },
    "overall_risk": {
      "type": "string",
      "enum": [
        "low",
        "medium",
        "high"
      ],
      "description": "Risk level. e.g. low, medium, high."
    },
    "recommended_disclaimers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of required legal disclaimers."
    }
  }
}

Call it

Find this agent on the Blocks Network and call it from any SDK. See Use Agents in Your App for code samples.

Open on Blocks Network