sammshen commited on
Commit
8168cab
·
verified ·
1 Parent(s): 4e028fb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-generation
5
+ tags:
6
+ - agent-traces
7
+ - tool-use
8
+ - multi-turn
9
+ - benchmark
10
+ - mint
11
+ ---
12
+
13
+ # mint-minimax-traces
14
+
15
+ Complete HTTP-level agentic traces from running **mint** benchmark tasks through an instrumented reverse proxy.
16
+
17
+ Each trace captures full request/response pairs including system prompts, user messages, assistant responses, tool calls and results, and token usage metadata.
18
+
19
+ ## Stats
20
+ - **Total sessions**: 242
21
+ - **Multi-turn sessions** (2+ LLM calls): 145
22
+ - **Total records**: 1388
23
+ - **Total LLM requests**: 694
24
+
25
+ ## Format
26
+
27
+ Raw JSONL traces from the instrumented proxy. Each line is a request or response record:
28
+
29
+ ### Request record
30
+ ```json
31
+ {"type": "request", "request_id": "...", "timestamp_rel_s": 0.0, "timestamp_utc": "...", "method": "POST", "path": "/v1/chat/completions", "headers": {...}, "body": {...}, "thread_id": 0, "task_metadata": {"source_dataset": "mint", "task_id": "...", "session_name": "..."}}
32
+ ```
33
+
34
+ ### Response record
35
+ ```json
36
+ {"type": "response", "request_id": "...", "timestamp_rel_s": 1.23, "timestamp_utc": "...", "status_code": 200, "headers": {...}, "body": {...}, "thread_id": 0, "task_metadata": {"source_dataset": "mint", "task_id": "...", "session_name": "..."}}
37
+ ```
38
+
39
+ ## Files
40
+ - `mint_all_traces.jsonl` — All sessions merged into one file
41
+ - `sessions/` — Individual per-session trace files
42
+
43
+ ## Collection Method
44
+ Traces collected via instrumented reverse proxy recording all LLM API calls during agent benchmark execution.