mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
[
|
|
{
|
|
"name": "get_customer_profile",
|
|
"description": "Retrieve customer profile using customer ID, email, or phone number",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"customer_id": {
|
|
"type": "string"
|
|
},
|
|
"email": {
|
|
"type": "string"
|
|
},
|
|
"phone": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"customer_id"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"name": "check_warranty_status",
|
|
"description": "Check the warranty status of a product using its serial number and optionally verify via email",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"serial_number": {
|
|
"type": "string"
|
|
},
|
|
"customer_email": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"serial_number"
|
|
]
|
|
}
|
|
}
|
|
] |