Skip to main content

Verification de Faits

Verifies a claim against the workspace knowledge sources. Returns a verdict (verified/unverified) with a confidence score and sources.

Parameters

ParameterTypeRequiredVariableDescription
inputdynamic valueYesYesClaims or text to verify. The system automatically decomposes into individual assertions.
sources.useKnowledgeGraphbooleanNoNoQuery the Knowledge Graph to verify claims (entity existence, relations, properties). (Default: true)
sources.useWebSearchbooleanNoNoUse web search to verify claims (requires a SerpAPI API key). (Default: false)
sources.customSourcesdynamic valueNoYesCustom verification sources (documents, reference texts).
entityTypeFilterarrayNoNoLimit verification to specified entity types (e.g. Client, Project).
confidenceThresholdnumberNoNoMinimum confidence threshold (0 to 1) to consider a claim as verified. (Default: 0.7, min 0, max 1)
includeReasoningbooleanNoNoInclude detailed reasoning for each verified or rejected assertion. (Default: true)
onUnverifiedchoice (flag, reject, warn)NoNoAction on unverified claims: flag, reject, or warn. (Default: "flag")
model.providertextNoNoLanguage model provider for claim analysis.
model.modeltextNoNoModel identifier to use (e.g. gpt-4o).
parameters.temperaturenumberNoNoModel creativity. Low value recommended for verification. (Default: 0.2, min 0, max 2)
parameters.maxTokensnumberNoNoMaximum number of tokens in the verification response. (Default: 4096, min 1, max 128000)
outputVariabletextNoNoOutput variable name containing the verification results.
violationsVariabletextNoNoVariable name storing the unverified claims.

Parameters marked Variable = Yes accept the {{blockName.field}} syntax.

Output

Output variable : verificationResult

{
"verified": false,
"confidence": 0,
"sources": []
}

Example

Verify a business claim.

Input :

{"claim": "Le fournisseur Acme a un taux de livraison de 98%"}

Output :

{"verified": true, "confidence": 0.87, "sources": [{"id": "doc-1", "title": "Rapport fournisseurs 2025"}]}
Tip

{{verificationResult.verified}} is the boolean verdict. {{verificationResult.sources}} lists the documents used for verification.