Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private String buildTargetAgentsInstructions(LlmAgent agent, List<BaseAgent> tra
"If another agent is better for answering the question according to its description, call"
+ " `transferToAgent` function to transfer the question to that agent. When"
+ " transferring, do not generate any text other than the function call.\n");
if (agent.parentAgent() != null) {
if (agent.parentAgent() != null && !agent.disallowTransferToParent()) {
sb.append("Your parent agent is ");
sb.append(agent.parentAgent().name());
sb.append(
Expand Down