(self, concept: str)
| 110 | self.long["significant_facts"] = kept |
| 111 | |
| 112 | def update_practiced_knowledge(self, concept: str) -> None: |
| 113 | concept = normalize_concept(concept) |
| 114 | if concept and concept not in self.long["practiced_knowledge"]: |
| 115 | self.long["practiced_knowledge"].append(concept) |
| 116 | |
| 117 | def write_long_summary(self, summary: str) -> None: |
| 118 | if summary: |
no test coverage detected