feat: add agentic pd hybrid benchmark prototype

This commit is contained in:
2026-04-24 12:17:46 +00:00
parent d2fe014db7
commit 4bca741f32
16 changed files with 9182 additions and 0 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[project]
name = "agentic-pd-hybrid"
version = "0.1.0"
description = "Prototype for session-aware and KV-cache-aware PD routing on SGLang xPyD"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.1",
"mooncake-transfer-engine",
"sglang==0.5.10",
]
[project.scripts]
agentic-pd-hybrid = "agentic_pd_hybrid.cli:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv]
prerelease = "allow"