diff --git a/changelog.md b/changelog.md index 99814d30..104ae7af 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,12 @@ +## 5.3.4 - 2026-07-31 + +Corrects the deploy message. No API changes. + +* **CLI** (`smallestai agent-crew deploy`): drop the "first call can be silent, try + again" line from the post-deploy message. The crew is engaged at call time on the + current platform, so that guidance was misleading. The message now just says to + wait for the build to show Live before the first call. + ## 5.3.3 - 2026-07-30 CLI deploy now reports real build status, and a hand-written README. No API changes. diff --git a/pyproject.toml b/pyproject.toml index 74f26e4f..35044108 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ dynamic = ["version"] [tool.poetry] name = "smallestai" -version = "5.3.3" +version = "5.3.4" description = "" readme = "README.md" authors = [] diff --git a/src/smallestai/cli/agent_crew.py b/src/smallestai/cli/agent_crew.py index 86f1bd18..d5ad60db 100644 --- a/src/smallestai/cli/agent_crew.py +++ b/src/smallestai/cli/agent_crew.py @@ -240,9 +240,8 @@ async def async_deploy(directory: str, entry_point: str): console.print(f"[dim]Build ID: {result.build_id}[/dim]") # Poll the build to a terminal state instead of returning at "queued". - # The build has to reach SUCCEEDED before you can Make Live, and a - # freshly-live crew pod can need a moment to warm up before it serves - # the first call. Surfacing the real status here saves guessing. + # The build has to reach SUCCEEDED before you can Make Live, so + # surfacing the real status here saves guessing. console.print("[yellow]Building (this usually takes 1-2 min)...[/yellow]") terminal = {"SUCCEEDED", "BUILD_FAILED", "DEPLOY_FAILED", "FAILED"} last = None @@ -267,10 +266,8 @@ async def async_deploy(directory: str, entry_point: str): if status == "SUCCEEDED": console.print("[bold green]✓ Build succeeded.[/bold green]") console.print( - "[dim]Next: `smallestai agent-crew builds` -> Make Live. " - "The first call right after Make Live can take a few seconds " - "while the pod warms up; if it's silent, give it a moment and " - "try again.[/dim]" + "[dim]Next: `smallestai agent-crew builds` -> Make Live, then " + "wait for it to show Live before placing your first call.[/dim]" ) elif status in terminal: console.print(