From 85bd632eb4398d618607848e72afa8a077a5406d Mon Sep 17 00:00:00 2001 From: Mery-Sanz Date: Thu, 24 Apr 2025 15:05:47 +0200 Subject: [PATCH] fix agent command 2 --- src/cai/repl/commands/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cai/repl/commands/agent.py b/src/cai/repl/commands/agent.py index b23194a3..e01d4fdf 100644 --- a/src/cai/repl/commands/agent.py +++ b/src/cai/repl/commands/agent.py @@ -211,7 +211,7 @@ class AgentCommand(Command): agent_id = args[0] agents_to_display = get_available_agents() - agent_list = list(agents_to_display.items()) # preserve order for indexing + agent_list = list(agents_to_display.items()) # Check if agent_id is a number if agent_id.isdigit():