| --- |
| license: mit |
| tags: |
| - tool-calling |
| - fine-tuning |
| - military |
| - intelligence |
| - korean |
| - geo |
| --- |
| |
| # Intsum300MsToolCall |
|
|
| Tool-calling fine-tuning dataset generated from [IntsumTest300Ms](https://huggingface.co/datasets/umannedice/IntsumTest300Ms) with geo and calculation tool annotations. |
|
|
| ## Dataset details |
|
|
| - **Samples**: 300 |
| - **Format**: JSONL (one JSON object per line) |
| - **Source**: `umannedice/IntsumTest300Ms` |
|
|
| ## Fields |
|
|
| | Field | Type | Description | |
| |-------|------|-------------| |
| | `id` | string | Unique sample ID (`sample_0000` to `sample_0299`) | |
| | `messages` | array | Chat messages with tool calls | |
| | `metadata` | object | Original data references | |
|
|
| ## Message format |
|
|
| ```json |
| { |
| "messages": [ |
| {"role": "user", "content": "..."}, |
| { |
| "role": "assistant", |
| "content": "위치 정보를 확인하고 거리 계산을 진행합니다.", |
| "tool_calls": [ |
| { |
| "id": "call_000", |
| "type": "geo_tool", |
| "function": "resolve_location", |
| "arguments": {"latitude": 38.3123, "longitude": 128.3456, "source": "TR-DRONE-001"} |
| }, |
| { |
| "id": "call_001", |
| "type": "calc_tool", |
| "function": "calculate_distance", |
| "arguments": { |
| "from": {"lat": 38.3123, "lon": 128.3456}, |
| "to": {"lat": 38.321, "lon": 128.367}, |
| "directions": true, |
| "unit": "km" |
| } |
| } |
| ] |
| }, |
| {"role": "tool", "tool_call_id": "call_000", "content": "..."}, |
| {"role": "tool", "tool_call_id": "call_001", "content": "..."}, |
| {"role": "assistant", "content": "위치 확인 및 거리 계산 완료..."} |
| ] |
| } |
| ``` |
|
|
| ## Tools |
|
|
| - **geo_tool** (`resolve_location`) — resolves location names or coordinates |
| - **calc_tool** (`calculate_distance`) — calculates distance, bearing, and 16-direction bearing |
|
|
| ## Statistics |
|
|
| - **Samples with tool calls**: 271 |
| - **Samples without tool calls**: 29 |
|
|