agent: Launch it (#30005)

Marshall Bowers created

This PR enables the Agent-related feature flags on the client.

Release Notes:

- N/A

Change summary

crates/feature_flags/src/feature_flags.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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;