1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-08-16 13:40:51 +03:00

fix(scripts): remove description property on LLM action classifier training

This commit is contained in:
louistiti 2024-07-07 16:03:20 +08:00
parent c21051b9a7
commit 822e20f80b
No known key found for this signature in database
GPG Key ID: 92CD6A2E497E1669

View File

@ -46,7 +46,7 @@ export default () =>
* Skip actions without utterance samples to make sure we only match
* actions that are actionable from an utterance
*/
if (!actionObj.utterance_samples || !actionObj.description) {
if (!actionObj.utterance_samples) {
continue
}