About bindings config in `use-package!`

I’ve some package config in config.el like below:

(use-package! ellama
  :bind ("C-c l" . ellama-transient-main-menu)
  :init
  ...
)

It works well, except one thing: the label in the global transient menu: Screenshot 2025-03-08 at 14.01.59

I want to display correct label (e.g. ‘ellama’) for the key stroke l in the above UI. What is the right way to do that?