mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-05 08:07:05 +00:00
|
|
||
|---|---|---|
| .. | ||
| adopters.json | ||
| index.js | ||
| README.md | ||
LiteLLM Adopters
This directory contains data for organizations that use LiteLLM in production.
Adding Your Organization
We've made it super easy to add your organization! Just follow the steps below.
Quick Add (Recommended)
Edit adopters.json on GitHub →
This will open the GitHub editor in your browser where you can:
- Add your organization's entry to the JSON array
- Commit your changes
- GitHub will automatically create a pull request for you!
No need to clone the repository or set up a development environment.
JSON Format
Add your organization to the array in adopters.json:
{
"name": "Your Organization Name",
"logoUrl": "https://yoursite.com/logo.svg",
"url": "https://yourcompany.com",
"description": "Brief description of how you use LiteLLM (shown on hover)"
}
Fields
name(required): Your organization's display namelogoUrl(required): URL to your logo - can be either:- External URL:
https://yoursite.com/logo.svg(easiest!) - Local path:
/img/adopters/your-logo.svg(requires uploading logo file)
- External URL:
url(optional): Your organization's website (makes the logo clickable)description(optional): Brief description shown when users hover over your logo
Logo Options
Option 1: External URL (Easiest)
Simply provide a direct link to your logo hosted anywhere:
"logoUrl": "https://yourcompany.com/assets/logo.svg"
Option 2: Local Logo (Better Performance)
If you prefer to host the logo locally:
- Add your logo to
docs/my-website/static/img/adopters/your-company.svg - Reference it as:
"logoUrl": "/img/adopters/your-company.svg"
Logo Specifications:
- Format: SVG preferred (PNG also acceptable)
- Dimensions: 240x160px or similar 3:2 ratio recommended
- Background: Transparent or white background works best
Example
{
"name": "Acme Corporation",
"logoUrl": "https://acme.com/logo.svg",
"url": "https://acme.com",
"description": "Using LiteLLM to route requests across 50+ LLM providers"
}
Display Order
Adopters are displayed alphabetically by organization name, so your position will be determined automatically.
Need Help?
If you have questions about adding your organization:
- Ask in GitHub Discussions
- Join our Discord community
Thank you for supporting LiteLLM! 🚅