Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,35 +1,57 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
dtype: string
|
| 16 |
-
- name: invoke_examples
|
| 17 |
-
dtype: string
|
| 18 |
-
- name: reliability_score
|
| 19 |
-
dtype: string
|
| 20 |
-
- name: latency_ms_p50
|
| 21 |
-
dtype: string
|
| 22 |
-
- name: metadata
|
| 23 |
-
dtype: string
|
| 24 |
-
splits:
|
| 25 |
-
- name: train
|
| 26 |
-
num_bytes: 1006576
|
| 27 |
-
num_examples: 1200
|
| 28 |
-
download_size: 172613
|
| 29 |
-
dataset_size: 1006576
|
| 30 |
-
configs:
|
| 31 |
-
- config_name: default
|
| 32 |
-
data_files:
|
| 33 |
-
- split: train
|
| 34 |
-
path: data/train-*
|
| 35 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- feature-extraction
|
| 5 |
+
- zero-shot-classification
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
tags:
|
| 9 |
+
- agent
|
| 10 |
+
- tools
|
| 11 |
+
- function-calling
|
| 12 |
+
- api
|
| 13 |
+
size_categories:
|
| 14 |
+
- 1K<n<10K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
+
|
| 17 |
+
# SAGE Agent Tools Dataset
|
| 18 |
+
|
| 19 |
+
Curated catalog of 1200+ agent tools with structured metadata for tool selection and usage.
|
| 20 |
+
|
| 21 |
+
## Dataset Description
|
| 22 |
+
|
| 23 |
+
This dataset provides a comprehensive catalog of tools that AI agents can use, including APIs, utilities, and services across multiple categories.
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
from datasets import load_dataset
|
| 29 |
+
|
| 30 |
+
dataset = load_dataset("intellistream/sage-agent-tools")
|
| 31 |
+
|
| 32 |
+
# Access tools
|
| 33 |
+
for tool in dataset['train']:
|
| 34 |
+
print(tool['tool_id'], tool['tool_name'])
|
| 35 |
+
print(tool['category'])
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Fields
|
| 39 |
+
|
| 40 |
+
- `tool_id`: Unique identifier
|
| 41 |
+
- `tool_name`: Human-readable name
|
| 42 |
+
- `description`: Tool functionality description
|
| 43 |
+
- `category`: Tool category (e.g., "weather", "search")
|
| 44 |
+
- `capabilities`: List of capabilities (JSON string)
|
| 45 |
+
- `parameters`: JSON schema for parameters (JSON string)
|
| 46 |
+
- `api_endpoint`: API URL (if applicable)
|
| 47 |
+
|
| 48 |
+
## Citation
|
| 49 |
+
|
| 50 |
+
```bibtex
|
| 51 |
+
@software{sage_data_2026,
|
| 52 |
+
author = {IntelliStream Team},
|
| 53 |
+
title = {SAGE Data: Unified Dataset Management},
|
| 54 |
+
year = {2026},
|
| 55 |
+
url = {https://github.com/intellistream/sageData}
|
| 56 |
+
}
|
| 57 |
+
```
|