NLP


1. Overview

Natural Language Processing controller allows playing speech from text and convert speech to text.

2. Using the controller

Creating the controller in your app:

from raya.application_base import RayaApplicationBase

class RayaApplication(RayaApplicationBase):
    async def setup(self):
        ...
        self.nlp = await self.enable_controller('nlp')
        ...