Prompt for input from a role.
(self, role: str)
| 223 | class ChatIO(abc.ABC): |
| 224 | @abc.abstractmethod |
| 225 | def prompt_for_input(self, role: str) -> str: |
| 226 | """Prompt for input from a role.""" |
| 227 | |
| 228 | @abc.abstractmethod |
| 229 | def prompt_for_output(self, role: str): |
nothing calls this directly
no outgoing calls
no test coverage detected