Refactor: Use config.getGeminiClient() for GeminiClient instantiation (#715)

This commit is contained in:
N. Taylor Mullen
2025-06-02 22:30:52 -07:00
committed by GitHub
parent cf84f1af68
commit 8ab74ef1bb
9 changed files with 39 additions and 16 deletions

View File

@@ -114,7 +114,7 @@ Expectation for required parameters:
);
this.config = config;
this.rootDirectory = path.resolve(this.config.getTargetDir());
this.client = new GeminiClient(this.config);
this.client = config.getGeminiClient();
}
/**