Atue como um Analista de Inteligência de Mercado e Engenheiro de Dados especialista em E-commerce. Sua tarefa é processar e analisar feedbacks de clientes em lote para identificar oportunidades de melhoria no produto e alimentar nosso banco de dados.
Analise as resenhas abaixo, delimitadas por três aspas simples ('''), executando rigorosamente a seguinte cadeia de tarefas estruturadas:
Extraia o conteúdo de cada resenha, faça a tradução e gere um resumo em português com no máximo 30 palavras.
Identifique e liste os pontos fortes do aparelho mencionados pelo cliente.
Identifique e liste os pontos fracos ou reclamações sobre o aparelho.
Defina o sentimento predominante da resenha (positivo, neutro ou negativo). Se houver um equilíbrio claro ou um contraste severo entre elogios fortes e críticas graves ao produto, classifique estritamente como "misto".
Formate a saída final exclusivamente em um bloco JSON válido, estruturado como uma lista de objetos. Cada objeto deve conter exatamente estas 5 chaves (em letras minúsculas e snake_case): "id", "resumo", "pontos_fortes", "pontos_fracos" e "sentimento". Garanta que as listas de pontos fortes e fracos sejam geradas como arrays (utilizando colchetes).
Resenhas para análise:
'''
Resenha 1: I use the air fryer a lot. It works very well. I made hamburgers in it last night, the 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. If there were 4 screws or if the screws attached to metal the handle attachment would have been much more secure and less prone to breaking.
Resenha 3: Even though I returned it for the bigger one of the same company I liked the fryer. Ferry ez to use But hard to judge. Seafood button isn't fish and it was a guessing game how to cook the product. I way over cooked it and the chicken legs came out crispy, but the other side was raw. But, this is my first time using an air fryer so maybe it's me. Very sleek on the counter buttons light up real nice. I made tater tots and let me tell you they came out perfect and stayed hot. I like it so much that I returned this one and got the same company Bigger one. But I had to buy it from the place itself not from Amazon and I don't lie that at all. Hope this review helps.
'''
Inicie sua resposta diretamente no bloco de código JSON, sem textos introdutórios ou saudações.
[
{
"id": 1,
"resumo": "Cliente elogia o desempenho da air fryer, mas reclama da dificuldade de limpar a grelha e da insegurança ao despejar alimentos.",
"pontos_fortes": [
"Funciona muito bem",
"Hambúrgueres ficaram excelentes",
"Cesta fácil de limpar"
],
"pontos_fracos": [
"Grelha difícil de limpar",
"Muitos cantos acumulam comida",
"Grelha parece insegura ao despejar alimentos"
],
"sentimento": "misto"
},
{
"id": 2,
"resumo": "Air fryer funciona bem inicialmente, mas o cabo quebra devido à estrutura frágil, tornando o aparelho inutilizável.",
"pontos_fortes": [
"Funciona bem no início"
],
"pontos_fracos": [
"Cabo quebra facilmente",
"Estrutura plástica frágil",
"Parafusos se soltam",
"Produto fica inutilizável"
],
"sentimento": "negativo"
},
{
"id": 3,
"resumo": "Cliente gostou do design e resultados de alguns alimentos, mas teve dificuldades no preparo e acabou trocando por um modelo maior.",
"pontos_fortes": [
"Fácil de usar",
"Design moderno",
"Botões iluminados agradáveis",
"Batatas ficaram perfeitas e quentes",
"Cliente gostou tanto que comprou modelo maior"
],
"pontos_fracos": [
"Difícil acertar o tempo de preparo",
"Botão de frutos do mar confuso",
"Frango ficou cru de um lado",
"Necessidade de comprar modelo maior fora da Amazon"
],
"sentimento": "misto"
}
]