repair_cost
Calculate repair cost estimates for home repairs by providing the repair type and zip code to get localized pricing information.
Instructions
Get repair cost estimate for home repairs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repair_type | Yes | ||
| zip_code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"repair_type": {
"title": "Repair Type",
"type": "string"
},
"zip_code": {
"title": "Zip Code",
"type": "string"
}
},
"required": [
"repair_type",
"zip_code"
],
"type": "object"
}