Skip to content

Commit

Permalink
Update - add variant config command to cli
Browse files Browse the repository at this point in the history
  • Loading branch information
aybruhm committed Nov 27, 2023
1 parent fcba6cf commit 5208c79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion agenta-cli/agenta/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
import questionary
import toml

from agenta.cli import helper
from agenta.client import client
from agenta.cli import variant_configs
from agenta.cli import variant_commands
from agenta.cli import helper


def print_version(ctx, param, value):
Expand Down Expand Up @@ -192,6 +193,7 @@ def init(app_name: str):

# Add the commands to the CLI group
cli.add_command(init)
cli.add_command(variant_configs.config)
cli.add_command(variant_commands.variant)

if __name__ == "__main__":
Expand Down

0 comments on commit 5208c79

Please sign in to comment.