Oracle/Gemini 1.5 Pro

Gemini 1.5 Pro

Down
gemini-1.5-pro-latest
Region
us-central1
Circuit breaker OPEN. Spend gate is blocked. Agents consuming this oracle feed will skip this provider until the state recovers.
Uptime (24h)
82.40%
p50 latency
p99 latency
Error rate
17.60%
Cost / 1k tokens
$0.0035
Latency (24h)
p50p95p99
051001:1304:1307:1310:13
p99
p95
p50
last 12h (UTC)
Failure breakdown
503Service unavailable
88%
500Internal error
12%
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("google-gemini15");

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