Funcional

This commit is contained in:
2026-05-01 14:12:53 -03:00
parent a170a09cbd
commit 171e0bb3af
52 changed files with 1727 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
def build_csi_prompt(text):
return f"""
Classifique o sentimento do cliente.
Texto:
{text}
Opções:
- Positivo
- Neutro
- Negativo
Responda JSON:
{{
"sentimento": "Positivo/Neutro/Negativo",
"score": 0-10
}}
"""