Function Calling (experimental)
Generate function calls based on user queries
Overview
Example Use Cases
Usage
{
"model_id": "fastino-function-calling-••••••••••",
"input": [
{
"text": "Schedule a car maintenance service at the Downtown Auto Center on 15/09 at 10 AM for a sedan",
"parameters": [
{
"name": "roadside_assistance_request",
"parameters": {
"type": "dict",
"properties": {
"location": {
"type": "str",
"description": "The location of the car"
},
"issue_description": {
"type": "str",
"description": "The description of the issue"
},
"estimate_arrival_time": {
"type": "str",
"description": "The estimated arrival time of the roadside assistance"
}
}
},
"description": "Request roadside assistance for a car"
},
{
"name": "car_maintenance_scheduling",
"parameters": {
"type": "dict",
"properties": {
"car_type": {
"type": "str",
"description": "The type of car"
},
"appointment_date": {
"type": "str",
"description": "The date of the appointment"
},
"appointment_time": {
"type": "str",
"description": "The time of the appointment"
},
"service_location": {
"type": "str",
"description": "The location of the car"
}
}
},
"description": "Schedule a car maintenance service"
},
{
"name": "test_drive_booking",
"parameters": {
"type": "dict",
"properties": {
"time": {
"type": "str",
"description": "The time of the test drive"
},
"dealership": {
"type": "str",
"description": "The dealership of the car"
},
"desired_date": {
"type": "str",
"description": "The date of the test drive"
},
"model_of_interest": {
"type": "str",
"description": "The model of the car"
}
}
},
"description": "Book a test drive for a car"
}
]
}
]
}Notes
Last updated