Skip to content

Commit

Permalink
enable AIChatHistory feature for android and desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
petemill committed Dec 12, 2024
1 parent b227150 commit 1577c7d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/ai_chat/core/common/features.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ bool IsAIChatEnabled() {

BASE_FEATURE(kAIChatHistory,
"AIChatHistory",
#if BUILDFLAG(IS_IOS)
base::FEATURE_DISABLED_BY_DEFAULT);
#else
base::FEATURE_ENABLED_BY_DEFAULT);
#endif

bool IsAIChatHistoryEnabled() {
return base::FeatureList::IsEnabled(features::kAIChatHistory);
Expand Down

0 comments on commit 1577c7d

Please sign in to comment.