-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
75 lines (67 loc) · 2.27 KB
/
config.example.json
File metadata and controls
75 lines (67 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"api_key": "YOUR_API_KEY_HERE",
"locale": {
"country": "USA",
"date_format": "MM/DD/YYYY",
"currency": "USD",
"currency_symbol": "$"
},
"claude": {
"model": "claude-sonnet-4-20250514",
"max_tokens": 1500,
"temperature": 0.0
},
"excel": {
"filename_template": "receipts_{year}-{month}.xlsx",
"sheet_names": {
"main": "All Receipts",
"review": "Needs Review",
"summary": "Summary"
},
"columns": [
{"key": "date", "header": "Date", "width": 14},
{"key": "vendor", "header": "Vendor", "width": 22},
{"key": "location", "header": "Location", "width": 25},
{"key": "subtotal", "header": "Subtotal", "width": 13},
{"key": "tax", "header": "Tax", "width": 11},
{"key": "tip", "header": "Tip", "width": 11},
{"key": "total", "header": "Total", "width": 13},
{"key": "payment_method", "header": "Payment", "width": 15},
{"key": "card_last_4", "header": "Card Last 4", "width": 14},
{"key": "category", "header": "Category", "width": 22},
{"key": "state", "header": "State", "width": 10},
{"key": "notes", "header": "Notes", "width": 30}
]
},
"categories": [
"Meals & Entertainment",
"Transportation",
"Lodging",
"Office Supplies",
"Client Entertainment",
"Travel Expenses",
"Gas & Fuel",
"Parking & Tolls",
"Communication",
"Miscellaneous"
],
"validation": {
"confidence_threshold": 0.95,
"flag_for_review_threshold": 0.85,
"max_amount": 50000,
"min_amount": 0.01
},
"upload": {
"max_file_size_mb": 15,
"max_files_per_batch": 100,
"allowed_extensions": ["jpg", "jpeg", "png", "pdf", "webp"]
},
"security": {
"rate_limit_per_minute": 30
},
"server": {
"host": "127.0.0.1",
"port": 5000,
"fallback_ports": [5001, 5002, 8080, 8888]
}
}