Skip to content

Commit

Permalink
fix: set use tools as false in tools (#551)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulclindo authored Dec 4, 2024
1 parent 2dcda5c commit e564e35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/shinkai-desktop/src/components/sheet/table-chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e564e35

Please sign in to comment.