apple muncy commited on
Commit
bfd1d6a
·
1 Parent(s): cd52757

Signed-off-by: apple muncy <[email protected]>

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -118,9 +118,9 @@ async def get_agent():
118
  await agent_instance.load_tools()
119
  logger.info("Tools loaded successfully")
120
 
121
- print(f"[bold blue]Agent loaded with {len(agent_instance.available_tools)} tools:[/bold blue]")
122
  for t in agent_instance.available_tools:
123
- print(f"[blue] • {t.function.name}[/blue]")
124
 
125
 
126
  except Exception as e:
 
118
  await agent_instance.load_tools()
119
  logger.info("Tools loaded successfully")
120
 
121
+ print(f"\033[1;38;5;11mAgent loaded with {len(agent_instance.available_tools)} tools:\033[0;0m")
122
  for t in agent_instance.available_tools:
123
+ print(f"\033[1;38;5;11m • {t.function.name}\033[0;0m")
124
 
125
 
126
  except Exception as e: