feat(cluster,api,models,cli): add cluster-aware model catalog deployments and request routing
This commit is contained in:
+8
-3
@@ -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':
|
||||
|
||||
Reference in New Issue
Block a user