diff --git a/src/lib/toolbar.ts b/src/lib/toolbar.ts index 85203d74d..b0790ee8a 100644 --- a/src/lib/toolbar.ts +++ b/src/lib/toolbar.ts @@ -427,6 +427,21 @@ export const toolbarConfig: Record = { { id: 'ai', array: [ + { + id: 'prompt-to-edit', + onClick: () => + commandBarActor.send({ + type: 'Find and select command', + data: { name: 'Prompt-to-edit', groupId: 'modeling' }, + }), + icon: 'sparkles', + iconColor: '#29FFA4', + alwaysDark: true, + status: IS_ML_EXPERIMENTAL ? 'experimental' : 'available', + title: 'Modify with Zoo Text-to-CAD', + description: 'Edit geometry with AI / ML.', + links: [], + }, { id: 'text-to-cad', onClick: () => { @@ -457,21 +472,6 @@ export const toolbarConfig: Record = { }, ], }, - { - id: 'prompt-to-edit', - onClick: () => - commandBarActor.send({ - type: 'Find and select command', - data: { name: 'Prompt-to-edit', groupId: 'modeling' }, - }), - icon: 'sparkles', - iconColor: '#29FFA4', - alwaysDark: true, - status: IS_ML_EXPERIMENTAL ? 'experimental' : 'available', - title: 'Modify with Zoo Text-to-CAD', - description: 'Edit geometry with AI / ML.', - links: [], - }, ], }, ],