From 7049a3e918907032e4bbc06d7d3f5eaf4c6b79f8 Mon Sep 17 00:00:00 2001 From: Hiep Le <69354317+hieptl@users.noreply.github.com> Date: Tue, 4 Nov 2025 20:32:45 +0700 Subject: [PATCH] chore(frontend): add feature flag for planning agent (#11616) --- frontend/src/utils/feature-flags.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/utils/feature-flags.ts b/frontend/src/utils/feature-flags.ts index c97c06fcfd..acbe83d7d7 100644 --- a/frontend/src/utils/feature-flags.ts +++ b/frontend/src/utils/feature-flags.ts @@ -19,3 +19,4 @@ export const ENABLE_TRAJECTORY_REPLAY = () => loadFeatureFlag("TRAJECTORY_REPLAY"); export const USE_V1_CONVERSATION_API = () => loadFeatureFlag("USE_V1_CONVERSATION_API"); +export const USE_PLANNING_AGENT = () => loadFeatureFlag("USE_PLANNING_AGENT");