# Dynamic button options
from kapso.builder.flows.nodes.send_interactive import InteractiveButton
interactive = SendInteractiveNode(
id="product_options",
header_text="Product Categories",
body_text=AIField(prompt=
"Generate engaging body text about our {{featured_category}} products"
),
buttons=[
InteractiveButton(
id="option_1",
title=AIField(prompt="Generate button text for {{category_1}}")
),
InteractiveButton(
id="option_2",
title=AIField(prompt="Generate button text for {{category_2}}")
)
],
provider_model_name="claude-3-5-sonnet"
)