categorize_transaction
Automatically categorize transactions by analyzing amount, description, and type using AI to simplify financial management for Norman Finance users.
Instructions
Detect category for a transaction using AI.
Args:
transaction_amount: Amount of the transaction
transaction_description: Description of the transaction
transaction_type: Type of transaction ("income" or "expense")
Returns:
Suggested category information for the transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
transaction_amount | Yes | ||
transaction_description | Yes | ||
transaction_type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"transaction_amount": {
"title": "Transaction Amount",
"type": "number"
},
"transaction_description": {
"title": "Transaction Description",
"type": "string"
},
"transaction_type": {
"title": "Transaction Type",
"type": "string"
}
},
"required": [
"transaction_amount",
"transaction_description",
"transaction_type"
],
"title": "categorize_transactionArguments",
"type": "object"
}