AI Agent Node

The AI Agent node calls a configured agent instance and appends the response into workflow data.


Configuration

  • Agent ID: Select the registered agent instance.
  • Input Key: Path to input data to pass to the agent.
  • Statement / Prompt: Prompt template with data interpolation.
  • Output Key: Path to store returned response.

Best Practices

  • Keep prompts deterministic for production behavior.
  • Add guard logic before sending very large payloads.
  • Store response under a stable output path for downstream nodes.
  • Log agent latency and fallback path on timeouts.

Related Pages