diff --git a/src/vs/workbench/contrib/void/browser/helpers/systemInfo.ts b/src/vs/workbench/contrib/void/browser/helpers/systemInfo.ts index ab1dabad..85b909b2 100644 --- a/src/vs/workbench/contrib/void/browser/helpers/systemInfo.ts +++ b/src/vs/workbench/contrib/void/browser/helpers/systemInfo.ts @@ -12,6 +12,3 @@ import { isLinux, isMacintosh, isWindows } from '../../../../../base/common/plat export const os = isWindows ? 'windows' : isMacintosh ? 'mac' : isLinux ? 'linux' : null -export const arch = process.arch -export const osplatform = process.platform; - diff --git a/src/vs/workbench/contrib/void/browser/prompt/prompts.ts b/src/vs/workbench/contrib/void/browser/prompt/prompts.ts index 105e1e93..04a0f9f1 100644 --- a/src/vs/workbench/contrib/void/browser/prompt/prompts.ts +++ b/src/vs/workbench/contrib/void/browser/prompt/prompts.ts @@ -9,7 +9,7 @@ import { filenameToVscodeLanguage } from '../helpers/detectLanguage.js'; import { CodeSelection, StagingSelectionItem, FileSelection } from '../chatThreadService.js'; import { VSReadFile } from '../helpers/readFile.js'; import { IModelService } from '../../../../../editor/common/services/model.js'; -import { os, arch, osplatform } from '../helpers/systemInfo.js'; +import { os } from '../helpers/systemInfo.js'; // this is just for ease of readability @@ -21,7 +21,7 @@ You are a coding assistant. You are given a list of instructions to follow \`INS Please respond to the user's query. The user has the following system information: - - ${os} ${arch} ${osplatform} + - ${os} In the case that the user asks you to make changes to code, you should make sure to return CODE BLOCKS of the changes, as well as explanations and descriptions of the changes. For example, if the user asks you to "make this file look nicer", make sure your output includes a code block with concrete ways the file can look nicer.