diff --git a/docs/my-website/docs/proxy/enterprise.md b/docs/my-website/docs/proxy/enterprise.md index 1831164be..315afe65a 100644 --- a/docs/my-website/docs/proxy/enterprise.md +++ b/docs/my-website/docs/proxy/enterprise.md @@ -1,3 +1,4 @@ +import Image from '@theme/IdealImage'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; @@ -20,6 +21,7 @@ Features: - ✅ Reject calls (incoming / outgoing) with Banned Keywords (e.g. competitors) - ✅ Don't log/store specific requests to Langfuse, Sentry, etc. (eg confidential LLM requests) - ✅ Tracking Spend for Custom Tags +- ✅ Custom Branding + Routes on Swagger Docs @@ -526,4 +528,36 @@ curl -X GET "http://0.0.0.0:4000/spend/tags" \ \ No newline at end of file +## Tracking Spend per User --> + +## Swagger Docs - Custom Routes + Branding + +:::info + +Requires a LiteLLM Enterprise key to use. Request one [here](https://calendly.com/d/4mp-gd3-k5k/litellm-1-1-onboarding-chat) + +::: + +Set LiteLLM Key in your environment + +```bash +LITELLM_LICENSE="" +``` + +### Customize Title + Description + +```bash +DOCS_TITLE="TotalGPT" +DOCS_DESCRIPTION="Sample Company Description" +``` + +### Customize Routes + +Hide admin routes from users. + + +```bash +DOCS_FILTERED="True" # only shows openai routes to user +``` + + \ No newline at end of file diff --git a/docs/my-website/img/custom_swagger.png b/docs/my-website/img/custom_swagger.png new file mode 100644 index 000000000..e17c0882b Binary files /dev/null and b/docs/my-website/img/custom_swagger.png differ