diff --git a/config/label_tool.yaml.example b/config/label_tool.yaml.example index ac41aa8..db0f9a6 100644 --- a/config/label_tool.yaml.example +++ b/config/label_tool.yaml.example @@ -110,12 +110,3 @@ imitate: sample_endpoint: /api/listings text_fields: [title, description, seller_info] prompt_template: "Evaluate the trustworthiness of this listing and flag any red flags:\n\n{text}" - - - id: osprey - name: Osprey - icon: "📞" - description: Gov't hold-line automation - base_url: http://localhost:8520 - sample_endpoint: /api/calls/recent - text_fields: [agency, issue, notes] - prompt_template: "Draft a concise summary of this government call record:\n\n{text}" diff --git a/web/src/components/nodes/GpuRow.vue b/web/src/components/nodes/GpuRow.vue index e73d11a..724248a 100644 --- a/web/src/components/nodes/GpuRow.vue +++ b/web/src/components/nodes/GpuRow.vue @@ -26,7 +26,7 @@ function serviceState(svcName: string): 'running' | 'stopped' | 'assigned-only' const cap = props.gpu.compute_cap ?? 0 if (cap < svc.min_compute_cap) return 'incompatible' if (props.gpu.services_running.includes(svcName)) return 'running' - if (props.gpu.services_assigned.includes(svcName)) return 'stopped' + if (props.gpu.services_assigned.includes(svcName)) return 'assigned-only' return 'available' } diff --git a/web/src/components/nodes/HfNodeModelPanel.vue b/web/src/components/nodes/HfNodeModelPanel.vue index 4eb8cbd..a39dee8 100644 --- a/web/src/components/nodes/HfNodeModelPanel.vue +++ b/web/src/components/nodes/HfNodeModelPanel.vue @@ -20,7 +20,6 @@ interface NodeProfile { const props = defineProps<{ nodeId: string - servicesCatalog: Record }>() const profile = ref(null) diff --git a/web/src/components/nodes/NodeCard.vue b/web/src/components/nodes/NodeCard.vue index 792c919..7d46fbf 100644 --- a/web/src/components/nodes/NodeCard.vue +++ b/web/src/components/nodes/NodeCard.vue @@ -52,11 +52,7 @@ const showHf = ref(false) - +