|
| 1 | +import React from 'react' |
| 2 | +import Layout from '@theme/Layout' |
| 3 | +import styles from './news.module.css' |
| 4 | + |
| 5 | +const newsArticles = [ |
| 6 | + { |
| 7 | + title: 'vLLM Semantic Router: Improving Efficiency in AI Reasoning', |
| 8 | + date: 'September 11, 2025', |
| 9 | + source: 'Red Hat Developer', |
| 10 | + description: 'This article explores how the vLLM Semantic Router addresses challenges in AI reasoning by implementing dynamic, semantic-aware routing to optimize performance and cost.', |
| 11 | + url: 'https://developers.redhat.com/articles/2025/09/11/vllm-semantic-router-improving-efficiency-ai-reasoning', |
| 12 | + category: 'Technical Article', |
| 13 | + }, |
| 14 | + { |
| 15 | + title: 'LLM Semantic Router: Intelligent Request Routing for Large Language Models', |
| 16 | + date: 'May 20, 2025', |
| 17 | + source: 'Red Hat Developer', |
| 18 | + description: 'This piece introduces the LLM Semantic Router, focusing on intelligent, cost-aware request routing to ensure efficient processing of queries by large language models.', |
| 19 | + url: 'https://developers.redhat.com/articles/2025/05/20/llm-semantic-router-intelligent-request-routing', |
| 20 | + category: 'Technical Article', |
| 21 | + }, |
| 22 | + { |
| 23 | + title: 'Smarter LLMs: How the vLLM Semantic Router Delivers Fast, Efficient Inference', |
| 24 | + date: 'September 2025', |
| 25 | + source: 'Joshua Berkowitz Blog', |
| 26 | + description: 'This blog post highlights the vLLM Semantic Router\'s role in enhancing large language model inference by intelligently routing queries to balance speed, accuracy, and cost.', |
| 27 | + url: 'https://joshuaberkowitz.us/blog/news-1/smarter-llms-how-the-vllm-semantic-router-delivers-fast-efficient-inference-1133', |
| 28 | + category: 'Blog Post', |
| 29 | + }, |
| 30 | + { |
| 31 | + title: 'vLLM Semantic Router', |
| 32 | + date: 'September 2025', |
| 33 | + source: 'Jimmy Song\'s Blog', |
| 34 | + description: 'This article provides an overview of the vLLM Semantic Router, detailing its features and applications in improving large language model inference efficiency.', |
| 35 | + url: 'https://jimmysong.io/ai/semantic-router/', |
| 36 | + category: 'Blog Post', |
| 37 | + }, |
| 38 | +] |
| 39 | + |
| 40 | +function NewsCard({ article }) { |
| 41 | + return ( |
| 42 | + <div className={`card ${styles.newsCard}`}> |
| 43 | + <div className="card__header"> |
| 44 | + <div className={styles.cardHeader}> |
| 45 | + <h3 className={styles.articleTitle}>{article.title}</h3> |
| 46 | + <div className={styles.articleMeta}> |
| 47 | + <span className={`badge badge--primary ${styles.categoryBadge}`}> |
| 48 | + {article.category} |
| 49 | + </span> |
| 50 | + <span className={styles.source}>{article.source}</span> |
| 51 | + <span className={styles.date}>{article.date}</span> |
| 52 | + </div> |
| 53 | + </div> |
| 54 | + </div> |
| 55 | + <div className="card__body"> |
| 56 | + <p className={styles.articleDescription}>{article.description}</p> |
| 57 | + </div> |
| 58 | + <div className="card__footer"> |
| 59 | + <a |
| 60 | + href={article.url} |
| 61 | + target="_blank" |
| 62 | + rel="noopener noreferrer" |
| 63 | + className={`button button--primary button--outline ${styles.readMoreButton}`} |
| 64 | + > |
| 65 | + Read More → |
| 66 | + </a> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | + ) |
| 70 | +} |
| 71 | + |
| 72 | +export default function News() { |
| 73 | + return ( |
| 74 | + <Layout |
| 75 | + title="News" |
| 76 | + description="Latest news, articles, and publications about vLLM Semantic Router" |
| 77 | + > |
| 78 | + <div className="container margin-vert--lg"> |
| 79 | + <div className="row"> |
| 80 | + <div className="col col--12"> |
| 81 | + <div className={styles.heroSection}> |
| 82 | + <h1 className={styles.heroTitle}>News & Articles</h1> |
| 83 | + <p className={styles.heroDescription}> |
| 84 | + Stay updated with the latest news, research papers, blog posts, and articles |
| 85 | + about vLLM Semantic Router and its impact on LLM inference efficiency. |
| 86 | + </p> |
| 87 | + </div> |
| 88 | + </div> |
| 89 | + </div> |
| 90 | + |
| 91 | + <div className="row"> |
| 92 | + <div className="col col--12"> |
| 93 | + <div className={styles.newsGrid}> |
| 94 | + {newsArticles.map((article, index) => ( |
| 95 | + <div key={index} className={styles.newsItem}> |
| 96 | + <NewsCard article={article} /> |
| 97 | + </div> |
| 98 | + ))} |
| 99 | + </div> |
| 100 | + </div> |
| 101 | + </div> |
| 102 | + |
| 103 | + <div className="row"> |
| 104 | + <div className="col col--12"> |
| 105 | + <div className={styles.contributeSection}> |
| 106 | + <h2>Contribute to News</h2> |
| 107 | + <p> |
| 108 | + Know of an article, blog post, or publication about vLLM Semantic Router |
| 109 | + that should be featured here? |
| 110 | + </p> |
| 111 | + <p className={styles.contributeActions}> |
| 112 | + <a |
| 113 | + href="https://github.com/vllm-project/semantic-router/issues/new?template=feature_request.md" |
| 114 | + target="_blank" |
| 115 | + rel="noopener noreferrer" |
| 116 | + > |
| 117 | + Submit a suggestion |
| 118 | + </a> |
| 119 | + {' '} |
| 120 | + or |
| 121 | + {' '} |
| 122 | + <a |
| 123 | + href="https://github.com/vllm-project/semantic-router/issues/new?template=feature_request.md" |
| 124 | + target="_blank" |
| 125 | + rel="noopener noreferrer" |
| 126 | + > |
| 127 | + contribute directly |
| 128 | + </a> |
| 129 | + {' '} |
| 130 | + to our repository. |
| 131 | + </p> |
| 132 | + </div> |
| 133 | + </div> |
| 134 | + </div> |
| 135 | + </div> |
| 136 | + </Layout> |
| 137 | + ) |
| 138 | +} |
0 commit comments