adpa-enterprise-framework-automation
Version:
Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe
15 lines • 644 B
TypeScript
import type { ProjectContext } from '../../../index.js';
import type { DocumentProcessor, DocumentOutput } from '../../documentGenerator/types.js';
/**
* SolutionEvaluationProcessor
* Implements the DocumentProcessor interface for Solution Evaluation documents.
* Uses AIProcessor for enhanced content, with fallback to the template.
*/
export declare class SolutionEvaluationProcessor implements DocumentProcessor {
private aiProcessor;
private template;
process(context: ProjectContext): Promise<DocumentOutput>;
private createPrompt;
private validateOutput;
}
//# sourceMappingURL=SolutionEvaluationProcessor.d.ts.map