Agent using the voice-assistant prompt.
| 16 | |
| 17 | |
| 18 | class VoiceAssistant(Agent): |
| 19 | """ |
| 20 | Agent using the voice-assistant prompt. |
| 21 | """ |
| 22 | |
| 23 | def __init__(self): |
| 24 | super().__init__(instructions=SYSTEM_PROMPT) |
| 25 | |
| 26 | |
| 27 | async def entrypoint(ctx: JobContext) -> None: |