Skip to content

Commit b854389

Browse files
committed
refac
1 parent 6e030e8 commit b854389

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/lib/components/workspace/Models/BuiltinTools.svelte

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,14 @@
5454
calendar: {
5555
label: $i18n.t('Calendar'),
5656
description: $i18n.t('List calendars, search, create, update, and delete calendar events')
57+
},
58+
subagents: {
59+
label: $i18n.t('Sub-agents'),
60+
description: $i18n.t('Delegate focused work to parallel sub-agents')
5761
}
5862
};
5963
60-
const allTools = Object.keys(toolLabels);
64+
const allTools = Object.keys(toolLabels) as Array<keyof typeof toolLabels>;
6165
6266
export let builtinTools: Record<string, boolean> = {};
6367
</script>

0 commit comments

Comments
 (0)