-
Notifications
You must be signed in to change notification settings - Fork 0
CLI Reference
Juan Manuel Daza edited this page Jul 21, 2026
·
1 revision
rvrb-verify [OPTIONS] CLAIM_TEXT
| Argument | Required | Description |
|---|---|---|
CLAIM_TEXT |
Yes | The claim to verify |
| Flag | Short | Default | Description |
|---|---|---|---|
--strategy |
-s |
fact-check |
Verification strategy: fact-check, legal, research
|
--json |
False |
Output as JSON | |
--model |
-m |
None |
Model override (e.g., qwen3-coder-plus) |
--provider |
None |
Provider name: qwen, openai, local. Overrides N3RVERBERAGE_PROVIDER
|
|
--output |
-o |
None |
Write output to file instead of stdout |
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Error (missing API key, invalid strategy) |
| 2 | Verification failed (API error) |
rvrb-verify "The sky is blue"
# Output:
# Verdict: true
# Confidence: 95.0%
# Summary: The sky appears blue due to Rayleigh scattering...rvrb-verify "Python was created in 1991" --json
# Output:
# {
# "verdict": "true",
# "confidence": 0.98,
# "summary": "Python was indeed created by Guido van Rossum in 1991.",
# "evidence": [
# {
# "text": "Python was created in 1991 by Guido van Rossum.",
# "source": {"type": "web", "url": "https://python.org/history"}
# }
# ]
# }# Fact-check (general)
rvrb-verify "Water boils at 100°C" --strategy fact-check
# Legal analysis
rvrb-verify "GDPR requires consent for cookies" --strategy legal
# Academic research
rvrb-verify "Quantum computing breaks Moore's law" --strategy researchrvrb-verify "The Earth is round" --model qwen3.7-plusN3RVERBERAGE_PROVIDER=qwen rvrb-verify "Claim" --provider openairvrb-verify "The sky is blue" --output verdict.txt# Transcribe audio → verify claims
rvrb-transcribe meeting.mp3 | rvrb-verify
# Verify with JSON → extract confidence
rvrb-verify "Claim" --json | jq '.confidence'| Variable | Description |
|---|---|
DASHSCOPE_API_KEY |
Required for Qwen provider. Your Alibaba Cloud API key. |
OPENAI_API_KEY |
Required for OpenAI provider. Your OpenAI API key. |
N3RVERBERAGE_PROVIDER |
Default provider (overridden by --provider) |
N3RVERBERAGE_DEFAULT_MODEL |
Default model ID |
rvrb-verify — Part of the reverberage ecosystem.
Composable MCP-native toolkits for audio, video, and text.
- rvrb-transcriber — Audio/video transcription
- rvrb-verify — Claim verification
- rvrb-transform — Text transformation
- rvrb-hear — Audio comprehension
- rvrb-see — Image understanding
License: Apache-2.0