Return list of fully-resolved paths currently in working memory.
(self)
| 486 | self.working.touch(key) |
| 487 | |
| 488 | def list_files(self) -> List[str]: |
| 489 | """Return list of fully-resolved paths currently in working memory.""" |
| 490 | return self.working.get_file_names() |
| 491 | |
| 492 | def build_file_block(self, message: str = '') -> str: |
| 493 | """Build the <file> XML block for the system prompt.""" |