Enable copilot by default (#1608)

This commit is contained in:
Armando Trejo Oliver 2023-09-12 15:40:26 -07:00 committed by GitHub
parent 93b0101d4c
commit 135a409f0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -108,10 +108,10 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear
enableLegacyMongoShellV2Debug: "true" === get("enablelegacymongoshellv2debug"),
loadLegacyMongoShellFromBE: "true" === get("loadlegacymongoshellfrombe"),
enablePriorityBasedThrottling: "true" === get("enableprioritybasedthrottling"),
enableCopilot: "true" === get("enablecopilot"),
enableCopilot: "true" === get("enablecopilot", "true"),
copilotVersion: get("copilotversion") ?? "v1.0",
disableCopilotPhoenixGateaway: "true" === get("disablecopilotphoenixgateaway"),
enableCopilotFullSchema: "false" === get("enablecopilotfullschema") ? false : true,
enableCopilotFullSchema: "true" === get("enablecopilotfullschema", "true"),
};
}