Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,69 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- tool_calling
|
| 9 |
+
- Qwen3_4B
|
| 10 |
+
size_categories:
|
| 11 |
+
- 1K<n<10K
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# Financial Fundamentals Tool-Calling Dataset
|
| 15 |
+
|
| 16 |
+
This dataset contains synthetic examples for training and evaluating financial tool-calling models. Each example pairs a natural-language user request about company fundamentals with a structured JSON function call.
|
| 17 |
+
|
| 18 |
+
The dataset is designed for models that should translate financial requests into tool calls instead of answering directly.
|
| 19 |
+
|
| 20 |
+
## Task
|
| 21 |
+
|
| 22 |
+
Given a user query such as:
|
| 23 |
+
|
| 24 |
+
```text
|
| 25 |
+
Retrieve net income and diluted shares for Broadcom from 2006 to 2018.
|
| 26 |
+
```
|
| 27 |
+
The model should produce a JSON call like:
|
| 28 |
+
|
| 29 |
+
```
|
| 30 |
+
{
|
| 31 |
+
"action": "call",
|
| 32 |
+
"function": "get_fundamentals",
|
| 33 |
+
"arguments": {
|
| 34 |
+
"queries": [
|
| 35 |
+
{
|
| 36 |
+
"symbols": ["Broadcom"],
|
| 37 |
+
"metrics": ["Net Income", "Diluted Shares"],
|
| 38 |
+
"start_year": 2006,
|
| 39 |
+
"end_year": 2018
|
| 40 |
+
}
|
| 41 |
+
]
|
| 42 |
+
}
|
| 43 |
+
}
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
## Dataset Fields
|
| 47 |
+
|
| 48 |
+
The dataset includes fields such as:
|
| 49 |
+
|
| 50 |
+
- `query`: The natural-language financial request.
|
| 51 |
+
- `completion`: The target JSON tool call.
|
| 52 |
+
- `text`: Chat-formatted training text.
|
| 53 |
+
- `messages`: Chat-style system, user, and assistant messages.
|
| 54 |
+
- `metadata`: Generation metadata, including companies, metrics, years, and grouping information.
|
| 55 |
+
- `source_index`: Index of the original source example.
|
| 56 |
+
|
| 57 |
+
## Use Cases
|
| 58 |
+
|
| 59 |
+
This dataset can be used to train or evaluate models for:
|
| 60 |
+
|
| 61 |
+
- Financial function calling
|
| 62 |
+
- Structured JSON generation
|
| 63 |
+
- Tool routing for agentic finance systems
|
| 64 |
+
- Fundamentals retrieval request parsing
|
| 65 |
+
- Company-metric-year extraction
|
| 66 |
+
|
| 67 |
+
## Limitations
|
| 68 |
+
|
| 69 |
+
The dataset is synthetic and focused on financial fundamentals requests. It does not contain live financial values, investment advice, or real-time market data. Models trained on this dataset should have their JSON outputs validated before any downstream tool execution.
|