Oracle/Mistral Large

Mistral Large

Healthy
mistral-large-latest
Region
eu-west-1
Uptime (24h)
99.50%
p50 latency
420ms
p99 latency
1800ms
Error rate
0.50%
Cost / 1k tokens
$0.0040
Latency (24h)
p50p95p99
01025204901:1304:1307:1310:13
p99
p95
p50
last 12h (UTC)
Failure breakdown
429Rate limited
65%
503Service unavailable
25%
timeoutTimeout
10%
SDK usageFull docs →
import { OracleClient } from "@inferenceflow/oracle";

const oracle = new OracleClient({ apiKey: process.env.ORACLE_API_KEY });

// One-shot health check before spending
const health = await oracle.check("mistral-large");

if (health.state === "green") {
  // Safe to call — circuit breaker is closed
  await callProvider("mistral-large", prompt);
} else {
  // Fall back to next healthy provider
  const alt = await oracle.nextHealthy({ exclude: ["mistral-large"] });
  await callProvider(alt.id, prompt);
}