feat(commit): Integrate DualAgentOrchestrator for commit message generation and improve diff/context handling

This commit is contained in:
2025-12-15 11:36:03 +00:00
parent e500455557
commit 69802b46b6
8 changed files with 159 additions and 17 deletions

View File

@@ -99,6 +99,10 @@ export class AiDoc {
// They don't keep event loop alive
}
public getOpenaiToken(): string {
return this.openaiToken;
}
public async buildReadme(projectDirArg: string) {
const readmeInstance = new aiDocsClasses.Readme(this, projectDirArg);
return await readmeInstance.build();