from nullspace import TemplateBuildbuild = TemplateBuild.connect("tb_...")status = build.get_status(offset=0)for entry in status.entries: print(entry.kind, entry.message)print(status.next_offset)
The TypeScript SDK builds synchronously and streams logs via onLogEntry; it
does not reconnect to background builds. Use the Python SDK, CLI, or HTTP API.
Save status.next_offset after each poll and pass it to the next
get_status() or wait_until_terminal() call to fetch only new entries.