Skip to main content

Syntax

thinkV2(text, data)

Description

Restarts Flow execution with a simulated input using the provided text and data. Parameters:
  • text: string โ€” simulated input text.
  • data: Record<string, unknown> โ€” simulated input data.
Returns: void

Example

thinkV2("Check order status", {
  orderId: "A12345",
  customerType: "premium"
});