From 22b7e87aafea910dae1a1f5d1c308b90bf7366ec Mon Sep 17 00:00:00 2001 From: Farouk Adeleke Date: Thu, 22 Jan 2026 02:26:21 -0800 Subject: [PATCH] debug --- nanocode.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nanocode.py b/nanocode.py index dbf1228..fdbbc94 100644 --- a/nanocode.py +++ b/nanocode.py @@ -291,8 +291,9 @@ class RLMCodingProgram(PrecompiledProgram): config: RLMCodingConfig def __init__(self, config: RLMCodingConfig, **kwargs): - self.config = config super().__init__(config, **kwargs) + + self.config = config self.tools = { "read_file": read_file, "write_file": write_file, @@ -595,5 +596,5 @@ def main(): if __name__ == "__main__": agent = RLMCodingProgram(RLMCodingConfig()) - agent.push_to_hub(MODAIC_REPO_PATH, commit_message="debug", tag="v0.0.5") + agent.push_to_hub(MODAIC_REPO_PATH, commit_message="debug", branch="dev") #main()