docs/ai_builder/features/knowledge.md
The Knowledge feature lets you add context or rules that the AI Builder can reference when generating apps. This ensures your apps follow your guidelines, standards, or specific business logic.
import reflex as rx
def render_image():
return rx.el.div(
rx.image(
src="https://web.reflex-assets.dev/ai_builder/features/knowledge_light.avif",
class_name="rounded-md h-auto",
border=f"0.81px solid {rx.color('slate', 5)}",
),
class_name="w-full flex flex-col rounded-md",
)
rx.el.div(render_image())
Knowledge tab.Maintain Consistency Ensure all generated apps follow your company’s design or naming standards.
Enforce Business Logic Guide the AI Builder to follow specific workflows, validations, or feature requirements.
Quickly Adapt AI Behavior Add or update rules to influence new app generations without manual edits.