(self, section: str)
| 915 | _sections: list[str] = field(default_factory=list) |
| 916 | |
| 917 | def add(self, section: str) -> PromptBuilder: |
| 918 | self._sections.append(section) |
| 919 | return self |
| 920 | |
| 921 | def build(self) -> list[str]: |
| 922 | return list(self._sections) |
no test coverage detected