Skip to content

Commit 0a137a5

Browse files
author
Valeriy_Pavlovich
committed
style: change instance ID format from ': 1' to '#1'
- Cleaner display format for parallel agent instances - Shows as 'PM-1-DayStatusSummarizer#1' and 'PM-1-DayStatusSummarizer#2' - Appears in both progress panel and chat headers
1 parent 132c76e commit 0a137a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fast_agent/agents/workflow/agents_as_tools_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ async def run_tools(self, request: PromptMessageExtended) -> PromptMessageExtend
320320
child = self._child_agents.get(tool_name) or self._child_agents.get(self._make_tool_name(tool_name))
321321
if child and hasattr(child, '_name'):
322322
original_names[cid] = child._name
323-
child._name = f"{child._name}: {i}"
323+
child._name = f"{child._name}#{i}"
324324

325325
# Now create tasks with modified names
326326
for cid in id_list:

0 commit comments

Comments
 (0)