From a4ae97ef813b3452dab38f9f1ee4f6e6b8f10428 Mon Sep 17 00:00:00 2001 From: Farouk Adeleke Date: Fri, 23 Jan 2026 20:11:53 -0800 Subject: [PATCH] change signature --- nanocode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nanocode.py b/nanocode.py index d1f7ab9..090d673 100644 --- a/nanocode.py +++ b/nanocode.py @@ -222,8 +222,8 @@ class RLMCodingProgram(PrecompiledProgram): ) self.agent.set_lm(self.lm) print(f"{BLUE}CONFIG WAS SET: {self.config}{RESET}") - print(f"{BLUE}LM WAS SET: {self.agent.get_lm()}{RESET}") - print(f"{BLUE}SUB LM WAS SET: {self.agent.sub_lm}{RESET}") + print(f"{BLUE}LM WAS SET: {self.agent.get_lm().model}{RESET}") + print(f"{BLUE}SUB LM WAS SET: {self.agent.sub_lm.model}{RESET}") def forward(self, task: str) -> str: if not task: