genkitx-temporal
    Preparing search index...

    Function runGenkitFlowActivity

    • Generic Temporal Activity that runs a previously-registered Genkit flow by name and returns its output. The flow body executes inside the Activity worker (NOT the Workflow sandbox), so it may freely make non-deterministic calls such as LLM requests, HTTP fetches, DB queries, etc.

      Parameters

      • input: { flowName: string; input: unknown }
        • flowName: string
        • input: unknown

          JSON-serializable input forwarded to the flow. The flow's own zod schema (if any) validates it.

      Returns Promise<unknown>