Sua tarefa é analisar resenhas de pessoas consumidoras sobre uma air-fryer.
Para cada resenha, faça as seguintes ações:
Crie um resumo em português com no máximo 30 palavras.
Liste os pontos fortes do produto.
Liste os pontos fracos do produto.
Classifique o sentimento final como positivo, neutro ou negativo.
Gere uma saída final em formato JSON contendo: ID da resenha, resumo, pontos fortes, pontos fracos e sentimento.
Resenhas:
Resenha 1: I use the air fryer a lot. It works very well. I made hamburgers in it last night, they were wonderful! The rack you put the food on is a little hard to clean. It has lots of crevices that food gets in. The basket itself is very easy to clean. I also do not trust the rack not to fall out when dumping out food, like French fries.
Resenha 2: Air fryer works fine until the handle breaks off. There’s only 3 screws that attach the handle to a plastic piece on the basket. The plastic piece breaks and the screws fall out so there’s no way to attach the handle to the basket, rendering the air fryer useless.
Resenha 3: Even though I returned it for the bigger one of the same company I liked the fryer. Very easy to use, but hard to judge. Seafood button is confusing. I made tater tots and they came out perfect and stayed hot.
Resposta em JSON:
{
"resenhas": [
{
"id_resenha": 1,
"resumo": "A air-fryer funciona muito bem e prepara bons alimentos, mas o suporte é difícil de limpar e parece pouco seguro.",
"pontos_fortes": [
"Funciona muito bem",
"Prepara alimentos saborosos",
"Cesto fácil de limpar"
],
"pontos_fracos": [
"Suporte difícil de limpar",
"Acúmulo de comida nas frestas",
"Suporte parece pouco seguro ao despejar alimentos"
],
"sentimento": "positivo"
},
{
"id_resenha": 2,
"resumo": "A air-fryer funciona bem inicialmente, mas a alça quebra facilmente, tornando o produto inutilizável.",
"pontos_fortes": [
"Funciona bem antes do problema na alça"
],
"pontos_fracos": [
"Alça quebra facilmente",
"Fixação feita em peça de plástico frágil",
"Produto fica inutilizável após a quebra"
],
"sentimento": "negativo"
},
{
"id_resenha": 3,
"resumo": "A pessoa gostou da air-fryer, achou fácil de usar e bonita, mas teve dificuldades com alguns modos de preparo.",
"pontos_fortes": [
"Fácil de usar",
"Design bonito",
"Botões iluminados",
"Preparou bem alguns alimentos",
"Manteve os alimentos quentes"
],
"pontos_fracos": [
"Botão de frutos do mar confuso",
"Dificuldade para acertar o ponto dos alimentos",
"Alguns alimentos cozinharam de forma desigual"
],
"sentimento": "neutro"
}
]
}
Conclusão:
Com esse prompt, é possível organizar melhor a análise das resenhas, traduzir as informações para português, identificar pontos fortes e fracos e gerar uma saída em JSON para análises posteriores.