---
title: Tool-Calling-Dataset-UIGEN-X
canonical_url: "https://www.modelscope.cn/datasets/smirki/Tool-Calling-Dataset-UIGEN-X"
md_url: "https://www.modelscope.cn/datasets/smirki/Tool-Calling-Dataset-UIGEN-X.md"
repository: smirki/Tool-Calling-Dataset-UIGEN-X
last_updated: 2025-08-12
license: apache-2.0
storage_size: "99 MB"
downloads: 196
stars: 0
---

# Tool-Calling-Dataset-UIGEN-X

> Tool-Calling-Dataset-UIGEN-X - smirki 在 ModelScope 开源的数据集。Tool Calling Dataset for UIGEN-X

smirki/Tool-Calling-Dataset-UIGEN-X 是 ModelScope 魔搭社区上的数据集，存储大小 99 MB，采用 apache-2.0 许可。

- **Repository**: smirki/Tool-Calling-Dataset-UIGEN-X
- **License**: apache-2.0
- **Storage size**: 99 MB
- **Downloads**: 196
- **Stars**: 0
- **Last updated**: 2025-08-12

Source: https://www.modelscope.cn/datasets/smirki/Tool-Calling-Dataset-UIGEN-X

---

# Tool Calling Dataset for UIGEN-X

This is a cleaned version of the [interstellarninja/hermes_reasoning_tool_use](https://huggingface.co/datasets/interstellarninja/hermes_reasoning_tool_use) dataset, specifically prepared for training with Axolotl.

## Dataset Description

- **51,004 training examples** of tool-use and reasoning conversations
- **Cleaned format** - Removed problematic `tools` column (tools are embedded in system messages)
- **Axolotl-compatible** - Works directly with `chat_template` type in Axolotl
- **Format**: Each example contains a `conversations` field with `from` and `value` keys

## Usage with Axolotl

```yaml
datasets:
  - path: smirki/Tool-Calling-Dataset-UIGEN-X
    type: chat_template
    field_messages: conversations
    message_property_mappings:
      role: from
      content: value
    split: train
```

## Example Structure

```json
{
  "conversations": [
    {
      "from": "system",
      "value": "You are a deep thinking AI with tool-use capabilities..."
    },
    {
      "from": "human", 
      "value": "User query..."
    },
    {
      "from": "gpt",
      "value": "Assistant response with tool calls..."
    }
  ]
}
```

## Original Dataset

Based on [interstellarninja/hermes_reasoning_tool_use](https://huggingface.co/datasets/interstellarninja/hermes_reasoning_tool_use) with modifications for Axolotl compatibility.

## License

Apache 2.0 (inherited from original dataset)
