File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -274,7 +274,6 @@ export const supplemetalContextFetchingTimeoutMsg = 'codewhisperer supplemental
274
274
275
275
export const crossFileContextConfig = {
276
276
numberOfChunkToFetch : 60 ,
277
- numberOfChunkToFetchExperiment : 1000 ,
278
277
topK : 3 ,
279
278
numberOfLinesEachChunk : 10 ,
280
279
}
Original file line number Diff line number Diff line change @@ -61,10 +61,7 @@ export async function fetchSupplementalContextForSrc(
61
61
return shouldProceed === undefined ? undefined : [ ]
62
62
}
63
63
64
- const codeChunksCalculated =
65
- CodeWhispererUserGroupSettings . instance . userGroup === UserGroup . Control
66
- ? crossFileContextConfig . numberOfChunkToFetch
67
- : crossFileContextConfig . numberOfChunkToFetchExperiment
64
+ const codeChunksCalculated = crossFileContextConfig . numberOfChunkToFetch
68
65
69
66
// Step 1: Get relevant cross files to refer
70
67
const relevantCrossFilePaths = await getCrossFileCandidates ( editor )
You can’t perform that action at this time.
0 commit comments