●CMDOP Scout
Research, not just retrieval.
A model that searches, aggregates, deduplicates, and ranks sources — building an investigation rather than answering a single question.
Capabilities
Search & discovery
Finds relevant sources across the open web and structured data.
Aggregation & dedup
Merges overlapping results into a clean, non-redundant view.
Source ranking
Orders findings by relevance and credibility.
Contradiction detection
Flags where sources disagree, instead of papering over it.
OpenAI-compatible API
Call CMDOP Scout 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/scout-v1",
"messages": [
{ "role": "user", "content": "..." }
]
}'