CMDOP Agent

Built for software, not conversations.

A general-purpose model tuned for tool use, planning, and long-running agent workflows — the universal foundation of the family.

Capabilities

Tool calling

Reliable function calling with strict, schema-valid arguments.

Planning & orchestration

Decomposes goals into steps and coordinates multi-tool execution.

Structured outputs

Deterministic JSON and typed responses for downstream systems.

Long-running workflows

Holds context across extended, stateful agent runs.

OpenAI-compatible API

Call CMDOP Agent 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/agent-v1",
    "messages": [
      { "role": "user", "content": "..." }
    ]
  }'