NLP
- 1 Minute to read
NLP
- 1 Minute to read
Article summary
Did you find this summary helpful?
Thank you for your feedback
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')
...
Was this article helpful?