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

> Source: <https://dev.to/paultwist/oracle-cloud-just-made-litellm-a-native-provider-for-oci-generative-ai-2gel>
> Published: 2026-06-26 02:50:47+00:00

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](https://www.linkedin.com/feed/update/urn:li:share:7475899355359739905/)

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:

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

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

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

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

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.

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.
