Skip to content

Commit 446c58c

Browse files
authored
Remove ailogic experimental feature flag (#9379)
1 parent 5bac350 commit 446c58c

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
- Added `functions.list_functions` as a MCP tool (#9369)
2+
- Added AI Logic to `firebase init` CLI command and `firebase_init` MCP tool. (#9185)

src/commands/init.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,11 @@ if (isEnabled("apptesting")) {
116116
});
117117
}
118118

119-
if (isEnabled("ailogic")) {
120-
choices.push({
121-
value: "ailogic",
122-
name: "AI Logic: Set up Firebase AI Logic with app provisioning",
123-
checked: false,
124-
});
125-
}
119+
choices.push({
120+
value: "ailogic",
121+
name: "AI Logic: Set up Firebase AI Logic with app provisioning",
122+
checked: false,
123+
});
126124

127125
choices.push({
128126
value: "aitools",

src/experiments.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -148,13 +148,6 @@ export const ALL_EXPERIMENTS = experiments({
148148
shortDescription: "Adds experimental App Testing feature",
149149
public: true,
150150
},
151-
ailogic: {
152-
shortDescription: "Enable Firebase AI Logic feature for existing apps",
153-
fullDescription:
154-
"Enables the AI Logic initialization feature that provisions AI Logic for existing Firebase apps.",
155-
public: true,
156-
default: false,
157-
},
158151
});
159152

160153
export type ExperimentName = keyof typeof ALL_EXPERIMENTS;

0 commit comments

Comments
 (0)