From 970239b8be377fd10907ef2d39911250a2c92ff9 Mon Sep 17 00:00:00 2001 From: Kye Date: Sat, 2 Dec 2023 10:41:05 -0800 Subject: [PATCH] [FEAT][Agent Name print when init] --- swarms/structs/agent.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/swarms/structs/agent.py b/swarms/structs/agent.py index e7f237a6..b7339878 100644 --- a/swarms/structs/agent.py +++ b/swarms/structs/agent.py @@ -484,7 +484,13 @@ class Agent: """Print the autonomous agent activation message""" try: print( - colored("Initializing Autonomous Agent...", "yellow") + colored( + ( + "Initializing Autonomous Agent" + f" {self.agent_name}..." + ), + "yellow", + ) ) # print(colored("Loading modules...", "yellow")) # print(colored("Modules loaded successfully.", "green"))