| [ | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "turn_on_flashlight", | |
| "description": "Accende la torcia del telefono", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "turn_off_flashlight", | |
| "description": "Spegne la torcia del telefono", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "take_selfie", | |
| "description": "Scatta un selfie con la fotocamera frontale", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "take_photo", | |
| "description": "Scatta una foto con la fotocamera posteriore", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "show_map", | |
| "description": "Mostra una posizione o percorso sulla mappa", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "query": { | |
| "type": "string", | |
| "description": "Luogo o indirizzo da cercare" | |
| } | |
| }, | |
| "required": [ | |
| "query" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "make_phone_call", | |
| "description": "Effettua una chiamata telefonica", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "contact_name": { | |
| "type": "string", | |
| "description": "Nome del contatto da chiamare" | |
| } | |
| }, | |
| "required": [ | |
| "contact_name" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "send_sms", | |
| "description": "Invia un SMS", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "contact_name": { | |
| "type": "string", | |
| "description": "Nome del destinatario" | |
| }, | |
| "message": { | |
| "type": "string", | |
| "description": "Testo del messaggio" | |
| } | |
| }, | |
| "required": [ | |
| "contact_name", | |
| "message" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "send_email", | |
| "description": "Invia un'email", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "to": { | |
| "type": "string", | |
| "description": "Indirizzo email del destinatario" | |
| }, | |
| "subject": { | |
| "type": "string", | |
| "description": "Oggetto dell'email" | |
| } | |
| }, | |
| "required": [ | |
| "to", | |
| "subject" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "set_alarm", | |
| "description": "Imposta una sveglia", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "time": { | |
| "type": "string", | |
| "description": "Orario della sveglia in formato HH:MM" | |
| } | |
| }, | |
| "required": [ | |
| "time" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "set_timer", | |
| "description": "Avvia un timer countdown", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "duration": { | |
| "type": "string", | |
| "description": "Durata del timer (es: 5 minuti, 1 ora)" | |
| } | |
| }, | |
| "required": [ | |
| "duration" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "create_calendar_event", | |
| "description": "Crea un evento nel calendario", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "title": { | |
| "type": "string", | |
| "description": "Titolo dell'evento" | |
| }, | |
| "datetime": { | |
| "type": "string", | |
| "description": "Data e ora in formato ISO 8601" | |
| } | |
| }, | |
| "required": [ | |
| "title", | |
| "datetime" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "create_contact", | |
| "description": "Crea un nuovo contatto nella rubrica", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "first_name": { | |
| "type": "string", | |
| "description": "Nome" | |
| }, | |
| "last_name": { | |
| "type": "string", | |
| "description": "Cognome" | |
| } | |
| }, | |
| "required": [ | |
| "first_name", | |
| "last_name" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "web_search", | |
| "description": "Cerca informazioni su internet", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "query": { | |
| "type": "string", | |
| "description": "Testo da cercare" | |
| } | |
| }, | |
| "required": [ | |
| "query" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "open_app", | |
| "description": "Apre un'applicazione", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "app_name": { | |
| "type": "string", | |
| "description": "Nome dell'app da aprire" | |
| } | |
| }, | |
| "required": [ | |
| "app_name" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "open_settings", | |
| "description": "Apre le impostazioni del telefono", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "open_wifi_settings", | |
| "description": "Apre le impostazioni WiFi", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "open_bluetooth_settings", | |
| "description": "Apre le impostazioni Bluetooth", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "create_note", | |
| "description": "Crea una nota", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "text": { | |
| "type": "string", | |
| "description": "Testo della nota" | |
| } | |
| }, | |
| "required": [ | |
| "text" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "take_screenshot", | |
| "description": "Cattura uno screenshot dello schermo", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "play_music", | |
| "description": "Riproduce musica", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "song": { | |
| "type": "string", | |
| "description": "Titolo della canzone (opzionale)" | |
| }, | |
| "artist": { | |
| "type": "string", | |
| "description": "Nome dell'artista (opzionale)" | |
| }, | |
| "playlist": { | |
| "type": "string", | |
| "description": "Nome della playlist (opzionale)" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "pause_music", | |
| "description": "Mette in pausa la riproduzione musicale", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "set_volume", | |
| "description": "Imposta il volume del telefono", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "level": { | |
| "type": "integer", | |
| "description": "Livello volume da 0 a 100" | |
| } | |
| }, | |
| "required": [ | |
| "level" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "enable_airplane_mode", | |
| "description": "Attiva la modalità aereo", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "disable_airplane_mode", | |
| "description": "Disattiva la modalità aereo", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {} | |
| } | |
| } | |
| } | |
| ] |