Prompt for input from a role.
(self, role: str)
| 319 | class ChatIO(abc.ABC): |
| 320 | @abc.abstractmethod |
| 321 | def prompt_for_input(self, role: str) -> str: |
| 322 | """Prompt for input from a role.""" |
| 323 | |
| 324 | @abc.abstractmethod |
| 325 | def prompt_for_output(self, role: str): |