Skip to content

Commit b0dfe1a

Browse files
committed
.
1 parent bc052f6 commit b0dfe1a

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

src/agentex/lib/cli/commands/agents.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -340,15 +340,11 @@ def deploy(
340340
help="Environment name (dev, prod, etc.) - must be defined in environments.yaml. If not provided, the namespace must be set explicitly.",
341341
),
342342
tag: str | None = typer.Option(None, help="Override the image tag for deployment"),
343-
repository: str | None = typer.Option(
344-
None, help="Override the repository for deployment"
345-
),
343+
repository: str | None = typer.Option(None, help="Override the repository for deployment"),
346344
use_latest_chart: bool = typer.Option(
347345
False, "--use-latest-chart", help="Fetch and use the latest Helm chart version from OCI registry"
348346
),
349-
interactive: bool = typer.Option(
350-
True, "--interactive/--no-interactive", help="Enable interactive prompts"
351-
),
347+
interactive: bool = typer.Option(True, "--interactive/--no-interactive", help="Enable interactive prompts"),
352348
):
353349
"""Deploy an agent to a Kubernetes cluster using Helm"""
354350

src/agentex/lib/sdk/config/environment_config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,7 @@ class AgentEnvironmentConfig(BaseModel):
7979
description="Helm chart version to deploy. If not set, uses the default version from the CLI."
8080
)
8181
helm_overrides: Dict[str, Any] = Field(
82-
default_factory=dict,
83-
description="Helm chart value overrides for environment-specific tuning"
82+
default_factory=dict, description="Helm chart value overrides for environment-specific tuning"
8483
)
8584

8685
def uses_oci_registry(self) -> bool:

0 commit comments

Comments
 (0)