Skip to content

Commit

Permalink
Added config debugging print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
estohlmann committed Dec 19, 2024
1 parent b8d4994 commit bff8388
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/serve/rest-api/src/utils/generate_litellm_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit bff8388

Please sign in to comment.