diff --git a/docs/my-website/docs/proxy/virtual_keys.md b/docs/my-website/docs/proxy/virtual_keys.md index e84b3c16f..589e3fec5 100644 --- a/docs/my-website/docs/proxy/virtual_keys.md +++ b/docs/my-website/docs/proxy/virtual_keys.md @@ -737,42 +737,4 @@ litellm_settings: general_settings: custom_key_generate: custom_auth.custom_generate_key_fn -``` - - - - -### [BETA] Dynamo DB - -#### Step 1. Save keys to env - -```shell -AWS_ACCESS_KEY_ID = "your-aws-access-key-id" -AWS_SECRET_ACCESS_KEY = "your-aws-secret-access-key" -``` - -#### Step 2. Add details to config - -```yaml -general_settings: - master_key: sk-1234 - database_type: "dynamo_db" - database_args: { # 👈 all args - https://github.com/BerriAI/litellm/blob/befbcbb7ac8f59835ce47415c128decf37aac328/litellm/proxy/_types.py#L190 - "billing_mode": "PAY_PER_REQUEST", - "region_name": "us-west-2" - "user_table_name": "your-user-table", - "key_table_name": "your-token-table", - "config_table_name": "your-config-table", - "aws_role_name": "your-aws_role_name", - "aws_session_name": "your-aws_session_name", - } -``` - -#### Step 3. Generate Key - -```bash -curl --location 'http://0.0.0.0:4000/key/generate' \ ---header 'Authorization: Bearer sk-1234' \ ---header 'Content-Type: application/json' \ ---data '{"models": ["azure-models"], "aliases": {"mistral-7b": "gpt-3.5-turbo"}, "duration": null}' ``` \ No newline at end of file