Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dynamic = ["version"]

[tool.poetry]
name = "smallestai"
version = "5.3.3"
version = "5.3.4"
description = ""
readme = "README.md"
authors = []
Expand Down
11 changes: 4 additions & 7 deletions src/smallestai/cli/agent_crew.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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(
Expand Down
Loading