diff --git a/apps/shinkai-desktop/src/components/sheet/table-chat.tsx b/apps/shinkai-desktop/src/components/sheet/table-chat.tsx index ea345494e..213692c20 100644 --- a/apps/shinkai-desktop/src/components/sheet/table-chat.tsx +++ b/apps/shinkai-desktop/src/components/sheet/table-chat.tsx @@ -124,6 +124,7 @@ export default function ChatTable() { temperature: DEFAULT_CHAT_CONFIG.temperature, top_p: DEFAULT_CHAT_CONFIG.top_p, top_k: DEFAULT_CHAT_CONFIG.top_k, + use_tools: DEFAULT_CHAT_CONFIG.use_tools, }, }); createJobForm.reset(); diff --git a/libs/shinkai-node-state/src/v2/mutations/createToolCode/index.ts b/libs/shinkai-node-state/src/v2/mutations/createToolCode/index.ts index 278cd43cb..82a1d7bc6 100644 --- a/libs/shinkai-node-state/src/v2/mutations/createToolCode/index.ts +++ b/libs/shinkai-node-state/src/v2/mutations/createToolCode/index.ts @@ -42,6 +42,7 @@ export const createToolCode = async ({ top_k: DEFAULT_CHAT_CONFIG.top_k, top_p: DEFAULT_CHAT_CONFIG.top_p, temperature: DEFAULT_CHAT_CONFIG.temperature, + use_tools: DEFAULT_CHAT_CONFIG.use_tools, }, }); currentJobId = newJobId;