This commit is contained in:
2026-01-22 02:26:21 -08:00
parent 96d0a034cd
commit 22b7e87aaf

View File

@@ -291,8 +291,9 @@ class RLMCodingProgram(PrecompiledProgram):
config: RLMCodingConfig config: RLMCodingConfig
def __init__(self, config: RLMCodingConfig, **kwargs): def __init__(self, config: RLMCodingConfig, **kwargs):
self.config = config
super().__init__(config, **kwargs) super().__init__(config, **kwargs)
self.config = config
self.tools = { self.tools = {
"read_file": read_file, "read_file": read_file,
"write_file": write_file, "write_file": write_file,
@@ -595,5 +596,5 @@ def main():
if __name__ == "__main__": if __name__ == "__main__":
agent = RLMCodingProgram(RLMCodingConfig()) 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() #main()