Merge pull request #75822 from NousResearch/bb/cmdk-plugins
feat(desktop): open Plugins from Cmd+K
This commit is contained in:
commit
8555c6d67a
|
|
@ -385,7 +385,15 @@ const toSessionEntry = (session: SessionRow): SessionEntry => ({
|
|||
})
|
||||
|
||||
type NonConfigSettingsLabel =
|
||||
'about' | 'archivedChats' | 'gateway' | 'keysSettings' | 'keysTools' | 'mcp' | 'providerAccounts' | 'providerApiKeys'
|
||||
| 'about'
|
||||
| 'archivedChats'
|
||||
| 'gateway'
|
||||
| 'keysSettings'
|
||||
| 'keysTools'
|
||||
| 'mcp'
|
||||
| 'plugins'
|
||||
| 'providerAccounts'
|
||||
| 'providerApiKeys'
|
||||
|
||||
const NON_CONFIG_SETTINGS: ReadonlyArray<{
|
||||
icon: IconComponent
|
||||
|
|
@ -418,6 +426,12 @@ const NON_CONFIG_SETTINGS: ReadonlyArray<{
|
|||
labelKey: 'keysSettings',
|
||||
tab: 'keys&kview=settings'
|
||||
},
|
||||
{
|
||||
icon: Package,
|
||||
keywords: ['plugins', 'extensions', 'desktop plugins', 'addon', 'add-on'],
|
||||
labelKey: 'plugins',
|
||||
tab: 'plugins'
|
||||
},
|
||||
{ icon: Archive, keywords: ['history', 'archived'], labelKey: 'archivedChats', tab: 'sessions' },
|
||||
{ icon: Info, keywords: ['version', 'about'], labelKey: 'about', tab: 'about' }
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue