From 8f37131ab8cf14d2b87205b5d5633800f0e21d47 Mon Sep 17 00:00:00 2001 From: Farouk Adeleke Date: Thu, 22 Jan 2026 03:26:50 -0800 Subject: [PATCH] Add tool logs --- nanocode.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nanocode.py b/nanocode.py index a94cba4..dc913ef 100644 --- a/nanocode.py +++ b/nanocode.py @@ -298,9 +298,6 @@ class RLMCodingProgram(PrecompiledProgram): agent.set_lm(self.lm) self.agent = agent - print(f"Using model: {self.agent.get_lm().model}") - print(f"Using sub-model: {self.agent.sub_lm.model}") - def forward(self, task: str) -> str: assert task, "Task cannot be empty" return self.agent(task=task) @@ -569,5 +566,5 @@ def main(): if __name__ == "__main__": agent = RLMCodingProgram(RLMCodingConfig()) - agent.push_to_hub(MODAIC_REPO_PATH, commit_message="debug", branch="prod") + agent.push_to_hub(MODAIC_REPO_PATH, commit_message="Add tool logs", branch="prod") #main()