From 021dc84f09ce4f00c1228a9ec2bf20acb57fcf96 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Sat, 22 Jun 2024 13:55:38 -0700 Subject: [PATCH] fix: fix ugly dev tool print in cli (#1469) --- memgpt/cli/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memgpt/cli/cli.py b/memgpt/cli/cli.py index 58ccab98..d4c535fc 100644 --- a/memgpt/cli/cli.py +++ b/memgpt/cli/cli.py @@ -663,7 +663,7 @@ def run( preset=preset_obj.name, state={"messages": None, "persona": preset_obj.persona, "human": preset_obj.human}, ) - print("tools", agent_state.tools) + typer.secho(f"-> 🛠️ {len(agent_state.tools)} tools: {', '.join([t for t in agent_state.tools])}", fg=typer.colors.WHITE) tools = [ms.get_tool(tool_name) for tool_name in agent_state.tools] memgpt_agent = Agent(