refactor: cleanup

This commit is contained in:
cpacker
2024-08-26 16:55:08 -07:00
parent 6f6d1346d9
commit c837a196d1

View File

@@ -19,9 +19,6 @@ class Memory(BaseModel, validate_assignment=True):
obj.memory[key] = Block(**value)
return obj
def __str__(self) -> str:
raise NotImplementedError("Use the .compile() method instead")
def compile(self) -> str:
"""Generate a string representation of the memory in-context"""
section_strs = []