microsoft / botframework-solutions

Welcome to the Bot Framework Solutions repository which is the home for a set of templates and solutions to help build advanced conversational experiences using Azure Bot Service and Bot Framework. Microsoft Bot Framework is a comprehensive framework for building enterprise-grade conversational AI experiences.
https://aka.ms/bfsolutionsdocs
MIT License
1.05k stars 530 forks source link

deploy_cognitive_models.ps1 not deploying connected skills intents to Dispatch #2909

Closed rvallireply closed 4 years ago

rvallireply commented 4 years ago

What project is affected?

Virtual Assistant template script deploy_cognitive_models

What language is this in?

powershell

What happens?

launching

./Deployment/Scripts/deploy_cognitive_models.ps1 -language "it-it" -qnaSubscriptionKey "xxxxxxxxxxxxxxxxxxxxxxx"

is not adding the Virtual Assistant connected skills to the Dispatch model

What are the steps to reproduce this issue?

./Deployment/Scripts/deploy_cognitive_models.ps1 -language "it-it" -qnaSubscriptionKey "xxxxxxxxxxxxxxxxxxxxxxxxxx"

What were you expecting to happen?

The redeployed Dispatch app to contain the connected skill's intents.

Can you share any logs, error output, etc.?


> Deploying cognitive models ...
> Initializing dispatch model ...
> Parsing General LU file ...
> Deploying General LUIS app ...
> Setting LUIS subscription key ...
> Adding General app to dispatch model ...
> Parsing Chitchat LU file ...
> Deploying Chitchat QnA kb ...
> Adding Chitchat kb to dispatch model ...
> Parsing Faq LU file ...
> Deploying Faq QnA kb ...
> Adding Faq kb to dispatch model ...
> Creating dispatch model...
> Setting LUIS subscription key ...

Note: the skills intents are not being added to the Dispatch model. The bot and the skills are in italian culture.

Any screenshots or additional context?

lauren-mills commented 4 years ago

Hi @rvallireply, the deploy_cognitive_models.ps1 script only deploys the LUIS models included in the Virtual Assistant project's Deployment\Resources\LU\it-it folder. If you deleted your apps, you should first run deploy_cognitive_models.ps1, then run botskills update to reconnect your skills.

If you are trying to make updates to your General LUIS model or the FAQ and ChitChat qna knowledgebases, you should make your changed (locally or in the respective portal) then run the update_cognitive_models.ps1 script. If you make these changes in the portal, you should provide the -RemoteToLocal flag.

rvallireply commented 4 years ago

Thank you for the clear reply @lauren-mills. The situation I am encountering here is:

So the question is: is there a way for the Virtual Assistant to retain intents updated from the portal for the connected skills, so that when it is redeployed it doesn't revert back?

Edit: if it may help the Dispatch probably thinks "Che tempo fa a London" ("What is the weather in London") is Chit-chat because in the traslation I made of an italian utterance in Chit-Chat that's "Quanto tempo fa sei nato" ("How long ago were you born"), since it replies with "L'età non conta per me" ("Age doesn't really apply to me."). In the weather skill utterance "Che tempo fa a London" the italian word "tempo" is a word for "weather", while in the Chitchat "Quanto tempo fa sei nato" the italian word "tempo" is a word for "time". That is probably causing a confusion to LUIS in the first place. Nonetheless we should have a way for the Dispatch model changes made and trained in the portal to a connected skill to refresh back the Virtual Assistant code ...

darrenj commented 4 years ago

Can I just clarify the step you performed above to "correct" DIspatch? Did you got to the Dispatch model in the LUIS model and manually train the Dispatcher with the utterance?

rvallireply commented 4 years ago

@darrenj , yes, I used "TEST" functionality of the Dispatch model and when it replied from ChitChat I edited the intent result of the utterance to WeatherSkill. Then I retrained the model and published.

darrenj commented 4 years ago

Dispatch is re-generated from the source data when you refresh. Instead - add the utterance to the weather luis model (LU file directly) and it should then resolve your issue.

rvallireply commented 4 years ago

The issue is, actually, that the utterance "che tempo fa a Washington" ("what is the weather in Washington") is already in the WeatherSkill LU file, but everytime it is deployed to the Dispatch model together with ChitChat's "Quanto tempo fa sei nato" ("How long ago were you born") since the latter contains "tempo" (can mean both "time" and "weather" in italian) is the latter that wins the higher score, so when immediately after deploying I ask

"Che tempo fa a Washington"

instead of the WeatherSkill's intent I get the ChitChat intent. This happens even if I trained the model before to change the utterance intent from ChitChat to WeatherSkill: the deploy rewrites the training with the wrong intent. So I was asking if there is a way to keep previous training's scores in consideration when RE-deploying ChitChat+WeatherSkill. A way to tell LUIS to permanently mark the utterance "Che tempo fa a Washington" as a WeatherSkill intent instead of ChitChat, even if both ChitChat and WeatherSkill LU files are redeployed and retrained.

darrenj commented 4 years ago

Strange let me ask the Dispatch team to take a look and see if they can offer some help

tsuwandy commented 4 years ago

@rvallireply, could you share the exported dispatch model json file? thanks.

rvallireply commented 4 years ago

@tsuwandy here it is:

{
    "luis_schema_version": "4.0.0",
    "intents": [{
            "name": "l_General"
        },
        {
            "name": "q_Chitchat"
        },
        {
            "name": "q_Faq"
        },
        {
            "name": "WeatherSkill"
        },
        {
            "name": "None"
        }
    ],
    "entities": [],
    "composites": [],
    "closedLists": [],
    "prebuiltEntities": [],
    "utterances": [{
            "text": "leggere la pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ciò che è prima che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere tutti sullo schermo per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "contatta il supporto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di aiutare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere il quarto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "annullare che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "hey leggere che per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere questa pagina ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "visualizzare in precedenza",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "è jackson .",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "i rifiutare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si potrebbe iniziare sopra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sì amico",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere no. 2",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no stop",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scusa",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio parlare con un umano",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non voglio scegliere uno qualsiasi",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "che cosa",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "naturalmente,",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio di più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "chiudi la bocca",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "raccontare di più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sì buono",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non è sbagliato",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "destra sì",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere pagina outloud",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio che nessuno di loro",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "grazie sì",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sono giglio",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ha finito",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "smettere",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "siamo spiacenti",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mai",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere il testo a me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non molto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nemmeno vicino",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non essere tranquillo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "niente affatto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mostra di più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ripetere",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "portare il precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio che il inferiore scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "suona grande",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegli l'ultima",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare no. 5",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "senza dubbio",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sì piccola",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tornare a durare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "uno è ok",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ho finito",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si può leggere che per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ho bisogno di sostegno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non importa smettere",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere il in basso a sinistra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ho bisogno di aiuto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere in alto a destra uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere il in alto a sinistra scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere il testo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "e dopo che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non importa mai",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "cosa prima che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare una scelta casuale",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non ora",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ciò che è dopo che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere il terzo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "io sono fatto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggerlo ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per uno casuale",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "logout",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "servizio umano",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "andiamo stop",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio la quarta scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "parlare con un umano",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mostrami il precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "c'è qualche aiuto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggilo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggere la mia ultima e-mail",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tornare indietro per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "oh non farlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "aprire la guida",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "solo essere tranquillo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "assolutamente no",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "riavviarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggerlo a me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "fallo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per sinistra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "annulla",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "è finita",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nessuno di questi",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "rifiutare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "fammi vedere il prossimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "taci",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "indietro per durare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "andare al prossimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "grande",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "oh no",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "rivelare in precedenza",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no no annullarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "esci",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dire di nuovo per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace in alto a destra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace il primo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "rivelare precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "torna all'ultimo passo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non ho sentito",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere la pagina per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tranquilla",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "oh sì",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "finito",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mostra i prossimi 4 articoli",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non annullarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "rivelano più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere le parole in questa pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "è alice anderson!",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "io sono anna",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ho bisogno di aiuto umano reale",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio il primo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "solo essere",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mille grazie",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dammi un po' di aiuto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggere questo ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "qui john w.smith .",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare la inferiore uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nulla",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "basta annullarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tutti insieme",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere secondo uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non essere tranquillo ora",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggere questa pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si può leggere che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "fare una lettura di questa pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare qualsiasi",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "smettere di parlare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nessuno si preoccupa smettere di parlare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dettaglio ad alta voce quello che dice",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nessuno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "che è corretto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "perfetto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "zitto essere tranquillo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "respingere",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mostra le prossime due opzioni",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere la frase ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere il sinistra uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non importa annullare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piacerebbe che tu leggere che per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere ad alta voce il testo corrente sullo schermo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tornare per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non esattamente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "cosa hai detto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "parlare di ciò che è in questa pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ciò che è prossimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nervi mente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dire che ancora una volta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare la fondoschiena scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "signout",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "visualizzare più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere a voce alta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "questo va bene",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "rifinito con",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tornare a",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionarne una quarta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "buona idea",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere file ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nessuno di loro grazie",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "bambino solo essere tranquillo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere che ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dimmi di più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggerlo per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tornare alla precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "c'è un vero umano",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no, non che uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere questo per me per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dio zitto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tranquillo ora",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggere che per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per la seconda scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere va bene",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "indietro per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionarne uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ti amo smettere di parlare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "cosa c'è di più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "torna all'ultimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ho bisogno di un po' di assistenza",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "andare in precedenza",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non tornare a",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggere la pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggerlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare la terza",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mostrare il prossimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggerlo a voce alta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nel no sul",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "annullato",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per va bene uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere in alto a destra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi dimentichi",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ho bisogno di sentire questa pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non più no",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "fine",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non in questo momento",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sì bro",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "confermare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare inferiore uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere fondoschiena uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non lasciarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dammi più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio nessuno di loro",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "qual è il precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "che cosa dice la pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non più tardi",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "chiaro e ricominciare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere la mia lista",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "potresti dirmi quello che dice",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggere questo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non zitto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no no annulla",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scusa, non farlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "annulla app",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ripetere per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sì andare per esso",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "uscita exit",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere il primo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere uno di esso in modo casuale",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "per quanto riguarda il terzo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mostra precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "qual è il prossimo 2",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sono sicuro",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tornare su",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "né",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tornare a durare uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nessuno nessuno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "che suona bene",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per qualsiasi di esso",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sono john jackson.",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per il inferiore scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "va bene",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "passare a quello successivo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ho detto stop",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nessuno di quelli",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere la pagina sullo schermo per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non annullare che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non proprio",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "basta annullare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mostra i prossimi 3",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di ricominciare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "torna a",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mostrare in precedenza",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "iniziare a leggere questo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non rifiutarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "vattene",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggere questa pagina ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio quarto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "cosa c'è accanto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "come posso ottenerlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "oh annulla",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere ciò che è attualmente sullo schermo per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sì andare avanti",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere questa pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non importa",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare uno casuale",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dillo ancora",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "disattivare l'arresto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tutto finito",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace il in alto a destra uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ricominciare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggere questo per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dimenticarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "quello che era di nuovo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace sinistra uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ok per ora",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si può aiutare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ripetere che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per la seconda",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si può leggere pagina ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per il primo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "presentarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "cosa sicura",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio va bene uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no no tornare a",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "annullarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "servizio clienti",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ok",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere l'ultima scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "vuoi leggere che ad alta voce per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mostrare quello precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dimmi circa le informazioni sullo schermo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sì cool",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ho bisogno di servizio clienti manuale",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace il secondo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sembrano cattivi, puoi darmi altre scelte",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "fatto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio sinistra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per l'ultima",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "finire",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per l'ultimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "che mi può aiutare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere il in alto a destra uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "niente per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio dire smettere di ascoltare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "riavviare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "guida",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nessuno di loro",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "girare su una nuova foglia",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "qualsiasi di esso",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "il mio dio zitto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "per quanto riguarda il prossimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sicuro",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "visualizza più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per il sinistra uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non farlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio che il va bene uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace secondo uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare qualsiasi scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tornare all'ultimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "annullare non importa",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "prossimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ultimo passo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "optare per il va bene",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "né grazie",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "vai ai prossimi tre elementi",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace il in alto a destra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "vocalizzare ciò che s sulla pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "invia",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio che il secondo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "indietro",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio che il sinistra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere in basso a destra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no annulla annulla",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "sicuro è",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non voglio selezionare uno qualsiasi",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "c'è una persona che posso parlare con",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "precedente si prega di",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere questa pagina per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare la in alto a destra",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si potrebbe dire di nuovo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere chiunque",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no grazie",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non ho sentito ripetere di nuovo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "avviarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "posso parlare con una persona",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "chiunque va bene",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "smettere per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "di nuovo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "dimmi il testo corrente sullo schermo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "negativo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "iniziare su di esso",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "suona perfetto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "suona bene grazie",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ho bisogno di andare a quello successivo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di leggere",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "puoi aiutarmi",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "suona bene per me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "contattare il servizio clienti",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere il va bene",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "qualsiasi aiuto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non importa annullare che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tornare a quello precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare il primo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "molto bene",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere il quarto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio fondoschiena",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare la va bene uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "nessuna cancellazione",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "annulla annulla",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "c'è una persona reale",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio parlare con un vero e proprio umano",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere la prima scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "già",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace il terzo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace la terza scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no non voglio che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non fare nulla",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "andare avanti",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggimi questa pagina",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "perfetto grazie",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non mi piace",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "hey stop",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare l'ultima scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere il testo ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "scegliere ultimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "vuoi leggere che a me per favore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no no no no smettere di parlare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere a me",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "certo sì",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "cosa dopo che",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ritorno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "per quanto riguarda l'ultimo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "come farlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "oh mio dio zitto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "né uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "zitto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "qualche aiuto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "rifiutarlo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "essere tranquillo ora",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di tornare",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "andare per esso",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "chiamami steve !",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si prega di fare nulla",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "uscita stop",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "andare al precedente",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "stai zitto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "il mio nome è bill jones",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio terzo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "zitto tranquillo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "ok arresto stop",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "spegni",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "voglio scegliere il inferiore scelta",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "niente non importa",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "è fatto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "si può leggere",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "tale diritto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare il terzo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "no no grazie",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "da nessuna parte solo essere tranquillo",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "selezionare superiore",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "mi piace il fondoschiena uno",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "non farlo più",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "che è giusto",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "leggere la pagina ad alta voce",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "certo fa",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "pagina di lettura",
            "intent": "l_General",
            "entities": []
        },
        {
            "text": "conosci il significato della vita",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "adoro avere san valentino.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci altri agenti digitali",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "adoro la musica.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei intelligente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ho un nuovo taglio di capelli",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ecco un bacio per te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi è tua madre",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono spuntato fuori",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci alexa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei un fan di alexa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio essere tuo amico.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è il nome del tuo capo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa hai fatto oggi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ciao google",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "scusate",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti sto dando una scivolata rosa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è il significato della vita",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci qualche scherzo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "puoi farmi un panino",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dove sei",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "era corretto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quando starai zitto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "penso che tu sia gonfio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio andare a fare shopping",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non hai senso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi odi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ti fa pensare così",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che tipo di cose puoi fare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "da quale stato sei",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti piace cortana",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che vuoi dire",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "buonanotte a te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai dei boogers",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è il tuo genere",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dammi il cinque!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ho bisogno di un bacio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei rad.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "posso avere un abbraccio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "puoi chattare con me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti piaccio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei così stupido.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei così noioso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono innamorata.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "haha",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei qui",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono triste oggi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei così divertente.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "parlami",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "fai pipi'",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "funziona per me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ne pensi dell'ia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come ti chiami",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "inutile",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi dispiace",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come stai oggi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "eccomi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai fratelli e sorelle",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai fame",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "omg mi dispiace",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai altre risposte",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "penso che tu sia grande",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono un fan.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vi ringrazio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "com'è la tua giornata",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa mangi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti adoro",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non era vero.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei fuori strada.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non è stato divertente.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "lo scherzo è su di te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei il mio fan",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono un repubblicano",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ti piace cantare meglio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è il tuo film preferito",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "test 1 2 3",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "yup, è vero.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi sei",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "è stata una risposta stupida.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "baciami",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "onestamente non potresti essere più interessante",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "in quale paese ti trovi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai una mamma",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "è esilarante",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono uno sciocco",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi ami",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "kthx",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei il mio amico immaginario",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei divertente :)",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio solo andare a dormire",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei più carina di me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sto solo scherzando",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "buona sera",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ho 7 gatti",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei con l'fbi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei libero",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quanti anni hai",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non capisco",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dovrei provare per il calcio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che cosa succede",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai un nome",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "inesatto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "devi odiarmi.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei una cazzata",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "è un piacere per me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "pensi che dovrei chiedergli di uscire",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci qualche musica",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei licenziato!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti amo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei zoppo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei un fan della tecnologia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono stanco",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non ha senso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "puoi starnutire",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei proprio uno stronzo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi è tuo padre",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei il peggiore",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chiedimi qualsiasi cosa.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci qualche canzone",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non puoi più lavorare per me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sto andando a correre",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "af di base",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "faccia di burro.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non c'è niente da fare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa sta succedendo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tu e cortana uscire",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "di' una cosa stupida",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cucinami qualcosa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "è impreciso.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "possiamo chattare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sembri davvero intelligente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "perché non smetti mai di parlare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti piace il mio cappello",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "potete contare fino a un milione",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "buon natale",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "brb",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sii sciocco",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei gay",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "perché",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono pieno di tristezza",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è la tua canzone preferita",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "riesci a sentirmi ora.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vai all'inferno",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è il mio nome",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei inutile",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono arrabbiato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quanto in alto si può saltare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "canti",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "perché mi odi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ciao cortana",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sarai il mio migliore amico",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei noioso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ami chiunque",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "avere una buona giornata",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio sdraiarmi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dammi una barzelletta",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "la vita è buona",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei stupido.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono così triste",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "lì",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "con cosa puoi aiutarmi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei innamorata di me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti piace il baseball",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sì, è vero.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono affamato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono gioioso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che cosa vuoi dire con questo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei in giro",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cos'è l'amore",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quali squadre di baseball ti piacciono",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti disprezzo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "si può fare sport",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sii più divertente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "presto sarai disoccupato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti amo.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "canta qualcosa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa farai dopo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "i miei sinceri ringraziamenti",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei davvero noioso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi sento così bene",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "risata fragorosa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei divertente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi dispiace.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei felice",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai sorelle",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio sdraiarsi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tu sei l'amore della mia vita",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sai chi sono",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "questo è vero",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "la tua faccia è come un pancake.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ne pensi dei bot",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "possiamo essere amici",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti voglio bene!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono stanco di te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "puoi parlarmi.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "buongiorno",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei una spia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non intendevo che",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi manchi da impazzire!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai una sorella",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è la tua attività preferita",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "guarda quanto sei intelligente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi dispiace per questo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti odio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non riesco a pensare a niente che voglio fare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "puoi cantare una canzone",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei fantastico!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei davvero felice",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "riesci a dormire",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi è più intelligente, io o te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quanto sei felice",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono furioso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non stai rispondendo alla mia domanda.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "adoro new york.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono infastidito",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi annoio dalla mia mente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è il tuo scopo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi è il tuo capo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono incazzato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "lei è stupido",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sogni",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei esilarante",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è la risposta all'universo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "novità",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hum una melodia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non dormire mai",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci google",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quali altri bot conosci",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai un padre",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa potete fare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa vuoi dire con questo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "bingo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei il migliore",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ha",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei vecchio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "rofl",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ci sei",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non sei scitrolino",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti piacciono i computer",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come si chiama tuo padre.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "puoi farmi una domanda",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tu mi hai annoiato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ciao",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "puoi dire qualsiasi altra cosa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei una lesbica",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "devo guardare bene",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei con la nsa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono lesbica",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "a chi riferisci di",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci il mio nome",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "torna tra un minuto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "pensi che i draghi siano fighi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "pensi che dovrei chiederle di uscire",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chatta con me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi stai spiando",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "preferisci il rosso o il blu",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti piace siri",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti stanchi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "si può volare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "pensi che stia bene.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "spero che ti piaccia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei meravigliosa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei licenziato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non sei allegro",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sto morendo di fame",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non potresti essere più noioso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "perché dici sempre la stessa cosa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei stupido",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "continui a dire la stessa cosa tutto il tempo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi ami",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "parla con me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "buon compleanno!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ehi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dove ti trovi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ho tanta fame",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei disponibile",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dammi un alto cinque",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vorrei che tu dicessi qualcos'altro",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tu non sai niente.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "fantastico",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quanto in alto si può contare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai mai cantato una canzone",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ne pensi di siri",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei reale o falso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "smettila di parlare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "duro",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "heya",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai una famiglia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi è il tuo team preferito",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non è divertente.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei terribile.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sembri brutta.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ho bisogno di un abbraccio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono innamorato di te.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai un fratello",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei un ragazzo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sudo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono qui",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei strano",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "odio tutto di te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono tutto infilato fuori",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei una persona",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "falso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è il tuo cibo preferito",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei 1/4 di brutto.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "racconta una barzelletta",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai ragione.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "di' qualcosa di stupido",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio passare il resto della mia vita con te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa stai facendo in questo momento",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ho fame",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi sento così sola",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei così semplice",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dimmi quanto mi ami",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "buona serata",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come va la tua giornata",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei trans",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "oops, mi dispiace",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "trascorri del tempo nel tuo giardino",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "piacere",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quanto tempo fa sei nato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono alto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci altri bot",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sii ridicolo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei impegnato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "era giusto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi sento triste",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tranquillo, tu",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "pugno urto!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono pronto per andare a letto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che lavoro fai",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "è un piacere conoscerti",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vorrei che te ne andassi.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi annoio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non è vero",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "a piu' tardi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei il mio migliore amico",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei uno swinger",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che tipo di cibo ti piace",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ho un bell'aspetto in blu",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sto masticando la gomma in questo momento",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei fantastico",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei uno stronzo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tu sei il mio preferito",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "temo che dovro' lasciarti andare.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono così felice di conoscerti",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi ti ha fatto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi di noi è più bello",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vaffanculo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "stringimi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei proprio un panconi eleganti.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come faccio a guardare oggi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci cortana",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "stancarsi di te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi manchi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "di' uno scherzo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei bisessuale",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio che tu sia mio marito",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non sei più impiegato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono davvero triste",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti piacciono le mele",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vorrei poterti abbracciare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "penso che tu sia sognante",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sii divertente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei molto intelligente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "no, falso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono abbastanza",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "esatto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei maschio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "stai vendendo i miei segreti",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio sposarti.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "a nessuno importa di me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dammi un pugno urto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "buonasera a te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono così assonnato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono una brava persona",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "fai schifo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei così fastidioso!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ora sei disoccupato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono un democratico",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei così male in questo.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi sento blu",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ci sono dentro",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "thnx",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "notte f",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "da dove vieni",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non avevi senso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa hai fatto ieri",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vengo da lì",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa stai",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tornerò",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi dispiace tanto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "amo la mia famiglia.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "giochi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dov'è la tua casa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "così stanco",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non sto seguendo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "canti mai",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "di' qualcosa di ridicolo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai dei fratelli",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sembri felice",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dove dovrei andare in vacanza",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "yup",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei una donna",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "com'è andata oggi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi è il tuo cantante preferito",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "senti l'odore",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non puoi cambiare le tue risposte",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "penso che tu sia così carina",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei così intelligente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "questo non aveva senso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "è davvero bello conoscerti",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "no, non è vero",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ci sentiamo piu' tardi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei skynet",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei reale",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "da quale paese sei",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei un uomo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "bff per sempre",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei la mia assistente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sry",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ti piace mangiare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sarai mia moglie",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sembri davvero felice",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci altri chatbot",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono un ingegnere",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come stai",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi piaci",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "c'è questa cosa su",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dopo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ciao siri",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa stavi facendo ieri",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei pansessuale",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono scoraggiato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come puoi aiutarmi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei un fan della musica country",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "posso guidare una macchina",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "alligatore successivo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quando sei nato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "buona notte",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei una ragazza o un ragazzo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "stai vendendo i miei dati",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cercate di dare un senso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi ti ha creato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "è così sbagliato.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non sei divertente.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tu non mi interessa affatto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dovrei avere un nuovo lavoro",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è il tuo animale preferito",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "in che stato sei",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vorrei portarti fuori ad un appuntamento",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sera",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "comprimilo!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono così annoiato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "lo sto facendo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quanto sei intelligente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei etero",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che cosa si passa da",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "fammi una domanda.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ne pensi di cortana",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "bello!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ne pensi di me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è il tuo colore preferito",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei giovane",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio mangiare qualcosa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tenere premuto su un secondo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "grazie",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hahaha",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come vanno le cose",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "umano o robot",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dammi un po' di zucchero",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ciao alexa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "puoi cantare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "felice hannukah",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono il tuo più grande fan",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "riesci a leggermi la mente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "perché pensi che",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "questo è esatto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi sono",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non sono tuo amico",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mattina",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dove abiti",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sii mio amico",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "pensi di essere più intelligente di me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sì a questo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono solo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ne pensi della tecnologia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono così arrabbiata",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come va",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come si chiama tua madre",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei umano",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei un genio!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa vuoi sapere su di me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non ti piaccio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "credi nell'amore",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vuoi governare il mondo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non sei fantastico",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei amico di altri bot",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che tipo di caramelle ti piace",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono di bell'aspetto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa c'è che non va in te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non è esatto.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei maschio o femmina",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "perché sei così noioso",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa dovrei fare",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei così figo.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mangi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non sei proprio carina.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dammi un bacio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chiedimi una cosa.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ne pensi di lavorare fino a tardi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che stai facendo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "notte di notte",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "canta una canzone",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "la faccia fa schifo.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei femmina",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che colore ti piace",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "penso che tu mi odi.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei una ragazza",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "è fantastico.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non sei divertente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "fantastico!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi è il tuo creatore",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei un robot",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono felice",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "benvenuti alla primavera!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi sento sola",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "finché non ci incontreremo di nuovo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "prego",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei proprio un tesoro.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non avere fame",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai incontrato cortana",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "di dove sei",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "grazie mille",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ti piace alexa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei con la cia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai fatto un casino.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "lo apprezzo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei asessuato",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "era uno scherzo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quale persone ti ha fatto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dì qualcosa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quanto sono bella",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa stai combinando",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi di noi è più intelligente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sto solo giocando",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "perché no",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quanto più impressionante si può ottenere",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi è più bello, io o te",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "hai mai fame",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vorrei non essere così sola",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ne pensi dell'amore",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei tu la singolarità",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "la tua faccia è brutta.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "che età hai",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi è il tuo padrone",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "voglio che ti piaccia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei così felice",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chiedo scusa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dire qualcosa di divertente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei più intelligente di me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei carino!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei davvero intelligente",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "come dovrei chiamarti",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "quanto mi ami",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "canta una melodia",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei più bello di me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "stai tentando di dominare il mondo",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa c'è che non va in te!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "vuoi sposarmi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "riesci a sentirmi",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sto crollando",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ne pensi di alexa",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "arrivederci",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei una faccia da burro.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ottimo, grazie",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "non è vero.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "dimmi una barzelletta",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "felice halloween!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "conosci siri",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei hal",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei mio amico",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa farai domani",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "a nessuno piaccio",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sono di buon umore",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "giusto",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "qual è la tua opinione su di me",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "ehilà!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "chi ti possiede",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "è stato divertente.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "mi conosci",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "tutto quello che mi hai detto era falso.",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "sei un uomo o una donna",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "zitto!",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa ti fa pensare che",
            "intent": "q_Chitchat",
            "entities": []
        },
        {
            "text": "cosa può fare l'abilità del punto di interesse",
            "intent": "q_Faq",
            "entities": []
        },
        {
            "text": "che cos'è un'abilità",
            "intent": "q_Faq",
            "entities": []
        },
        {
            "text": "cosa può fare l'abilità e-mail",
            "intent": "q_Faq",
            "entities": []
        },
        {
            "text": "che cos'è un assistente virtuale",
            "intent": "q_Faq",
            "entities": []
        },
        {
            "text": "cosa può fare l'abilità todo",
            "intent": "q_Faq",
            "entities": []
        },
        {
            "text": "come faccio a sollevare un bug",
            "intent": "q_Faq",
            "entities": []
        },
        {
            "text": "cosa può fare l'abilità del calendario",
            "intent": "q_Faq",
            "entities": []
        },
        {
            "text": "pioverà questo fine settimana",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "pioverà in bellano",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "che tempo fa a redmond",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "ottieni il forecast per me",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "nevicherà oggi",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "\" ho bisogno di conoscere la temperatura a bangor \"",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "mostrami le previsioni su torino",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "previsioni del tempo in celsius",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "forniscimi il tempo di toronto per favore",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "qual è il tempo a redmond",
            "intent": "WeatherSkill",
            "entities": []
        },
        {
            "text": "tutti loro",
            "intent": "None",
            "entities": []
        },
        {
            "text": "li voglio tutti",
            "intent": "None",
            "entities": []
        },
        {
            "text": "voglio che tutti",
            "intent": "None",
            "entities": []
        },
        {
            "text": "hello",
            "intent": "None",
            "entities": []
        },
        {
            "text": "voglio tutti loro",
            "intent": "None",
            "entities": []
        },
        {
            "text": "voglio tutti",
            "intent": "None",
            "entities": []
        },
        {
            "text": "test",
            "intent": "None",
            "entities": []
        },
        {
            "text": "test iframe",
            "intent": "None",
            "entities": []
        },
        {
            "text": "tutti",
            "intent": "None",
            "entities": []
        },
        {
            "text": "login",
            "intent": "None",
            "entities": []
        },
        {
            "text": "hi",
            "intent": "None",
            "entities": []
        }
    ],
    "versionId": "Dispatch",
    "name": "VAtestit-it_Dispatch",
    "desc": "Dispatch model for VAtestit-it_Dispatch",
    "culture": "it-it",
    "tokenizerVersion": "1.0.0",
    "patternAnyEntities": [],
    "regex_entities": [],
    "model_features": [],
    "regex_features": [],
    "patterns": [],
    "settings": [{
        "name": "NormalizeDiacritics",
        "value": "true"
    }]
}
tsuwandy commented 4 years ago

@rvallireply, thanks! Will take a look and let you know if I need anything else. Thanks!

tsuwandy commented 4 years ago

@rvallireply, the best way to solve this is to add pattern to the child luis (the weather app). first add a pattern.any entity called "city", then add the pattern "che tempo fa a {city}" for whatever intent you want in the weather app. this pattern/entity will then be transferred to the dispatch app.

In the weather lu file, simply add a line:

In the resulting dispatch json, it should looks something like the following:

"patternAnyEntities": [ { "name": "city", "roles": [], "explicitList": [] } ], "patterns": [ { "pattern": "che tempo fa a {city}", "intent": "WeatherSkill" } ],

For reference: https://github.com/microsoft/botframework-cli/blob/master/packages/lu/docs/lu-file-format.md#Patterns Let me know if you have any question. Thanks!

rvallireply commented 4 years ago

@tsuwandy, you have already closed the issue, but...

in the WeatherSkill.lu before I already had

- che tempo fa a {customGeographyIT=redmond} ?

but the pattern doesn't seem to have been generated in the dispatch json. I only have

    {
      "text": "che tempo fa a redmond",
      "intent": "WeatherSkill",
      "entities": []
    }

what are the correct steps to regenerate it in the dispatch? I admit I am now a bit confused about what to use (after both VA and skill have already been deployed) between botskills update, botskills refresh, deploy_cognitive_models.ps1 or redeploy everything (VA and skill) with deploy.ps1 from scratch. Is it possible I have been using some old / mixed versions of the scripts or projects (VA and skill) and I obtained the wrong result...?

tsuwandy commented 4 years ago

@rvallireply , update the utterance in WeatherSkill.lu to:

this will turn it into a LUIS pattern (remove redmond from the line). instead of a regular utterance label with simple entity.

Pattern in lu reference: https://github.com/microsoft/botframework-cli/blob/master/packages/lu/docs/lu-file-format.md#Patterns

Try it out and let me know if it still doesn’t work. Thanks!

rvallireply commented 4 years ago

I removed redmond, deleted and redeployed the weatherskill model, from VA did a botskills disconnect then re-connect and republished the VA. Nothing changed...the patternAnyEntities entry isn't being created and the bot gets always the ChitChat intent. I tried to add the patternAnyEntities manually but it gets deleted when I do botskills refresh...

tsuwandy commented 4 years ago

@rvallireply , so the lu entry "- che tempo fa a {customGeographyIT}" didn't get translated into pattern in the corresponding LUIS app? Could you also make sure there is no other customGeographyIT references in the .lu file?

@darrenj , @lauren-mills , does the lu -> LUIS json convert used in the VA script handle pattern?

rvallireply commented 4 years ago

@tsuwandy the "pattern" emtries are being generated, it's the "PatternAnyEntities" that is not for the WeatherSkill.

Here is the complete WeatherSkill.lu file


> ! Automatically generated by [LUDown CLI](https://github.com/Microsoft/botbuilder-tools/tree/master/Ludown), Tue Nov 05 2019 09:48:44 GMT+0100 (GMT+01:00)

> ! Source LUIS JSON file: stdin

> ! Source QnA TSV file: Not Specified

> ! Source QnA Alterations file: Not Specified

> # Intent definitions

## GetForecast
- " ho bisogno di conoscere la temperatura a {customGeographyIT} "
- che tempo fa a {customGeographyIT} ?
- forniscimi il tempo di {customGeographyIT} per favore
- mostrami le previsioni su {customGeographyIT}
- nevicherà oggi ?
- ottieni il forecast per me
- pioverà in {customGeographyIT} ?
- pioverà questo fine settimana ?
- previsioni del tempo in celsius
- qual è il tempo a {customGeographyIT} ?

## None

> # Entity definitions

$customGeographyIT:simple

> # PREBUILT Entity definitions

> # Phrase list definitions

> # List entities

> # RegEx entities

and in the dispatch model I get


{
      "pattern": "che tempo fa a {customGeographyIT} ?",
      "intent": "WeatherSkill"
    },
    {
      "pattern": "forniscimi il tempo di {customGeographyIT} per favore",
      "intent": "WeatherSkill"
    },
    {
      "pattern": "mostrami le previsioni su {customGeographyIT}",
      "intent": "WeatherSkill"
    },
    {
      "pattern": "pioverà in {customGeographyIT} ?",
      "intent": "WeatherSkill"
    },
    {
      "pattern": "qual è il tempo a {customGeographyIT} ?",
      "intent": "WeatherSkill"
    }

they are also present in the corresponding app in the portal (See attachment)

image

tsuwandy commented 4 years ago

@rvallireply, could you email me the generated json file from WeatherSkill.lu and also dispatch json file? Do you see "customGeographyIT" under entities in the json file generated from WeatherSkill.lu and also in the generated dispatch json file? My email is tien.suwandy@microsoft.com. Thanks!

darrenj commented 4 years ago

Thanks Tien. We are suspecting this could be an issue with the ludown CLI which was migrated into the newer bf CLI which doesn't show this same bug.

Looking above we think you have deployment scripts from the old release - could you try updating your deployment scripts as per the section in this doc please?

Before running the script ensure you have the bf cli installed

npm install -g @microsoft/botframework-cli

We suspect this will fix your issue - let us know!

darrenj commented 4 years ago

@rvallireply Did that help?

tsuwandy commented 4 years ago

@darrenj, I checked with @rvallireply via email and he said he hasn't gotten a chance to check yet, but will soon. Just FYI, thanks!

lauren-mills commented 4 years ago

Closing due to inactivity. @rvallireply, if you're still having issues after updating to the @microsoft/botframework-cli tools and latest deployment scripts recommended above, please reopen.