Define the input schema for the trip planning task
First, we define what inputs our task expects:
input_schema: type: object properties: locations: type: array items: type: string
This schema specifies that our task expects an array of location strings (e.g., ["New York", "London", "Paris"]).
["New York", "London", "Paris"]