feat(cluster,api,models,cli): add cluster-aware model catalog deployments and request routing

This commit is contained in:
2026-04-20 23:00:50 +00:00
parent 83cacd0cf1
commit 4f2266e1b7
55 changed files with 3970 additions and 1630 deletions
+8 -3
View File
@@ -37,6 +37,13 @@ export const theme = {
containerStopped: colors.red,
containerStarting: colors.yellow,
// Named vendor/container helpers
gpuNvidia: colors.green,
gpuAmd: colors.red,
gpuIntel: colors.blue,
containerVllm: colors.cyan,
containerTgi: colors.magenta,
// Box borders
borderSuccess: colors.green,
borderError: colors.red,
@@ -127,10 +134,8 @@ export function formatContainerStatus(
/**
* Format container type with color
*/
export function formatContainerType(type: 'ollama' | 'vllm' | 'tgi' | 'custom'): string {
export function formatContainerType(type: 'vllm' | 'tgi' | 'custom'): string {
switch (type) {
case 'ollama':
return colors.green('Ollama');
case 'vllm':
return colors.cyan('vLLM');
case 'tgi':