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()