AgentSearch commited on
Commit
7675699
·
verified ·
1 Parent(s): 2ce9086

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +114 -44
README.md CHANGED
@@ -1,44 +1,114 @@
1
- ---
2
- license: mit
3
- dataset_info:
4
- features:
5
- - name: agent_id
6
- dtype: string
7
- - name: platform_name
8
- dtype: string
9
- - name: agent_name
10
- dtype: string
11
- - name: agent_description
12
- dtype: string
13
- - name: agent_category
14
- dtype: string
15
- - name: agent_usage
16
- dtype: string
17
- - name: usage_example
18
- dtype: float64
19
- - name: agent_url
20
- dtype: string
21
- - name: agent_accessibility
22
- dtype: string
23
- - name: agent_pricing
24
- dtype: string
25
- - name: base_model
26
- dtype: string
27
- - name: update_time
28
- dtype: string
29
- - name: misc
30
- dtype: string
31
- - name: platform_id
32
- dtype: string
33
- splits:
34
- - name: train
35
- num_bytes: 14529673
36
- num_examples: 9759
37
- download_size: 6044862
38
- dataset_size: 14529673
39
- configs:
40
- - config_name: default
41
- data_files:
42
- - split: train
43
- path: data/train-*
44
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: agent_id
5
+ dtype: string
6
+ - name: platform_name
7
+ dtype: string
8
+ - name: agent_name
9
+ dtype: string
10
+ - name: agent_description
11
+ dtype: string
12
+ - name: agent_category
13
+ dtype: string
14
+ - name: agent_usage
15
+ dtype: string
16
+ - name: usage_example
17
+ dtype: float64
18
+ - name: agent_url
19
+ dtype: string
20
+ - name: agent_accessibility
21
+ dtype: string
22
+ - name: agent_pricing
23
+ dtype: string
24
+ - name: base_model
25
+ dtype: string
26
+ - name: update_time
27
+ dtype: string
28
+ - name: misc
29
+ dtype: string
30
+ - name: platform_id
31
+ dtype: string
32
+ splits:
33
+ - name: agents
34
+ num_bytes: 14529673
35
+ num_examples: 9759
36
+ download_size: 6044862
37
+ dataset_size: 14529673
38
+ configs:
39
+ - config_name: default
40
+ data_files:
41
+ - split: agents
42
+ path: data/train-*
43
+ ---
44
+
45
+ # AgentSearchBench Agents
46
+
47
+ **AgentSearchBench** is a large-scale benchmark for AI agent search, built from nearly 10,000 real-world agents sourced from the [GPT Store](https://chatgpt.com/gpts), [Google Cloud Marketplace](https://cloud.google.com/marketplace), and [AgentAI Platform](https://agent.ai/).
48
+
49
+ 🌐 [Project Page](https://bingo-w.github.io/AgentSearchBench) • 💻 [Codebase](https://github.com/Bingo-W/AgentSearchBench)
50
+
51
+ ---
52
+
53
+ ## Overview
54
+
55
+ This repository contains **AgentBase**, the agent corpus underlying AgentSearchBench. It comprises 9,759 real-world AI agents crawled from public platforms, capturing practical challenges such as capability overlap and inconsistent documentation that reflect the complexity of real agent ecosystems.
56
+
57
+ Each agent entry includes metadata such as name, description, capabilities, and platform of origin, forming the candidate pool against which benchmark tasks are evaluated.
58
+
59
+ ---
60
+
61
+ ## Dataset Statistics
62
+
63
+ | Platform | Description |
64
+ |----------|-------------|
65
+ | GPT Store | Custom GPT agents from OpenAI's public marketplace |
66
+ | Google Cloud Marketplace | Cloud-native agents and tools |
67
+ | AgentAI Platform | General-purpose agents from agent.ai |
68
+
69
+ | Total Agents |
70
+ |---|
71
+ | 9,759 |
72
+
73
+ ---
74
+
75
+ ## Data Fields
76
+
77
+ - `agent_id`: Unique identifier for the agent.
78
+ - `platform_name`: Name of the platform where the agent is hosted.
79
+ - `agent_name`: Display name of the agent.
80
+ - `agent_description`: Text description of the agent's purpose and capabilities.
81
+ - `agent_category`: Category or domain the agent belongs to.
82
+ - `agent_usage`: Instructions or notes on how to use the agent.
83
+ - `usage_example`: Example input or interaction demonstrating the agent's functionality.
84
+ - `agent_url`: URL linking to the agent's page on its host platform.
85
+ - `agent_accessibility`: Accessibility status of the agent, e.g. public or restricted.
86
+ - `agent_pricing`: Pricing model or cost information associated with using the agent.
87
+ - `base_model`: Underlying language model powering the agent.
88
+ - `update_time`: Timestamp of the agent's last update.
89
+ - `misc`: Miscellaneous metadata not captured by other fields.
90
+
91
+ ## Usage
92
+
93
+ ```python
94
+ from datasets import load_dataset
95
+
96
+ ds = load_dataset("AgentSearch/AgentSearchBench-Agents")
97
+ ```
98
+
99
+ ---
100
+
101
+ ## Related Datasets
102
+
103
+ | Dataset | Description |
104
+ |---------|-------------|
105
+ | [AgentSearchBench-Tasks](https://huggingface.co/datasets/AgentSearch/AgentSearchBench-Tasks) | Benchmark tasks: single-agent queries, multi-agent queries, and task descriptions |
106
+ | [AgentSearchBench-Responses](https://huggingface.co/datasets/AgentSearch/AgentSearchBench-Responses) | 60K+ raw agent execution responses from the validation set |
107
+
108
+ ---
109
+
110
+ ## Citation
111
+
112
+ ```bibtex
113
+ @article{}
114
+ ```