Prompt:
Uma loja on-line americana que vende air-fryers quer entender as opiniões dos consumidores do seu produto sobre o desempenho e as suas funcionalidades. Algumas opiniões de consumidores estão descritas abaixo em três resenhas delimitadas por """.
Sua tarefa será analisar as seguintes resenhas de pessoas que compraram o produto na loja online americana.
Resenhas:
"""
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.
"""
A empresa deseja o seguinte de cada resenha:
- Um resumo em português com no máximo 30 palavras;
- Uma lista com os pontos fortes do aparelho;
- Uma lista com os pontos fracos do aparelho;
- O sentimento final da pessoa em relação ao produto, ou seja, se o sentimento é positivo, neutro ou negativo.
Na sua resposta gere como resultado um arquivo no formato "JSON". Neste arquivo JSON, você deve especificar 5 chaves:
- ID da resenha
- Resumo
- Lista de pontos fortes
- Lista de pontos fracos
- Sentimento
Resposta:
[
{
"ID da resenha": 1,
"Resumo": "Produto funciona muito bem e prepara alimentos saborosos, mas a grade é difícil de limpar e parece insegura ao retirar os alimentos.",
"Lista de pontos fortes": [
"Bom desempenho no preparo dos alimentos",
"Hambúrgueres ficaram saborosos",
"Cesto fácil de limpar",
"Uso frequente sem problemas"
],
"Lista de pontos fracos": [
"Grade difícil de limpar",
"Acúmulo de comida nas frestas",
"Grade parece solta ao despejar alimentos"
],
"Sentimento": "positivo"
},
{
"ID da resenha": 2,
"Resumo": "A fritadeira funciona bem inicialmente, mas o cabo quebra facilmente, tornando o aparelho inutilizável devido à fragilidade da fixação.",
"Lista de pontos fortes": [
"Funcionamento adequado no início"
],
"Lista de pontos fracos": [
"Cabo quebra facilmente",
"Fixação frágil com apenas três parafusos",
"Peça plástica se rompe",
"Produto fica inutilizável após defeito"
],
"Sentimento": "negativo"
},
{
"ID da resenha": 3,
"Resumo": "Produto bonito e fácil de usar, prepara alguns alimentos muito bem, mas possui dificuldade nas configurações e cozimento inconsistente.",
"Lista de pontos fortes": [
"Design moderno",
"Botões iluminados",
"Fácil de usar",
"Batatas ficaram perfeitas",
"Mantém os alimentos quentes",
"Cliente gostou da marca"
],
"Lista de pontos fracos": [
"Configurações confusas",
"Botão de frutos do mar pouco claro",
"Dificuldade para acertar o cozimento",
"Frango ficou cru de um lado"
],
"Sentimento": "positivo"
}
]