diff --git a/docs/my-website/docs/pass_through/anthropic_completion.md b/docs/my-website/docs/pass_through/anthropic_completion.md index 0c6a5f1b616..b64cd1ece1b 100644 --- a/docs/my-website/docs/pass_through/anthropic_completion.md +++ b/docs/my-website/docs/pass_through/anthropic_completion.md @@ -1,4 +1,4 @@ -# Anthropic `/v1/messages` +# Anthropic SDK Pass-through endpoints for Anthropic - call provider-specific endpoint, in native format (no translation). diff --git a/docs/my-website/docs/pass_through/cohere.md b/docs/my-website/docs/pass_through/cohere.md index 715afc1edba..64edf18b259 100644 --- a/docs/my-website/docs/pass_through/cohere.md +++ b/docs/my-website/docs/pass_through/cohere.md @@ -1,4 +1,4 @@ -# Cohere API +# Cohere SDK Pass-through endpoints for Cohere - call provider-specific endpoint, in native format (no translation). diff --git a/docs/my-website/docs/pass_through/google_ai_studio.md b/docs/my-website/docs/pass_through/google_ai_studio.md index 34fba97a46e..cc7f9ce7109 100644 --- a/docs/my-website/docs/pass_through/google_ai_studio.md +++ b/docs/my-website/docs/pass_through/google_ai_studio.md @@ -1,4 +1,4 @@ -# Google AI Studio +# Google AI Studio SDK Pass-through endpoints for Google AI Studio - call provider-specific endpoint, in native format (no translation). diff --git a/docs/my-website/docs/pass_through/langfuse.md b/docs/my-website/docs/pass_through/langfuse.md index 68d9903e6ab..7b95751b679 100644 --- a/docs/my-website/docs/pass_through/langfuse.md +++ b/docs/my-website/docs/pass_through/langfuse.md @@ -1,4 +1,4 @@ -# Langfuse Endpoints +# Langfuse SDK Pass-through endpoints for Langfuse - call langfuse endpoints with LiteLLM Virtual Key. diff --git a/docs/my-website/docs/pass_through/vertex_ai.md b/docs/my-website/docs/pass_through/vertex_ai.md index 1bf55582301..07b0beb754b 100644 --- a/docs/my-website/docs/pass_through/vertex_ai.md +++ b/docs/my-website/docs/pass_through/vertex_ai.md @@ -2,7 +2,7 @@ import Image from '@theme/IdealImage'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -# [BETA] Vertex AI Endpoints +# Vertex AI SDK Use VertexAI SDK to call endpoints on LiteLLM Gateway (native provider format) diff --git a/docs/my-website/docs/proxy/pass_through.md b/docs/my-website/docs/proxy/pass_through.md index bad23f0de0a..7ae8ba7c98c 100644 --- a/docs/my-website/docs/proxy/pass_through.md +++ b/docs/my-website/docs/proxy/pass_through.md @@ -1,6 +1,6 @@ import Image from '@theme/IdealImage'; -# ➡️ Create Pass Through Endpoints +# Create Pass Through Endpoints Add pass through routes to LiteLLM Proxy diff --git a/docs/my-website/docusaurus.config.js b/docs/my-website/docusaurus.config.js index 7dc9c487f13..73d500b14c4 100644 --- a/docs/my-website/docusaurus.config.js +++ b/docs/my-website/docusaurus.config.js @@ -113,7 +113,7 @@ const config = { { sidebarId: 'tutorialSidebar', position: 'left', - label: '🚀 Hosted', + label: 'Hosted', to: "docs/hosted" }, { diff --git a/docs/my-website/sidebars.js b/docs/my-website/sidebars.js index 7cec9eadf7f..26bfa8dc92f 100644 --- a/docs/my-website/sidebars.js +++ b/docs/my-website/sidebars.js @@ -40,6 +40,7 @@ const sidebars = { "proxy/model_management", "proxy/health", "proxy/debugging", + "proxy/pass_through", ], }, "proxy/demo", @@ -50,13 +51,24 @@ const sidebars = { }, { type: "link", - label: "📖 All Endpoints (Swagger)", + label: "All Endpoints (Swagger)", href: "https://litellm-api.up.railway.app/", }, "proxy/enterprise", - "proxy/user_keys", - "proxy/response_headers", - "proxy/reliability", + { + type: "category", + label: "Making LLM Requests", + items: [ + "proxy/user_keys", + "proxy/response_headers", + "pass_through/vertex_ai", + "pass_through/google_ai_studio", + "pass_through/cohere", + "pass_through/anthropic_completion", + "pass_through/bedrock", + "pass_through/langfuse" + ], + }, { type: "category", label: "Authentication", @@ -70,28 +82,6 @@ const sidebars = { "proxy/multiple_admins", ], }, - { - type: "category", - label: "Spend Tracking + Budgets", - items: ["proxy/cost_tracking", "proxy/users", "proxy/custom_pricing", "proxy/team_budgets", "proxy/billing", "proxy/customers"], - }, - { - type: "category", - label: "Routing", - items: ["proxy/load_balancing", "proxy/tag_routing", "proxy/team_based_routing", "proxy/customer_routing",], - }, - { - type: "category", - label: "Pass-through Endpoints (Provider-specific)", - items: [ - "pass_through/vertex_ai", - "pass_through/google_ai_studio", - "pass_through/cohere", - "pass_through/anthropic_completion", - "pass_through/bedrock", - "pass_through/langfuse" - ], - }, { type: "category", label: "Admin UI", @@ -103,7 +93,18 @@ const sidebars = { }, { type: "category", - label: "🪢 Logging, Alerting, Metrics", + label: "Spend Tracking + Budgets", + items: ["proxy/cost_tracking", "proxy/users", "proxy/custom_pricing", "proxy/team_budgets", "proxy/billing", "proxy/customers"], + }, + "proxy/reliability", + { + type: "category", + label: "Routing", + items: ["proxy/load_balancing", "proxy/tag_routing", "proxy/team_based_routing", "proxy/customer_routing",], + }, + { + type: "category", + label: "Logging, Alerting, Metrics", items: ["proxy/logging", "proxy/bucket", "proxy/team_logging","proxy/streaming_logging", "proxy/alerting", "proxy/prometheus",], }, { @@ -123,14 +124,13 @@ const sidebars = { }, { type: "category", - label: "Secret Manager - storing LLM API Keys", + label: "Secret Managers", items: [ "secret", "oidc" ] }, "proxy/caching", - "proxy/pass_through", "proxy/call_hooks", "proxy/rules", ] @@ -233,7 +233,7 @@ const sidebars = { }, { type: "category", - label: "Supported Endpoints - /images, /audio/speech, /assistants etc", + label: "Supported Endpoints", items: [ "embedding/supported_embedding", "image_generation", @@ -251,8 +251,11 @@ const sidebars = { }, ], }, - "routing", - "scheduler", + { + type: "category", + label: "Load Balancing", + items: ["routing", "scheduler"], + }, { type: "category", label: "LiteLLM Python SDK",