From 1e79465522b769d8d4db592271cdfc9ac7ea0e79 Mon Sep 17 00:00:00 2001 From: "bobo.yang" Date: Fri, 25 Aug 2023 10:41:14 +0800 Subject: [PATCH] Update feature toggle for "ask-code" to true - Update the feature toggle for "ask-code" to true in the feature_toggles.ts file. --- src/util/feature_flags/feature_toggles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/feature_flags/feature_toggles.ts b/src/util/feature_flags/feature_toggles.ts index f398f17..4756939 100644 --- a/src/util/feature_flags/feature_toggles.ts +++ b/src/util/feature_flags/feature_toggles.ts @@ -5,7 +5,7 @@ import * as path from 'path'; const featureTogglesJson = ` { "ask-code-summary": false, - "ask-code": false, + "ask-code": true, "ask-code-dfs": false }`; const featureToggles = JSON.parse(featureTogglesJson);