Skip to main content
The editor validates your graph agent automatically before every save and on demand. Validation finds two categories of issues: errors that block saving and warnings that you can acknowledge and proceed.

Running validation

Click Validate in the toolbar to open the validation dialog. The toolbar button shows a badge with the error count if any errors exist.
Validation also runs automatically when you click Save. If there are errors, the save is blocked and an error toast describes the issue. Click Validate in the toolbar to open the full validation dialog and see all issues.

Errors (blocking)

Errors must be fixed before the agent can be saved.
ErrorWhat it meansHow to fix
No nodesThe graph is empty.Add at least one node.
Missing node IDA node has no ID.Open the node inspector and set an ID.
Duplicate node IDsTwo or more nodes share the same ID.Rename one so all IDs are unique.
No start nodeNo node is marked as the start node.Select a node and click Make start node.
Missing transition targetA transition points to a node ID that doesn’t exist.Delete the transition or rename the target node to match.
Unreachable toolA node references a function_call tool that isn’t defined in the agent’s tools config.Add the tool in the Tools tab or remove the function_call reference.
Bad transition parametersA transition’s parameters field has invalid structure.Edit the transition and fix the parameters JSON (must be {name: type} pairs).
Invalid condition typeA transition has an unrecognised condition_type.Check the trigger type selector; it must be Intent, Rule, or Always.
Invalid expression structureA Rule transition’s expression is malformed (missing logic, empty conditions).Open the edge inspector and ensure every condition row has a variable, operator, and value.
Invalid operatorA condition uses an operator not in the supported list.Select a valid operator from the dropdown.
Knowledge base with no vectorsA node has a knowledge base attached but no vector IDs selected.Open the node inspector and select at least one vector store, or remove the knowledge base.

Warnings (non-blocking)

Warnings don’t block saving. The validation dialog lets you proceed with warnings acknowledged.
WarningWhat it meansRecommendation
Unreachable nodeA node has no transitions pointing to it and is not the start node.Add a transition to it or delete it.
Empty LLM promptAn LLM node has no prompt text.Add a prompt so the LLM knows what to do on this node.
Static node without messageA static node has no spoken message configured.Open the node inspector and add a static message.
Empty intent conditionAn Intent transition has no condition text and no label, on a node with multiple outgoing edges.Add a condition describing when to take this transition.
Duplicate transition prioritiesTwo Rule or Always transitions on the same node have the same priority value.Set distinct priorities to make evaluation order explicit.

Click any issue row in the validation dialog. The dialog closes, the canvas scrolls to the affected node or transition, and the inspector opens on it. Fix the issue, then open validation again to re-check.

Saving with warnings

If your graph has warnings but no errors, you can save it. Saving with warnings proceeds immediately — no confirmation dialog is shown. A toast notification confirms the save completed. Warnings are guidance, not enforcement, and do not affect runtime behaviour.