Oracle Cloud Just Made LiteLLM a Native Provider for OCI Generative AI

작성자

카테고리:

← 피드로
DEV Community · Paul Twist · 2026-06-26 개발(SW)
Cover image for Oracle Cloud Just Made LiteLLM a Native Provider for OCI Generative AI

Paul Twist

Oracle Cloud announced this week that LiteLLM is now a first-class provider for Oracle Generative AI Infrastructure. Not a community plugin, not a third-party wrapper. Native support.

Original announcement from Oracle Cloud on LinkedIn

What this actually means

You can now route requests to models hosted on Oracle’s Generative AI Infrastructure through LiteLLM. The gateway handles OCI Signature v1 request signing and all the production controls you’d expect, budgets, rate limits, caching, guardrails.

The model catalog on OCI is broader than most people realize:

  • Meta Llama 4 (Maverick, Scout, 3.3, 3.2 vision)
  • xAI Grok (Grok 4, Grok 3, Grok Code)
  • Cohere Command (Command A, Command R+)
  • Cohere Embed (v4, v3)
  • Google Gemini (via OCI)
  • OpenAI models (via OCI)

So if you’re running on OCI already, you don’t need a separate model gateway. Point LiteLLM at your OCI tenancy and go.

Quick setup

model_list:
  - model_name: grok-4
    litellm_params:
      model: oci_genai/xai.grok-4
      oci_config_path: /path/to/oci/config

Enter fullscreen mode Exit fullscreen mode

import litellm

response = litellm.completion(
    model="oci_genai/xai.grok-4",
    messages=[{"role": "user", "content": "explain OCI networking"}]
)

Enter fullscreen mode Exit fullscreen mode

That’s it. LiteLLM handles the OCI auth signing, retries, and all gateway features automatically.

Why this matters

Oracle joining as a native provider brings LiteLLM’s supported provider count past 100. But the real value is for teams already on OCI. Instead of building custom integrations for each model family Oracle hosts, you get a single OpenAI-compatible API with full spend tracking and access controls.

The architecture is clean. Application code talks to LiteLLM, LiteLLM handles vendor adapters and request signing, Oracle handles inference. No middleware, no extra hops.

Full OCI provider docs

Oracle is the latest in a streak of cloud providers building native LiteLLM integrations. AWS did the same thing with Bedrock AgentCore earlier this month, and Cisco integrated AI Defense as a guardrail layer. The pattern is clear, these teams want a unified gateway that already has the enterprise controls built in, rather than building their own.

원문에서 계속 ↗

코멘트

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다