-
Notifications
You must be signed in to change notification settings - Fork 174
project: add paper publication sections #206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
Xunzhuo
wants to merge
2
commits into
main
Choose a base branch
from
add-paper
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
import React from 'react' | ||
import Layout from '@theme/Layout' | ||
import styles from './publications.module.css' | ||
|
||
const publications = [ | ||
{ | ||
id: 1, | ||
title: 'When to Reason: Semantic Router for vLLM', | ||
authors: 'Chen Wang, Xunzhuo Liu, Yuhan Liu, Yue Zhu, Xiangxi Mo, Junchen Jiang, Huamin Chen', | ||
venue: 'NeurIPS - MLForSys', | ||
year: '2025', | ||
abstract: 'We propose vLLM semantic router integrated with vLLM that selectively applies reasoning only when beneficial, achieving over 10 percentage point accuracy gains while nearly halving latency and token usage', | ||
links: [ | ||
{ type: 'paper', url: 'https://mlforsystems.org', label: '📄 Paper' }, | ||
], | ||
featured: true, | ||
}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you add the following publication too?
|
||
] | ||
|
||
function PublicationCard({ publication }) { | ||
return ( | ||
<div className={styles.publicationCard}> | ||
<h3 className={styles.paperTitle}>{publication.title}</h3> | ||
<p className={styles.paperAuthors}>{publication.authors}</p> | ||
<span className={styles.paperVenue}> | ||
{publication.venue} | ||
{' '} | ||
{publication.year} | ||
</span> | ||
<p className={styles.paperAbstract}>{publication.abstract}</p> | ||
<div className={styles.paperLinks}> | ||
{publication.links.map((link, index) => ( | ||
<a | ||
key={index} | ||
href={link.url} | ||
className={`${styles.paperLink} ${ | ||
link.type === 'paper' ? styles.paperLinkPrimary : styles.paperLinkSecondary | ||
}`} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
{link.label} | ||
</a> | ||
))} | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default function Publications() { | ||
return ( | ||
<Layout | ||
title="Publications" | ||
description="Latest research publications and scientific contributions from the vLLM Semantic Router project" | ||
> | ||
<div className={styles.container}> | ||
<header className={styles.header}> | ||
<h1 className={styles.title}>🎓 Publications</h1> | ||
<p className={styles.subtitle}> | ||
Discover community-driven latest research contributions in LLM and intelligent routing systems. | ||
Our work pushes the boundaries of efficient LLM inference. | ||
</p> | ||
</header> | ||
|
||
<main> | ||
<div className={styles.publicationsList}> | ||
{publications.map(publication => ( | ||
<PublicationCard key={publication.id} publication={publication} /> | ||
))} | ||
</div> | ||
</main> | ||
</div> | ||
</Layout> | ||
) | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,227 @@ | ||
.container { | ||
max-width: 1400px; | ||
margin: 0 auto; | ||
padding: 2rem; | ||
min-height: 100vh; | ||
} | ||
|
||
.header { | ||
text-align: center; | ||
margin-bottom: 4rem; | ||
position: relative; | ||
padding: 3rem 0; | ||
} | ||
|
||
.header::before { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
width: 200px; | ||
height: 4px; | ||
background: linear-gradient(90deg, #0969da, #8250df, #58a6ff); | ||
border-radius: 2px; | ||
animation: headerGlow 3s ease-in-out infinite; | ||
} | ||
|
||
.title { | ||
font-size: 4rem; | ||
font-weight: 900; | ||
margin-bottom: 1.5rem; | ||
background: linear-gradient(45deg, #0969da, #8250df, #58a6ff); | ||
-webkit-background-clip: text; | ||
-webkit-text-fill-color: transparent; | ||
background-clip: text; | ||
animation: titlePulse 4s ease-in-out infinite; | ||
text-shadow: 0 0 30px rgba(9, 105, 218, 0.3); | ||
} | ||
|
||
.subtitle { | ||
font-size: 1.4rem; | ||
color: var(--ifm-color-content-secondary); | ||
max-width: 800px; | ||
margin: 0 auto; | ||
line-height: 1.8; | ||
font-weight: 300; | ||
} | ||
|
||
.publicationsList { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 2.5rem; | ||
margin-bottom: 4rem; | ||
} | ||
|
||
.publicationCard { | ||
background: rgba(255, 255, 255, 0.95); | ||
border: 1px solid rgba(88, 166, 255, 0.2); | ||
border-radius: 24px; | ||
padding: 2.5rem; | ||
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); | ||
backdrop-filter: blur(20px); | ||
box-shadow: | ||
0 10px 40px rgba(9, 105, 218, 0.1), | ||
0 0 0 1px rgba(88, 166, 255, 0.05); | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
|
||
.publicationCard::before { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
height: 4px; | ||
background: linear-gradient(90deg, #0969da, #8250df, #58a6ff); | ||
opacity: 0; | ||
transition: opacity 0.3s ease; | ||
} | ||
|
||
.publicationCard:hover { | ||
transform: translateY(-8px) scale(1.02); | ||
box-shadow: | ||
0 20px 60px rgba(9, 105, 218, 0.2), | ||
0 0 0 1px rgba(88, 166, 255, 0.3); | ||
border-color: rgba(88, 166, 255, 0.4); | ||
} | ||
|
||
.publicationCard:hover::before { | ||
opacity: 1; | ||
} | ||
|
||
.paperTitle { | ||
font-size: 1.5rem; | ||
font-weight: 700; | ||
color: #1f2328; | ||
margin-bottom: 1rem; | ||
line-height: 1.4; | ||
background: linear-gradient(45deg, #0969da, #8250df); | ||
-webkit-background-clip: text; | ||
-webkit-text-fill-color: transparent; | ||
background-clip: text; | ||
} | ||
|
||
.paperAuthors { | ||
font-size: 1rem; | ||
color: #656d76; | ||
margin-bottom: 1rem; | ||
font-style: italic; | ||
} | ||
|
||
.paperVenue { | ||
display: inline-block; | ||
background: linear-gradient(45deg, #0969da, #8250df); | ||
color: white; | ||
padding: 0.5rem 1rem; | ||
border-radius: 20px; | ||
font-size: 0.9rem; | ||
font-weight: 600; | ||
margin-bottom: 1.5rem; | ||
box-shadow: 0 4px 12px rgba(9, 105, 218, 0.3); | ||
} | ||
|
||
.paperAbstract { | ||
color: #656d76; | ||
line-height: 1.7; | ||
margin-bottom: 2rem; | ||
font-size: 1rem; | ||
} | ||
|
||
.paperLinks { | ||
display: flex; | ||
gap: 1rem; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.paperLink { | ||
display: inline-flex; | ||
align-items: center; | ||
gap: 0.5rem; | ||
padding: 0.75rem 1.5rem; | ||
border-radius: 12px; | ||
text-decoration: none; | ||
font-weight: 600; | ||
font-size: 0.9rem; | ||
transition: all 0.3s ease; | ||
border: 2px solid transparent; | ||
} | ||
|
||
.paperLinkPrimary { | ||
background: linear-gradient(45deg, #0969da, #8250df); | ||
color: white; | ||
box-shadow: 0 4px 16px rgba(9, 105, 218, 0.3); | ||
} | ||
|
||
.paperLinkPrimary:hover { | ||
transform: translateY(-2px); | ||
box-shadow: 0 8px 24px rgba(9, 105, 218, 0.4); | ||
color: white; | ||
} | ||
|
||
.paperLinkSecondary { | ||
background: rgba(88, 166, 255, 0.1); | ||
color: #0969da; | ||
border-color: rgba(88, 166, 255, 0.3); | ||
} | ||
|
||
.paperLinkSecondary:hover { | ||
background: rgba(88, 166, 255, 0.2); | ||
border-color: rgba(88, 166, 255, 0.5); | ||
transform: translateY(-2px); | ||
color: #0969da; | ||
} | ||
|
||
|
||
|
||
/* Animations */ | ||
@keyframes headerGlow { | ||
0%, 100% { opacity: 0.7; } | ||
50% { opacity: 1; } | ||
} | ||
|
||
@keyframes titlePulse { | ||
0%, 100% { transform: scale(1); } | ||
50% { transform: scale(1.02); } | ||
} | ||
|
||
/* Responsive Design */ | ||
@media (max-width: 768px) { | ||
.container { | ||
padding: 1rem; | ||
} | ||
|
||
.title { | ||
font-size: 2.5rem; | ||
} | ||
|
||
.subtitle { | ||
font-size: 1.2rem; | ||
} | ||
|
||
.publicationsList { | ||
gap: 2rem; | ||
} | ||
|
||
.publicationCard { | ||
padding: 2rem; | ||
} | ||
|
||
.paperLinks { | ||
flex-direction: column; | ||
} | ||
} | ||
|
||
/* Dark mode support */ | ||
|
||
[data-theme='dark'] .publicationCard { | ||
background: rgba(33, 38, 45, 0.95); | ||
border-color: rgba(88, 166, 255, 0.3); | ||
} | ||
|
||
[data-theme='dark'] .paperTitle { | ||
color: #f0f6fc; | ||
} | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how about publication and talks? we have a kubecon talk coming up next month.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that could be another individual pages with the publications
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sounds good! that works
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we hold for a while for a public paper url?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that'll be great! can you also add the bibtex for citation when available?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure will do