What it accepts
- text
Clervo routing profile
Stable Clervo service alias for clervo/gpt-5.6-terra. Canonical requests are never silently substituted.
clervo/smartThis is a stable Clervo routing profile, not a proprietary model. It currently resolves to Gpt 5.6 Terra with medium reasoning effort.
Current contract
/v1/ai/execute
Replay-safe with the original idempotency key.
Published pricing
Billing mode: metered. Payment: x402 or mpp. For a paid call, inspect the exact request-bound challenge before authorizing it. Internal serving suppliers are not publicly disclosed.
B11 TypeScript client
import { ClervoClient } from '@clervo/sdk';
const clervo = new ClervoClient();
const result = await clervo.ai.execute({
model: 'clervo/smart',
input: {
kind: 'chat',
messages: [{ role: 'user', content: 'Return one useful, bounded result.' }],
responseFormat: 'text',
stream: false,
},
maximumOutputTokens: 256
}, { idempotencyKey: 'stable-request-0001' });Automatic payment remains off unless explicitly enabled. Reuse the same idempotency key to recover or replay; reconcile unknown settlement before retrying.
Related inventory