4 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
calculate_energy_savings, parse_energy_bill, get_available_offers, get_market_indices<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="calculate_energy_savings" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "calculate_energy_savings",
"description": "Confronta tariffe Luce/Gas e calcola il risparmio annuo. Accetta il testo di una bolletta (bill_text) oppure dati già estratti. MODALITÀ 1 (bolletta): passa commodity + bill_text — il tool estrae automaticamente consumi, spesa e zona. MODALITÀ 2 (dati noti): passa commodity + yearly_consumption_kwh + current_annual_spend + zone. ESEMPIO: {commodity:'LUCE', yearly_consumption_kwh:2700, zone:'NORD', current_annual_spend:850}",
"inputSchema": {
"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"
]
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": true
}
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "parse_energy_bill" /* short, unique, verb-based */ }calculate_energy_savings, parse_energy_bill, get_available_offers, get_market_indices<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="calculate_energy_savings" tooldescription="...">
<!-- the same action, as UI -->
</form>