fix(aidoc): Bump dependencies, add pnpm workspace config, and add AiDoc.stop()

This commit is contained in:
2025-08-16 11:20:39 +00:00
parent 8561940b8c
commit 2405fb3370
6 changed files with 2584 additions and 1107 deletions

View File

@@ -75,6 +75,10 @@ export class AiDoc {
await this.openaiInstance.start();
}
public async stop() {
await this.openaiInstance.stop();
}
public async buildReadme(projectDirArg: string) {
const readmeInstance = new aiDocsClasses.Readme(this, projectDirArg);
return await readmeInstance.build();