From bff8388c5edcaf03c023cb3fe0bcaf6c9d7e78ae Mon Sep 17 00:00:00 2001 From: Evan Stohlmann Date: Thu, 19 Dec 2024 15:02:51 -0700 Subject: [PATCH] Added config debugging print statement --- lib/serve/rest-api/src/utils/generate_litellm_config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/serve/rest-api/src/utils/generate_litellm_config.py b/lib/serve/rest-api/src/utils/generate_litellm_config.py index 5bac7f4..95defdc 100644 --- a/lib/serve/rest-api/src/utils/generate_litellm_config.py +++ b/lib/serve/rest-api/src/utils/generate_litellm_config.py @@ -80,6 +80,8 @@ def generate_config(filepath: str) -> None: } ) + print(f"Generated config_contents file: \n{json.dumps(config_contents, indent=2)}") + # Write updated config back to original path with open(filepath, "w") as fp: yaml.safe_dump(config_contents, fp)