CMDOP Verify

Evidence-aware reasoning.

A model that evaluates claims, gathers supporting and counter evidence, and produces verifiable, cited outputs — so agents can trust what they act on.

Capabilities

Claim evaluation

Assesses a statement and assigns a calibrated confidence.

Evidence gathering

Collects supporting and counter evidence, not just confirmation.

Source validation

Weighs source quality and surfaces contradictions.

Citation generation

Returns verdicts with the evidence trail attached.

OpenAI-compatible API

Call CMDOP Verify over a standard chat-completions surface. Illustrative — endpoint shown for reference.

bash
curl https://api.cmdop.com/v1/chat/completions \
  -H "Authorization: Bearer $CMDOP_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "cmdop/verify-v1",
    "messages": [
      { "role": "user", "content": "..." }
    ]
  }'