-
Notifications
You must be signed in to change notification settings - Fork 239
feat(dashboard): add comprehensive configuration editing UI #402
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
Conversation
- Add EditModal component with support for multiple field types (text, number, boolean, select, multiselect, textarea, json) - Implement full CRUD operations for Models and Endpoints (add, edit, delete) - Add edit functionality for all configuration sections: * Prompt Guard (PII Detection, Jailbreak Detection) * Similarity Cache (Similarity BERT, Semantic Cache) * Intelligent Routing (In-tree/Out-tree Classifiers) * Tools Selection * Observability (Distributed Tracing) * Classification API - Add edit functionality for Categories (system prompt, reasoning settings) - Add edit functionality for Reasoning Families - Add model score management in Categories (add, edit, delete model scores) - Implement dynamic dropdowns populated from configuration: * Reasoning Family selection from configured reasoning families * Preferred Endpoints selection from configured endpoints * Model selection for category model scores - Add complete pricing configuration (currency, prompt/completion costs) - Add complete PII policy configuration (allow/block, 17 PII types) - Visualize all configuration fields (no JSON input required) - Fix docker-compose volume mount to allow config file writes (ro -> rw) - Remove deprecated fields (endpoint models, health_check_path, monitoring dashboard) - Improve UI/UX with better card layouts, icons, and visual feedback Backend changes: - Add POST /api/router/config/update endpoint for configuration updates - Add JSON to YAML conversion for config file writes Frontend changes: - Create reusable EditModal component with field validation - Update ConfigPage with comprehensive edit buttons and handlers - Add CSS styles for edit buttons, model scores, and multiselect fields - Improve endpoint display (separate address, port, weight) This enables full configuration management through the dashboard UI without manual YAML editing. Signed-off-by: bitliu <[email protected]>
👥 vLLM Semantic Team NotificationThe following members have been identified for the changed files in this PR and have been automatically assigned: 📁
|
✅ Deploy Preview for vllm-semantic-router ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
@Xunzhuo can you post a screenshot? thanks |
it changed a lot, configuration layout and we supported to configure in console, let us get this in. I have a few follow up to clean up |
…ject#402) - Add EditModal component with support for multiple field types (text, number, boolean, select, multiselect, textarea, json) - Implement full CRUD operations for Models and Endpoints (add, edit, delete) - Add edit functionality for all configuration sections: * Prompt Guard (PII Detection, Jailbreak Detection) * Similarity Cache (Similarity BERT, Semantic Cache) * Intelligent Routing (In-tree/Out-tree Classifiers) * Tools Selection * Observability (Distributed Tracing) * Classification API - Add edit functionality for Categories (system prompt, reasoning settings) - Add edit functionality for Reasoning Families - Add model score management in Categories (add, edit, delete model scores) - Implement dynamic dropdowns populated from configuration: * Reasoning Family selection from configured reasoning families * Preferred Endpoints selection from configured endpoints * Model selection for category model scores - Add complete pricing configuration (currency, prompt/completion costs) - Add complete PII policy configuration (allow/block, 17 PII types) - Visualize all configuration fields (no JSON input required) - Fix docker-compose volume mount to allow config file writes (ro -> rw) - Remove deprecated fields (endpoint models, health_check_path, monitoring dashboard) - Improve UI/UX with better card layouts, icons, and visual feedback Backend changes: - Add POST /api/router/config/update endpoint for configuration updates - Add JSON to YAML conversion for config file writes Frontend changes: - Create reusable EditModal component with field validation - Update ConfigPage with comprehensive edit buttons and handlers - Add CSS styles for edit buttons, model scores, and multiselect fields - Improve endpoint display (separate address, port, weight) This enables full configuration management through the dashboard UI without manual YAML editing. Signed-off-by: bitliu <[email protected]>
Backend changes:
Frontend changes:
This enables full configuration management through the dashboard UI without manual YAML editing.