rohanbalkondekar
commited on
Commit
·
a6b6b2d
1
Parent(s):
ba3b411
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[<img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/OpenAccess-AI-Collective/axolotl)
|
2 |
+
|
3 |
+
The Model Generates JSON for the following Five Actions
|
4 |
+
|
5 |
+
```jsonl
|
6 |
+
// When the user asks for account balance without specifying the account type
|
7 |
+
// Example: What is my current account balance?
|
8 |
+
{"action": "account_balance", "type": "default"}
|
9 |
+
|
10 |
+
// When the user asks for the account balance in his checking account
|
11 |
+
// Example: What's the balance in my checking account?
|
12 |
+
{"action": "account_balance", "type": "checking"}
|
13 |
+
|
14 |
+
// When the user asks for the account balance in his savings account
|
15 |
+
// Example: What's the balance in my savings account?
|
16 |
+
{"action": "account_balance", "type": "savings"}
|
17 |
+
|
18 |
+
// When the user asks for an account statement without specifying any date range
|
19 |
+
// Example: I need my account statement.
|
20 |
+
{"action": "account_statement", "type": "default"}
|
21 |
+
|
22 |
+
// When the user asks for an account statement with a specified date range
|
23 |
+
// Example: Show me my statement from September 10th, 2023 to September 15th, 2023.
|
24 |
+
{"action": "account_statement", "type": "custom", "start_date": "10/09/2023", "end_date": "15/09/2023" }
|
25 |
+
```
|
26 |
+
|