auto_respond_common_questions
Automatically answer customer questions about store hours, location, stock availability, and pricing to reduce response time and improve customer service efficiency.
Instructions
Enable automatic responses to frequently asked questions (hours, location, stock availability).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enable | Yes | Enable or disable auto-responses | |
questionTypes | No | Types to auto-respond: hours, location, stock, pricing (comma-separated) |
Input Schema (JSON Schema)
{
"properties": {
"enable": {
"description": "Enable or disable auto-responses",
"type": "boolean"
},
"questionTypes": {
"description": "Types to auto-respond: hours, location, stock, pricing (comma-separated)",
"type": "string"
}
},
"required": [
"enable"
],
"type": "object"
}