Add RAG tool schema for AgentCore Gateway

This commit is contained in:
2026-07-01 04:58:05 +00:00
parent 33caa509d7
commit a3fefeead4

19
agent/tool_schema.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "get_customer_activity_summary",
"description": "Return a de-identified financial activity summary for a customer, identified ONLY by an opaque token (e.g. CUST_000123). Never accepts or returns a name.",
"inputSchema": {
"type": "object",
"properties": {
"customer_token": {
"type": "string",
"description": "Opaque customer token, e.g. CUST_000123. Pass verbatim."
},
"period_days": {
"type": "integer",
"description": "Look-back window in days.",
"default": 90
}
},
"required": ["customer_token"]
}
}