From 28e664c433556113e9773c01d178fd01e70b6bc5 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 6 May 2025 19:41:32 -0400 Subject: [PATCH] agent: Launch it (#30005) This PR enables the Agent-related feature flags on the client. Release Notes: - N/A --- crates/feature_flags/src/feature_flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/feature_flags/src/feature_flags.rs b/crates/feature_flags/src/feature_flags.rs index 3bb05d5d4fb67c58dc6e61156d2f437a4f725b1b..19a7bdf676d5b67a24785c9ae4e044c9cd63a3ed 100644 --- a/crates/feature_flags/src/feature_flags.rs +++ b/crates/feature_flags/src/feature_flags.rs @@ -59,7 +59,7 @@ pub trait FeatureFlag { /// Controls the values of various feature flags for the Agent launch. /// /// Change this to `true` when we're ready to build the release candidate. -const AGENT_LAUNCH: bool = false; +const AGENT_LAUNCH: bool = true; pub struct Assistant2FeatureFlag;