File size: 1,902 Bytes
45aa909 5ab6fb0 45aa909 5ab6fb0 | 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 | ---
license: apache-2.0
task_categories:
- text-generation
language:
- en
tags:
- tool_calling
- Qwen3_4B
size_categories:
- 1K<n<10K
---
# Financial Fundamentals Tool-Calling Dataset
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.
The dataset is designed for models that should translate financial requests into tool calls instead of answering directly.
## Task
Given a user query such as:
```text
Retrieve net income and diluted shares for Broadcom from 2006 to 2018.
```
The model should produce a JSON call like:
```
{
"action": "call",
"function": "get_fundamentals",
"arguments": {
"queries": [
{
"symbols": ["Broadcom"],
"metrics": ["Net Income", "Diluted Shares"],
"start_year": 2006,
"end_year": 2018
}
]
}
}
```
## Dataset Fields
The dataset includes fields such as:
- `query`: The natural-language financial request.
- `completion`: The target JSON tool call.
- `text`: Chat-formatted training text.
- `messages`: Chat-style system, user, and assistant messages.
- `metadata`: Generation metadata, including companies, metrics, years, and grouping information.
- `source_index`: Index of the original source example.
## Use Cases
This dataset can be used to train or evaluate models for:
- Financial function calling
- Structured JSON generation
- Tool routing for agentic finance systems
- Fundamentals retrieval request parsing
- Company-metric-year extraction
## Limitations
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. |