Skip to main content
Glama
UpdatingModel.vue825 B
<template> <div :class=" clsx( 'container flex flex-row gap-xs items-center justify-center p-xs rounded', updating ? 'cursor-progress' : 'cursor-pointer', ) " > <template v-if="updating"> <Icon name="loader" size="xl" tone="action" /> <p class="text-sm">Updating Model...</p> </template> <template v-else> <Icon name="check-hex-outline" size="xl" tone="success" /> <p class="text-sm">Model Up-to-Date</p> </template> </div> </template> <script lang="ts" setup> import { Icon } from "@si/vue-lib/design-system"; import clsx from "clsx"; import { computed } from "vue"; import { useStatusStore } from "@/store/status.store"; const statusStore = useStatusStore(); const updating = computed(() => statusStore.globalStatus.isUpdating); </script>

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'

If you have feedback or need assistance with the MCP directory API, please join our Discord server