robotemi / sdk

temi is an unparalleled robotic platform introducing a new dimension of development - movement. Using temi’s SDK, developers can create new functionalities and introduce new use cases via temi’s Android tablet. temi’s movement and navigation capabilities run off of it's Linux computer and uses a set of 16 sensors including a Lidar, depth cameras, driving cameras, and microphones. We encourage our developer community to suggest and request expanded functionality within the SDK and we will adhere to your needs. We want to enable you to create skills like never seen before! We will be constantly improving the SDK and its documentation. Please feel free to reach out to us with any questions or thoughts at developers@robotemi.com
https://www.robotemi.com/
210 stars 86 forks source link

I want Temi Assistant to support Vietnamese. Can I implement it? #109

Closed lecong closed 4 years ago

lecong commented 4 years ago

Hi Team,

I want implement for Temi Assistant support Vietnamese. How to implement it?

Thanks,

zjn0505 commented 4 years ago

In the coming release of temi SDK and software update, there are options to intercept wakeup. Thus you will be able to do your own voice recognition, and NLP.

lecong commented 4 years ago

have plan for this feature?

zjn0505 commented 4 years ago

The SDK support of intercepting voice flow has already been released.

Take sample app for example, as a Kiosk app, once it declares the following meta data in the manifest, it will be able to take over the voice flow, handing with its own STT and NLU engine.

<meta-data
            android:name="@string/metadata_override_nlu"
            android:value="true" />

<meta-data
           android:name="@string/metadata_override_stt"
           android:value="true" />

The SDK documentation is getting updated for this and the rest major changes of this version, and the robot software will be available in the next OTA update.

s2nmt commented 5 months ago

Do you have a solution for this yet? Can you show me?