Update feature toggle for "ask-code" to true

- Update the feature toggle for "ask-code" to true in the feature_toggles.ts file.
This commit is contained in:
bobo.yang 2023-08-25 10:41:14 +08:00
parent 8c5e4ff3ae
commit 1e79465522

View File

@ -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);