diff --git a/docs/my-website/docs/secret.md b/docs/my-website/docs/secret.md index c44f2cd10c..c2b6774c0b 100644 --- a/docs/my-website/docs/secret.md +++ b/docs/my-website/docs/secret.md @@ -61,7 +61,7 @@ litellm --config /path/to/config.yaml ``` ## Azure Key Vault - + ### Usage with LiteLLM Proxy Server @@ -160,29 +160,6 @@ $ litellm --test [Quick Test Proxy](./proxy/quick_start#using-litellm-proxy---curl-request-openai-package-langchain-langchain-js) - -## Infisical Secret Manager -Integrates with [Infisical's Secret Manager](https://infisical.com/) for secure storage and retrieval of API keys and sensitive data. - -### Usage -liteLLM manages reading in your LLM API secrets/env variables from Infisical for you - -```python -import litellm -from infisical import InfisicalClient - -litellm.secret_manager = InfisicalClient(token="your-token") - -messages = [ - {"role": "system", "content": "You are a helpful assistant."}, - {"role": "user", "content": "What's the weather like today?"}, -] - -response = litellm.completion(model="gpt-3.5-turbo", messages=messages) - -print(response) -``` - - + diff --git a/docs/my-website/sidebars.js b/docs/my-website/sidebars.js index e57f340c70..27084f3b45 100644 --- a/docs/my-website/sidebars.js +++ b/docs/my-website/sidebars.js @@ -50,6 +50,14 @@ const sidebars = { label: "🪢 Logging", items: ["proxy/logging", "proxy/bucket", "proxy/streaming_logging"], }, + { + type: "category", + label: "Secret Manager - storing LLM API Keys", + items: [ + "secret", + "oidc" + ] + }, "proxy/team_logging", "proxy/guardrails", "proxy/tag_routing", @@ -184,14 +192,6 @@ const sidebars = { "anthropic_completion" ], }, - { - type: "category", - label: "Secret Manager", - items: [ - "secret", - "oidc" - ] - }, { type: "category", label: "🚅 LiteLLM Python SDK",