Add a prompt to the server. Args: prompt: A Prompt instance to add
(self, prompt: Prompt)
| 724 | return decorator |
| 725 | |
| 726 | def add_prompt(self, prompt: Prompt) -> None: |
| 727 | """Add a prompt to the server. |
| 728 | |
| 729 | Args: |
| 730 | prompt: A Prompt instance to add |
| 731 | """ |
| 732 | self._prompt_manager.add_prompt(prompt) |
| 733 | |
| 734 | def prompt( |
| 735 | self, |