Datasets:

Languages:
English
Size:
n<1K
ArXiv:
Tags:
agent
License:
yutaozhu94 commited on
Commit
38f2d23
·
verified ·
1 Parent(s): 771f9fe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +75 -1
README.md CHANGED
@@ -9,4 +9,78 @@ tags:
9
  - agent
10
  size_categories:
11
  - n<1K
12
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  - agent
10
  size_categories:
11
  - n<1K
12
+ ---
13
+ # GISA: A Benchmark for General Information-Seeking Assistant</h1>
14
+
15
+ <p>
16
+ <a href="https://github.com/RUC-NLPIR/GISA/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-Apache-blue" alt="license"></a>
17
+ <a href=""><img src="https://img.shields.io/badge/Paper-Arxiv-red"></a>
18
+ <a href="https://ruc-nlpir.github.io/GISA/"><img src="https://img.shields.io/badge/Leaderboard-GISA-orange"></a>
19
+ </p>
20
+
21
+ **Authors**: Yutao Zhu, Xingshuo Zhang, Maosen Zhang, Jiajie Jin, Liancheng Zhang, Xiaoshuai Song, Kangzhi Zhao, Wencong Zeng, Ruiming Tang, Han Li, Ji-Rong Wen, and Zhicheng Dou
22
+
23
+ ## Benchmark Highlights
24
+ GISA is a benchmark for General Information-Seeking Assistants with 373 human-crafted queries that reflect real-world information needs. It includes both stable and live subsets, four structured answer formats (item, set, list, table), and complete human search trajectories for every query.
25
+ - **Diverse answer formats with deterministic evaluation.**
26
+ GISA uses four structured answer types (item, set, list, table) with strict matching metrics for reproducible evaluation, avoiding subjective LLM judging while preserving task diversity.
27
+ - **Unified deep + wide search capabilities.**
28
+ Tasks require both vertical reasoning and horizontal information aggregation across sources, evaluating long-horizon exploration and summarization in one benchmark.
29
+ - **Dynamic, anti-static evaluation.**
30
+ Queries are split into stable and live subsets; the live subset is periodically updated to reduce memorization and keep the benchmark challenging over time.
31
+ - **Process-level supervision via human trajectories.**
32
+ Full human search trajectories are provided for every query, serving as gold references for process reward modeling and imitation learning while validating task solvability.
33
+
34
+ ## Evaluation
35
+ Please refer to our [GitHub](https://github.com/RUC-NLPIR/GISA).
36
+
37
+ ## Data Schema
38
+ Each row contains:
39
+
40
+ - id (int): the ID of the question (it is **not** continuous)
41
+ - question (str): the question after encryption
42
+ - answer_type (str): the type of the answer, can be item, set, list, or table
43
+ - question_type (str): the type of the question, can be stable or live
44
+ - topic (str): the topic of the question, can be TV Shows \& Movies, Science \& Technology, Art, History, Sports, Music, Video Games, Geography, Politics, or Other
45
+ - canary (str): the password used for decryption
46
+
47
+ ## Loading Method
48
+
49
+ ```python
50
+ def derive_key(password: str, length: int) -> bytes:
51
+ hasher = hashlib.sha256()
52
+ hasher.update(password.encode())
53
+ key = hasher.digest()
54
+ return key * (length // len(key)) + key[: length % len(key)]
55
+
56
+
57
+ def decrypt(ciphertext_b64: str, password: str) -> str:
58
+ encrypted = base64.b64decode(ciphertext_b64)
59
+ key = derive_key(password, len(encrypted))
60
+ decrypted = bytes(a ^ b for a, b in zip(encrypted, key))
61
+ return decrypted.decode()
62
+
63
+ obj["question"] = decrypt(str(obj["question"]), str(obj["canary"]))
64
+ ```
65
+
66
+
67
+ ## Citation
68
+ ```bibtex
69
+ @article{GISA,
70
+ title = {GISA: A Benchmark for General Information Seeking Assistant},
71
+ author = {Yutao Zhu and
72
+ Xingshuo Zhang and
73
+ Maosen Zhang and
74
+ Jiajie Jin and
75
+ Liancheng Zhang and
76
+ Xiaoshuai Song and
77
+ Kangzhi Zhao and
78
+ Wencong Zeng and
79
+ Ruiming Tang and
80
+ Han Li and
81
+ Ji-Rong Wen and
82
+ Zhicheng Dou},
83
+ booktitle = {TBD},
84
+ year = {2026}
85
+ }
86
+