From a6dae294cd2bf6d7e12f11c0f63b8cfd7f71f416 Mon Sep 17 00:00:00 2001 From: Matthew Kusz <49197515+matthew-kusz@users.noreply.github.com> Date: Mon, 8 Jun 2026 14:57:31 -0400 Subject: [PATCH] Fix incorrect filename in custom_prompt_management.md --- docs/proxy/custom_prompt_management.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/proxy/custom_prompt_management.md b/docs/proxy/custom_prompt_management.md index f82e7fb68..dd99e2e6e 100644 --- a/docs/proxy/custom_prompt_management.md +++ b/docs/proxy/custom_prompt_management.md @@ -83,7 +83,7 @@ litellm_settings: -Mount your `custom_logger.py` on the LiteLLM Docker container. +Mount your `custom_prompt.py` on the LiteLLM Docker container. ```shell docker run -d \ @@ -91,7 +91,7 @@ docker run -d \ -e OPENAI_API_KEY=$OPENAI_API_KEY \ --name my-app \ -v $(pwd)/my_config.yaml:/app/config.yaml \ - -v $(pwd)/custom_logger.py:/app/custom_logger.py \ + -v $(pwd)/custom_prompt.py:/app/custom_prompt.py \ my-app:latest \ --config /app/config.yaml \ --port 4000 \