Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/site-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Public site checks

on:
pull_request:
push:
branches: [main]

jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: python -m unittest discover -s tests -v
- run: node --check assets/site.js
- run: node --check assets/portfolio.js
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__pycache__/
*.py[cod]
14 changes: 9 additions & 5 deletions assets/portfolio.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@
const render = (projects) => {
container.replaceChildren();
projects.forEach((project, index) => {
const card = document.createElement('a');
card.className = `project-card${project.tone === 'negative' ? ' negative' : ''}`;
card.href = project.url;
const card = document.createElement(project.url ? 'a' : 'article');
card.className = `project-card${project.url ? '' : ' unlinked'}`;
if (project.url) {
card.href = project.url;
card.target = '_blank';
card.rel = 'noopener noreferrer';
}

const code = document.createElement('span');
code.textContent = `${String(index + 1).padStart(2, '0')} / ${project.code}`;
Expand All @@ -26,8 +30,8 @@
const owner = document.createElement('small');
owner.textContent = project.owner;
const state = document.createElement('em');
state.dataset.en = `${project.status_en} ↗`;
state.dataset.zh = `${project.status_zh} ↗`;
state.dataset.en = project.url ? `${project.status_en} ↗` : `${project.status_en} · LINK NOT PUBLIC`;
state.dataset.zh = project.url ? `${project.status_zh} ↗` : `${project.status_zh} · 链接未公开`;
footer.append(owner, state);

card.append(code, name, summary, footer);
Expand Down
2 changes: 1 addition & 1 deletion assets/site.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 32 additions & 13 deletions data/control-plane-projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"code": "SLO",
"name": "SLO-Aware Agent Serving",
"url": "https://github.com/intellistream/slo-aware-agent-serving",
"url": null,
"owner": "Liu Jun · iliujunn",
"summary_en": "Admission, calibrated prediction, fairness, and resource allocation for mixed agent workloads.",
"summary_zh": "面向混合智能体负载的准入、校准预测、公平性与资源分配。",
Expand All @@ -14,7 +14,7 @@
{
"code": "KV",
"name": "Agentic KV",
"url": "https://github.com/intellistream/agentic-kv",
"url": null,
"owner": "Pei Fangrui · Apei-520",
"summary_en": "Dependency-aware future-reuse and recompute-cost prediction for agent state and KV decisions.",
"summary_zh": "面向智能体状态与 KV 决策的依赖感知未来复用和重算成本预测。",
Expand All @@ -24,7 +24,7 @@
{
"code": "MODEL",
"name": "VAMOS",
"url": "https://github.com/RIDE-Lab/vamos",
"url": null,
"owner": "Multi-model control",
"summary_en": "VRAM-aware multi-model orchestration under serving SLOs.",
"summary_zh": "面向服务 SLO 的显存感知多模型编排。",
Expand All @@ -34,7 +34,7 @@
{
"code": "BUDGET",
"name": "Token-Budget Governor",
"url": "https://github.com/intellistream/vllm-token-budget-governor-plugin",
"url": null,
"owner": "Admission control",
"summary_en": "Token-budget admission and overload control before work enters the inference engine.",
"summary_zh": "在请求进入推理引擎前执行 token 预算准入与过载控制。",
Expand All @@ -44,7 +44,7 @@
{
"code": "STATE",
"name": "Agent State Tiering",
"url": "https://github.com/intellistream/vllm-agent-state-tiering",
"url": null,
"owner": "Ou Dandan · oddod",
"summary_en": "Workflow-aware placement and prefetch across accelerator, host-memory, and storage tiers.",
"summary_zh": "跨加速器、主机内存与存储层的工作流感知放置和预取。",
Expand All @@ -54,7 +54,7 @@
{
"code": "ROUTE",
"name": "Prefix Cache Routing Reliability",
"url": "https://github.com/intellistream/prefix-cache-routing-reliability",
"url": null,
"owner": "Wang Jie · WMASTER123",
"summary_en": "Failure-safe distributed prefix-cache routing, stale-view handling, and bounded recovery.",
"summary_zh": "故障安全的分布式前缀缓存路由、陈旧视图处理与有界恢复。",
Expand All @@ -64,23 +64,42 @@
{
"code": "AGENT-KV",
"name": "FreshKV",
"url": "https://github.com/intellistream/FreshKV",
"url": null,
"owner": "Xincai Zhu · Pygone",
"summary_en": "Agent-lifecycle and future-reuse declarations drive bounded KV retention and eviction decisions, with execution delegated to an inference-engine plugin.",
"summary_zh": "利用智能体生命周期和未来复用声明进行有边界的 KV 保留与淘汰决策,并由推理引擎插件负责执行。",
"status_en": "INCUBATING",
"status_zh": "孵化中"
},
{
"code": "QUALITY",
"name": "Quality-Bounded Inference",
"url": null,
"owner": "Peng Haoran · Tkhkrnx",
"summary_en": "Maps task-level quality targets to token budgets, decode policies, and service controls.",
"summary_zh": "把任务级质量目标映射为 token 预算、解码策略与服务控制动作。",
"status_en": "INCUBATING",
"status_zh": "孵化中"
},
{
"code": "WORKFLOW",
"name": "Workflow-Aware Serving",
"url": null,
"owner": "Mao Yancan · yancanmao",
"summary_en": "Uses DAG readiness, critical paths, tool waits, and deadlines to coordinate serving decisions.",
"summary_zh": "依据 DAG 就绪状态、关键路径、工具等待与截止时间协调服务决策。",
"status_en": "INCUBATING",
"status_zh": "孵化中"
},
{
"code": "E&A",
"name": "MottoServe",
"url": "https://github.com/intellistream/llm-serving-motto-lab",
"url": null,
"owner": "Li Xuheng · sssarrior",
"summary_en": "A bounded evidence-and-analysis line. The historical planner is stopped; its negative result remains a research asset.",
"summary_zh": "有边界的证据与分析课题。历史 planner 已停止,其负面结果继续作为研究资产。",
"status_en": "STOPPED MECHANISM",
"status_zh": "机制已停止",
"tone": "negative"
"summary_en": "Evidence and analysis of serving-policy behavior, planner overhead, and applicability boundaries.",
"summary_zh": "研究服务策略行为、规划器开销与适用边界的证据分析课题。",
"status_en": "RESEARCH RECORD",
"status_zh": "研究记录"
}
]
}
Loading
Loading