diff --git a/messages/en-US.json b/messages/en-US.json index 021f4c10d..27be1ffe3 100644 --- a/messages/en-US.json +++ b/messages/en-US.json @@ -1607,6 +1607,8 @@ "commandPaletteCreateMachineClient": "Create Machine Client", "commandPaletteCreateAlertRule": "Create Alert Rule", "commandPaletteCreateIdentityProvider": "Create Identity Provider", + "commandPaletteCreateAiProvider": "Create AI Provider", + "commandPaletteCreateVirtualApiKey": "Create Virtual API Key", "commandPaletteToggleTheme": "Toggle Theme", "commandPaletteChooseOrganization": "Choose Organization", "commandPaletteShortcutMac": "⌘K", diff --git a/src/components/command-palette/useCommandPaletteActions.tsx b/src/components/command-palette/useCommandPaletteActions.tsx index 87e102307..2996ec809 100644 --- a/src/components/command-palette/useCommandPaletteActions.tsx +++ b/src/components/command-palette/useCommandPaletteActions.tsx @@ -11,6 +11,7 @@ import { KeyRound, MonitorUp, Plus, + Sparkles, SunMoon, UserPlus } from "lucide-react"; @@ -117,6 +118,18 @@ export function useCommandPaletteActions( icon: , href: `/${orgId}/settings/api-keys/create` }); + actions.push({ + id: "create-ai-provider", + label: t("commandPaletteCreateAiProvider"), + icon: , + href: `/${orgId}/settings/ai-providers/create` + }); + actions.push({ + id: "create-virtual-api-key", + label: t("commandPaletteCreateVirtualApiKey"), + icon: , + href: `/${orgId}/settings/virtual-api-keys/keys` + }); if (!env?.flags.disableEnterpriseFeatures) { actions.push({