diff --git a/llama_stack/providers/inline/agents/meta_reference/agent_instance.py b/llama_stack/providers/inline/agents/meta_reference/agent_instance.py index b9737054a..e1713c0e3 100644 --- a/llama_stack/providers/inline/agents/meta_reference/agent_instance.py +++ b/llama_stack/providers/inline/agents/meta_reference/agent_instance.py @@ -396,12 +396,6 @@ class ChatAgent(ShieldRunnerMixin): n_iter = 0 while True: msg = input_messages[-1] - if msg.role == Role.user.value: - color = "blue" - elif msg.role == Role.ipython.value: - color = "yellow" - else: - color = None if len(str(msg)) > 1000: msg_str = f"{str(msg)[:500]}......{str(msg)[-500:]}" else: