We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ab012e commit 285379dCopy full SHA for 285379d
1 file changed
src/lib/components/chat/Chat.svelte
@@ -2530,10 +2530,8 @@
2530
} else {
2531
toolServerIds.push(serverId);
2532
}
2533
- } else if (toolId.startsWith('server:') || $config?.features?.enable_plugins) {
2534
- toolIds.push(toolId);
2535
2536
- continue;
+ toolIds.push(toolId);
2537
2538
2539
@@ -2561,10 +2559,7 @@
2561
2559
2562
2560
files: (files?.length ?? 0) > 0 ? files : undefined,
2563
2564
- filter_ids:
2565
- $config?.features?.enable_plugins && selectedFilterIds.length > 0
2566
- ? selectedFilterIds
2567
- : undefined,
+ filter_ids: selectedFilterIds.length > 0 ? selectedFilterIds : undefined,
2568
tool_ids: toolIds.length > 0 ? toolIds : undefined,
2569
skill_ids: skillIds.length > 0 ? skillIds : undefined,
2570
terminal_id: terminalEnabled ? (activeTerminalId ?? undefined) : undefined,
0 commit comments