(self, role)
| 239 | |
| 240 | class SimpleChatIO(ChatIO): |
| 241 | def prompt_for_input(self, role) -> str: |
| 242 | return input(f"{role}: ") |
| 243 | |
| 244 | def prompt_for_output(self, role: str): |
| 245 | print(f"{role}: ", end="", flush=True) |
nothing calls this directly
no outgoing calls
no test coverage detected