summaryrefslogtreecommitdiffstats
path: root/meta-offline-voice-agent/recipes-nlu/nlu-model/rasa-model-agl_0.1.0.bb
blob: 38e3740683bd384d41211efb43e9b28be7dfa1b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SUMMARY = "Dataset and a pre-trained model for the AGL voice assistant RASA based NLU intent engine."
HOMEPAGE = "https://github.com/malik727/rasa-model-agl"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=2e01060a5557fe6a4b57f5ea6dc048d9"

SRC_URI = " \
    git://github.com/malik727/rasa-model-agl;protocol=https;branch=main \
"

PV = "1.0.0+git${SRCPV}"
SRCREV = "${AUTOREV}"
S = "${WORKDIR}/git"

do_install() {
    install -d ${D}/usr/share/nlu/rasa
    cp -R ${WORKDIR}/git/* ${D}/usr/share/nlu/rasa/
}

FILES:${PN} += " /usr/share/nlu/rasa"