mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-11-13 13:32:55 -05:00
refactor: Back use tools by default and disabling auto apply
This commit is contained in:
@ -212,7 +212,7 @@ GeneralSettings::GeneralSettings()
|
||||
"Enable tool use capabilities for the assistant(OpenAI function calling, Claude tools "
|
||||
"and etc) "
|
||||
"if plugin and provider support"));
|
||||
useTools.setDefaultValue(false);
|
||||
useTools.setDefaultValue(true);
|
||||
|
||||
allowFileSystemRead.setSettingsKey(Constants::CA_ALLOW_FILE_SYSTEM_READ);
|
||||
allowFileSystemRead.setLabelText(Tr::tr("Allow File System Read Access for tools"));
|
||||
@ -284,8 +284,11 @@ GeneralSettings::GeneralSettings()
|
||||
|
||||
auto caGroup = Group{
|
||||
title(TrConstants::CHAT_ASSISTANT),
|
||||
Column{caGrid,
|
||||
Column{useTools, allowFileSystemRead, allowFileSystemWrite, allowAccessOutsideProject, autoApplyFileEdits},
|
||||
Column{
|
||||
caGrid,
|
||||
Column{
|
||||
useTools, allowFileSystemRead, allowFileSystemWrite, allowAccessOutsideProject,
|
||||
/*autoApplyFileEdits*/},
|
||||
caTemplateDescription}};
|
||||
|
||||
auto rootLayout = Column{
|
||||
|
||||
Reference in New Issue
Block a user