Enable copilot by default (#1608)
This commit is contained in:
parent
93b0101d4c
commit
135a409f0c
|
@ -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"),
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue