~Hello guys, Is this possible to add some command...
# plugins-integrations
a
~Hello guys, Is this possible to add some command to click cli ? I want to add --tags to kedro-vertexai command line... Thanks for answers !~
d
Answer is yes. Did you figure it out?
a
No ^^ If you have the solution you are my savior !
d
Give me a minute to find a link
a
Thanks !
d
For Kedro core: https://docs.kedro.org/en/stable/development/commands_reference.html#customise-or-override-project-specific-kedro-commands For plugins it's similar. They essentially add command groups, and you can extend them.
a
Mmmh even if i have to modify a class from vertexai kedro lib ? https://github.com/getindata/kedro-vertexai/blob/develop/kedro_vertexai/generator.py
d
https://github.com/getindata/kedro-vertexai/blob/develop/kedro_vertexai/cli.py To add a command, you should import the
vertexai_group
from here, and attach commands.
a
Ok thanks ! I'll keep you update
if i succed