Cis the correct answer — in UiPath's Agentic Automation framework, theSystem Promptis acrucial configuration elementthat defines theagent’s identity, objectives, behavioral rules, and tool usage logic.
It typically includes:
Agent Role: e.g., “You are a procurement assistant”
Goals: “Classify, summarize, or validate supplier quotes”
Constraints: e.g., “Don’t exceed 100 words”, “Only use escalation when criteria X is met”
Tool Usage: “Use Slack tool to notify team if X occurs”
Escalation Logic: “Escalate to human if confidence is below threshold”
Context Integration: “Use grounded context from ECS Index when available”
This helps the LLM behaveconsistentlyandtransparently, even in unpredictable or complex workflows. It also acts as thestarting configurationfor the agent — informing every decision it makes during runtime.
Option A is incorrect — System Prompts are written innatural language, not code.
B is false — they allow fordynamic adaptation, especially when used with memory and tools.
D is incomplete — the system promptdoes covergoals, constraints, and sequencing of steps.
Bottom line: theSystem Prompt is the “brain” behind the agent, telling it what to do, how to do it, when to act, and when to escalate — all in anatural language-driven, declarative format.
Submit