Add a file to project memory (never evicted).
(self, file_path: str, content: str, is_protected: bool = False)
| 579 | self.working.add(key, content, tokens) |
| 580 | |
| 581 | def add_to_project(self, file_path: str, content: str, is_protected: bool = False): |
| 582 | """Add a file to project memory (never evicted).""" |
| 583 | self.project.add(file_path, content, is_protected) |
| 584 | |
| 585 | def store_in_longterm(self, file_path: str, content: str): |
| 586 | """Index a file in long-term (embedding) memory.""" |