Shuhaohust commited on
Commit
88d8a1c
·
verified ·
1 Parent(s): f82cca5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -33
README.md CHANGED
@@ -1,35 +1,57 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: tool_id
5
- dtype: string
6
- - name: name
7
- dtype: string
8
- - name: category
9
- dtype: string
10
- - name: capabilities
11
- dtype: string
12
- - name: inputs
13
- dtype: string
14
- - name: outputs
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
+ ```