# bfcl / bfcl-live-multiple-731-167-2 - taskset: [bfcl](https://harnessreport.com/tasks/bfcl.md) - difficulty: medium - category: function_calling - language: - runnable from the site: no - agent timeout: 300s ## Results by harness _none yet_ ## Instruction ``` # Task Could you assist me in finding a home to rent in San Francisco? I'm looking for a place with at least 3 bedrooms and 2 bathrooms. It would be great if it had a garage and in-unit laundry facilities as well. ## Available Functions Based on the question, you will need to make one or more function/tool calls to achieve the purpose. If none of the functions can be used, do not invoke any function. If the given question lacks the parameters required by the function, do not invoke the function. Here is a list of functions in JSON format that you can invoke. [ { "name": "Homes_2_FindHomeByArea", "description": "Search for properties to rent or buy in a specified city, with filters for the number of bedrooms and bathrooms, as well as the presence of a garage and in-unit laundry facilities.", "parameters": { "type": "dict", "required": [ "area", "intent", "number_of_beds", "number_of_baths" ], "properties": { "area": { "type": "string", "description": "The city where the search for properties is conducted, in the format of 'City, State' (e.g., 'Los Angeles, CA')." }, "intent": { "type": "string", "description": "The intention behind the property search, either to rent or to buy.", "enum": [ "rent", "buy" ] }, "number_of_beds": { "type": "integer", "description": "The number of bedrooms required in the property." }, "number_of_baths": { "type": "integer", "description": "The number of bathrooms required in the property." }, "has_garage": { "type": "boolean", "description": "Specifies if the property must have a garage.", "default": false }, "in_unit_laundry": { "type": "string", "description": "Specifies if the property must have in-unit laundry facilities. The default is 'dontcare', which includes properties regardless of laundry facilities.", "enum": [ "True", "False", "dontcare" ], "default": "dontcare" } } } }, { "name": "Homes_2_ScheduleVisit", "description": "Schedules a visit to a property on a given date, allowing a prospective buyer or renter to view the property in person.", "parameters": { "type": "dict", "required": [ "property_name", "visit_date" ], "properties": { "property_name": { "type": "string", "description": "The exact name of the property or apartment complex to be visited." }, "visit_date": { "type": "string", "description": "The scheduled date for the property visit, in the format 'YYYY-MM-DD', such as '2023-04-15'." }, "visitor_contact": { "type": "string", "description": "The contact information of the visitor, preferably a phone number or email address.", "default": null }, "special_requests": { "type": "string", "description": "Any special requests or considerations for the visit, such as accessibility needs or time preferences.", "default": "None" } } } }, { "name": "Messaging_1_ShareLocation", "description": "Shares the current geographic coordinates with a specified contact.", "parameters": { "type": "dict", "required": [ "location", "contact_name" ], "properties": { "location": { "type": "string", "description": "The current location in the format of 'Latitude, Longitude' (e.g., '34.052235, -118.243683')." }, "contact_name": { "type": "string", "description": "The full name of the contact to whom the location will be sent." } } } }, { "name": "RideSharing_2_GetRide", "description": "Book a cab for a specified destination, with a choice of the number of seats and ride type.", "parameters": { "type": "dict", "required": [ "destination", "number_of_seats", "ride_type" ], "properties": { "destination": { "type": "string", "description": "The destination address or location for the cab, in the format of 'Street, City, State'." }, "number_of_seats": { "type": "string", "description": "The number of seats to reserve in the cab.", "enum": [ "1", "2", "3", "4" ] }, "ride_type": { "type": "string", "description": "The type of cab ride being requested.", "enum": [ "Pool", "Regular", "Luxury" ] } } } } ] ## Output Analyze the request and determine the appropriate function call(s). Write ONLY a JSON array to `/app/result.json`. Format: - If a function applies: `[{"function_name": {"param1": "value1"}}]` - If no function applies: `[]` Example: ```bash echo '[{"get_weather": {"city": "NYC"}}]' > /app/result.json ``` IMPORTANT: You MUST execute the command to write the file. ``` --- Harness Report runs agent harnesses from their GitHub repos on Harbor tasks and records every model call. Every page is also `.md` and `.json`; index: https://harnessreport.com/llms.txt · MCP: https://harnessreport.com/mcp