Skip to content

Commit a4f9d84

Browse files
authored
docs: move proposals to site (#361)
Signed-off-by: bitliu <[email protected]>
1 parent 1fb0805 commit a4f9d84

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

website/docs/overview/categories/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Category Overview
1+
# Overview
22

33
The Category system is the intelligence core of vLLM Semantic Router, enabling intelligent query classification and routing decisions based on semantic understanding of user inputs.
44

website/docs/overview/semantic-router-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Semantic Router Overview
1+
# What is Semantic Router?
22

33
Semantic routers represent a paradigm shift in how we deploy and utilize large language models at scale. By intelligently routing queries to the most appropriate model based on semantic understanding, these systems optimize the critical balance between performance, cost, and quality.
44

docs/design/additional-prompt-classification-routing.md renamed to website/docs/proposals/prompt-classification-routing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Additional Prompt Classification Routing for vLLM Semantic Router
1+
# Prompt Classification Routing
22

33
**Related Issues:** [#313](https://github.com/vllm-project/semantic-router/issues/313), [#200](https://github.com/vllm-project/semantic-router/issues/200)
44

@@ -212,7 +212,7 @@ The Regex Scanner uses regular expression patterns to detect structured data and
212212
- **Performance:** ~2-5ms for dozens of patterns
213213
- **Use Case:** PII patterns (SSN, credit cards), CVE IDs, email addresses, structured data
214214
- **Safety:** RE2 engine prevents catastrophic backtracking (ReDoS protection)
215-
- **Limitations:** Best for <100 patterns; for larger rule sets, use MCP with Hyperscan
215+
- **Limitations:** Best for fewer than 100 patterns; for larger rule sets, use MCP with Hyperscan
216216

217217
**Example Use:** Detect and block Social Security Numbers, route CVE IDs to security models.
218218

@@ -347,7 +347,7 @@ The Signal Fusion Layer is the decision-making engine that combines all signals
347347
- **Priority-Based**: Rules evaluated from highest to lowest priority (200 → 0)
348348
- **Short-Circuit**: First matching rule wins, no further evaluation
349349
- **Boolean Expressions**: Combine multiple signal conditions with AND, OR, NOT
350-
- **Flexible Comparisons**: Support ==, !=, >, <, >=, <= for numeric thresholds
350+
- **Flexible Comparisons**: Support `==`, `!=`, `>`, `<`, `>=`, `<=` for numeric thresholds
351351

352352
**Expression Capabilities:**
353353

website/sidebars.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const sidebars: SidebarsConfig = {
5454
},
5555
{
5656
type: 'category',
57-
label: 'Tutorials',
57+
label: 'Capacities',
5858
items: [
5959
{
6060
type: 'category',
@@ -92,6 +92,13 @@ const sidebars: SidebarsConfig = {
9292
},
9393
],
9494
},
95+
{
96+
type: 'category',
97+
label: 'Proposals',
98+
items: [
99+
'proposals/prompt-classification-routing',
100+
],
101+
},
95102
{
96103
type: 'category',
97104
label: 'Model Training',

0 commit comments

Comments
 (0)