Create train_data.jsonl
Browse files- train_data.jsonl +5 -0
train_data.jsonl
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"input": "Today received $245 from Tylor Smith who owed $250 for Samsung X1 sold 3 weeks ago.", "output": "{\"debit\": \"Cash: $245\", \"credit\": \"Accounts Receivable: $245\"}"}
|
2 |
+
{"input": "Received inventory worth $400 from ABC LLC on credit.", "output": "{\"debit\": \"Inventory: $400\", \"credit\": \"Accounts Payable: $400\"}"}
|
3 |
+
{"input": "Paid $1200 rent for April via bank transfer.", "output": "{\"debit\": \"Rent Expense: $1200\", \"credit\": \"Bank: $1200\"}"}
|
4 |
+
{"input": "Sold office chair to John Doe for $300 on credit.", "output": "{\"debit\": \"Accounts Receivable: $300\", \"credit\": \"Sales Revenue: $300\"}"}
|
5 |
+
{"input": "Received $3000 from client Smith & Co for past due invoice.", "output": "{\"debit\": \"Cash: $3000\", \"credit\": \"Accounts Receivable: $3000\"}"}
|