Input schema
{
"type": "object",
"properties": {
"commodity": {
"type": "string",
"enum": [
"LUCE",
"GAS"
],
"description": "LUCE per elettricità o GAS per gas metano",
"default": "LUCE"
},
"bill_text": {
"type": "string",
"description": "(Solo se hai il testo della bolletta) Passa il testo completo per estrarre automaticamente i dati."
},
"yearly_consumption_kwh": {
"type": "number",
"description": "Consumo annuo in kWh (LUCE). Es: 2700.",
"default": 2700
},
"yearly_consumption_smc": {
"type": "number",
"description": "Consumo annuo in Smc (GAS). Es: 1000.",
"default": 1000
},
"zone": {
"type": "string",
"enum": [
"NORD",
"CENTRO",
"SUD"
],
"description": "Zona tariffaria italiana.",
"default": "NORD"
},
"current_supplier": {
"type": "string",
"description": "Nome fornitore attuale es: 'Enel Energia'"
},
"current_annual_spend": {
"type": "number",
"description": "Spesa annua in € es: 850",
"default": 650
}
},
"required": [
"commodity"
]
}