fix: Revert "feat(cli): Add deploy list and deploy delete subcommands" (#7116)

Reverts langchain-ai/langgraph#7106

This PR broke the `langgraph deploy` command flags.
This commit is contained in:
Andrew Nguonly
2026-03-11 10:56:31 -07:00
committed by GitHub
parent e77201cbb1
commit 7488cf2448
7 changed files with 32 additions and 543 deletions
-34
View File
@@ -1,5 +1,3 @@
from collections.abc import Sequence
import click
@@ -25,35 +23,3 @@ def warn_non_wolfi_distro(config_json: dict) -> None:
fg="yellow",
)
click.secho("") # Empty line for better readability
def _extract_deployment_url(deployment: dict[str, object]) -> str:
source_config = deployment.get("source_config")
if isinstance(source_config, dict):
custom_url = source_config.get("custom_url")
if isinstance(custom_url, str) and custom_url:
return custom_url
return "-"
def format_deployments_table(deployments: Sequence[dict[str, object]]) -> str:
headers = ("Deployment ID", "Deployment Name", "Deployment URL")
rows = [
(
str(deployment.get("id", "-") or "-"),
str(deployment.get("name", "-") or "-"),
_extract_deployment_url(deployment),
)
for deployment in deployments
]
widths = [
max(len(headers[index]), *(len(row[index]) for row in rows))
for index in range(len(headers))
]
def format_row(row: Sequence[str]) -> str:
return " ".join(value.ljust(widths[index]) for index, value in enumerate(row))
lines = [format_row(headers), format_row(tuple("-" * width for width in widths))]
lines.extend(format_row(row) for row in rows)
return "\n".join(lines)