Generates a workflow through chat
Agent | Responsibility |
---|---|
Builder Agent | Creates the workflow via chat with a human or an AI. |
Maintenance Agent | Monitors live runs and repairs the workflow whenever the target site changes. |
Dimension | Runtime LLM at every step | CloudCruise compile‑once approach |
---|---|---|
Speed | Each action incurs network latency plus token inference time, leading to multi‑minute runs. | Graph executes at native browser speed; only API calls hit the network. |
Cost | Pay per token, per step—cost scales linearly with run length. | One‑time build tokens are amortized over thousands of executions; marginal cost is near‑zero. |
Reliability | High variance: LLM may hallucinate selectors or loop indefinitely; reproducibility is low. | Fully deterministic; every run follows the same graph. Maintenance Agent handles drift proactively. |