diff --git a/src/Copilot.ts b/src/Copilot.ts index 5d730fe..bf0aa31 100644 --- a/src/Copilot.ts +++ b/src/Copilot.ts @@ -21,10 +21,8 @@ export class Copilot { private stepPerformer: StepPerformer; private cacheHandler: CacheHandler; private isRunning: boolean = false; - private config: Config; private constructor(config: Config) { - this.config = config; this.promptCreator = new PromptCreator(config.frameworkDriver.apiCatalog); this.codeEvaluator = new CodeEvaluator(); this.snapshotManager = new SnapshotManager(config.frameworkDriver);