swo-bench 1.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- swo_bench-1.6.0/.gitignore +72 -0
- swo_bench-1.6.0/PKG-INFO +25 -0
- swo_bench-1.6.0/asb_optimizer/__init__.py +3 -0
- swo_bench-1.6.0/asb_optimizer/bench_cli.py +1659 -0
- swo_bench-1.6.0/asb_optimizer/bench_executor.py +1241 -0
- swo_bench-1.6.0/asb_optimizer/record_proxy.py +223 -0
- swo_bench-1.6.0/asb_optimizer/recorder.py +209 -0
- swo_bench-1.6.0/asb_optimizer/recording_format.py +13 -0
- swo_bench-1.6.0/asb_optimizer/zstd_http.py +73 -0
- swo_bench-1.6.0/pyproject.toml +120 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Vendored private dependency (copied for Docker builds)
|
|
2
|
+
agent-bench/
|
|
3
|
+
GPU-RUN.md
|
|
4
|
+
|
|
5
|
+
# Python
|
|
6
|
+
__pycache__/
|
|
7
|
+
*.py[cod]
|
|
8
|
+
*$py.class
|
|
9
|
+
*.so
|
|
10
|
+
*.egg-info/
|
|
11
|
+
dist/
|
|
12
|
+
build/
|
|
13
|
+
.eggs/
|
|
14
|
+
|
|
15
|
+
# Virtual environments
|
|
16
|
+
.venv/
|
|
17
|
+
venv/
|
|
18
|
+
env/
|
|
19
|
+
|
|
20
|
+
# IDE
|
|
21
|
+
.idea/
|
|
22
|
+
.vscode/*
|
|
23
|
+
!.vscode/settings.json
|
|
24
|
+
!.vscode/tasks.json
|
|
25
|
+
!.vscode/launch.json
|
|
26
|
+
!.vscode/extensions.json
|
|
27
|
+
*.swp
|
|
28
|
+
*.swo
|
|
29
|
+
.DS_Store
|
|
30
|
+
|
|
31
|
+
# Environment
|
|
32
|
+
.env
|
|
33
|
+
*.env.local
|
|
34
|
+
|
|
35
|
+
# Database
|
|
36
|
+
*.db
|
|
37
|
+
*.sqlite3
|
|
38
|
+
|
|
39
|
+
# Testing
|
|
40
|
+
.pytest_cache/
|
|
41
|
+
.coverage
|
|
42
|
+
htmlcov/
|
|
43
|
+
.ruff_cache/
|
|
44
|
+
|
|
45
|
+
# Node (dashboard)
|
|
46
|
+
node_modules/
|
|
47
|
+
asb_optimizer/dashboard/dist/
|
|
48
|
+
asb_optimizer/dashboard/node_modules/
|
|
49
|
+
|
|
50
|
+
# Docker
|
|
51
|
+
.docker/
|
|
52
|
+
|
|
53
|
+
# Profiling output
|
|
54
|
+
*.nsys-rep
|
|
55
|
+
*.sqlite
|
|
56
|
+
*.qdrep
|
|
57
|
+
|
|
58
|
+
# Compiled kernels
|
|
59
|
+
*.so
|
|
60
|
+
*.o
|
|
61
|
+
*.cu.o
|
|
62
|
+
|
|
63
|
+
# Optimizer state
|
|
64
|
+
~/.asb-optimizer/
|
|
65
|
+
|
|
66
|
+
# Security reports (local only)
|
|
67
|
+
.gstack/
|
|
68
|
+
|
|
69
|
+
# Server snapshots (local reference only)
|
|
70
|
+
_server-snapshots/
|
|
71
|
+
# PyInstaller
|
|
72
|
+
*.spec
|
swo_bench-1.6.0/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: swo-bench
|
|
3
|
+
Version: 1.6.0
|
|
4
|
+
Summary: Measure inference endpoint performance with real agentic coding workloads
|
|
5
|
+
Project-URL: Homepage, https://swarmone.ai/bench
|
|
6
|
+
Project-URL: Documentation, https://swarmone.ai/bench/docs
|
|
7
|
+
Author-email: SwarmOne <eng@swarmone.ai>
|
|
8
|
+
License: Proprietary
|
|
9
|
+
Keywords: agentic,benchmark,gpu,inference,llm,sglang,vllm
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: System :: Benchmark
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Requires-Dist: aiohttp>=3.9
|
|
16
|
+
Requires-Dist: click>=8.0
|
|
17
|
+
Requires-Dist: cryptography>=42.0
|
|
18
|
+
Requires-Dist: httpx>=0.25
|
|
19
|
+
Requires-Dist: rich>=13.0
|
|
20
|
+
Requires-Dist: zstandard>=0.22
|
|
21
|
+
Provides-Extra: dev
|
|
22
|
+
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
|
|
23
|
+
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
24
|
+
Requires-Dist: respx>=0.20; extra == 'dev'
|
|
25
|
+
Requires-Dist: ruff>=0.4; extra == 'dev'
|