(self, phase)
| 334 | return "" |
| 335 | |
| 336 | def example_command(self, phase): |
| 337 | if phase not in self.phases: |
| 338 | raise Exception(f"Invalid phase: {phase}") |
| 339 | return ( |
| 340 | "You can produce dialogue using the following command: ```DIALOGUE\ndialogue here\n```\n where dialogue here is the actual dialogue you will send and DIALOGUE is just the word DIALOGUE.\n" |
| 341 | "When performing a command, make sure to include the three ticks (```) at the top and bottom ```COMMAND\n<Insert command here>\n``` where COMMAND is the specific command you want to run (e.g. REPORT, DIALOGUE).\n") |
| 342 | |
| 343 | def command_descriptions(self, phase): |
| 344 | if phase not in self.phases: |
nothing calls this directly
no outgoing calls
no test coverage detected