File size: 1,964 Bytes
92df380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
70
71
72
73
74
75
---
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