← Back to adopters
Adopter quickstart

LiteLLM proof path

Public waitlist preview for adopting Imladri with LiteLLM: initialize the adapter, wrap one risky capability, run the scanner or proof command from the repo, and review the same evidence in Profile when onboarding is active.

Certification status

Coming next

Coming next

Not present in the current SDK certification report.

Use generic wrapper coverage until a dedicated LiteLLM adapter lane exists.

Runtimepython
Public modeAccess preview
One-command starter
cli
imladri init --framework generic --ci-provider github
Package access
dependencies
pip install litellm
# Imladri SDK package access is provided during approved onboarding.
Minimal wrapper
python
from imladri import Imladri

imladri = Imladri.from_env()

@imladri.action("model.route", strict_preflight=True)
def route_model_call(payload):
    return litellm.completion(**payload)
Terminal proof evidence
terminal evidence
imladri scan --path . --fail-on new
imladri proof export --format json --output litellm-generic-proof.json