-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathcompetitor_baseline_tokens.json
More file actions
45 lines (45 loc) · 1.79 KB
/
Copy pathcompetitor_baseline_tokens.json
File metadata and controls
45 lines (45 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"schema_version": "1.0",
"kind": "competitor_baseline_tokens",
"generated_at_utc": "2026-05-19T18:20:49.580246+00:00",
"token_counting_method": "tiktoken_cl100k_base",
"methodology_doc": "docs/competitive/VERSUS_LANGGRAPH_TEMPORAL_BENCHMARKS.md",
"workloads": [
{
"id": "enterprise_monitor",
"paths": {
"ainl": "examples/benchmark/enterprise_monitor.ainl",
"python_hand_optimized": "benchmarks/handwritten_baselines/authoring_density/enterprise_monitor.py",
"langgraph": "benchmarks/handwritten_baselines/competitive/langgraph/enterprise_monitor_langgraph.py"
},
"tiktoken_cl100k_base": {
"ainl": 759,
"python_hand_optimized": 1106,
"langgraph": 1548
},
"ratios_vs_ainl": {
"python_hand_optimized_div_ainl": 1.46,
"langgraph_div_ainl": 2.04
},
"notes": "Authoring token counts on source files. LangGraph includes StateGraph boilerplate; python_hand_optimized is baseline B (competent engineer, no compiler)."
},
{
"id": "support_ticket_router",
"paths": {
"ainl": "examples/workflows/support_ticket_router.ainl",
"python_hand_optimized": "benchmarks/handwritten_baselines/authoring_density/support_ticket_router.py",
"langgraph": "benchmarks/handwritten_baselines/competitive/langgraph/support_ticket_router_langgraph.py"
},
"tiktoken_cl100k_base": {
"ainl": 909,
"python_hand_optimized": 1426,
"langgraph": 1752
},
"ratios_vs_ainl": {
"python_hand_optimized_div_ainl": 1.57,
"langgraph_div_ainl": 1.93
},
"notes": "Authoring token counts on source files. LangGraph includes StateGraph boilerplate; python_hand_optimized is baseline B (competent engineer, no compiler)."
}
]
}