UNPKG

@aaswe/codebase-ai

Version:

AI-Assisted Software Engineering (AASWE) - Rich codebase context for IDE LLMs

14 lines 729 B
/** * RDF Generator Module * * RDF generation system for creating .module-knowledge.ttl files * from AST analysis results, optimized for both Neo4j ingestion and LLM consumption. */ export { RDFGenerator } from './RDFGenerator'; export { RDFValidator } from './RDFValidator'; export { RDFService } from './RDFService'; export * from './types'; export * from './ontology'; export type { ModuleKnowledge, RDFGenerationOptions, RDFGenerationResult, RDFValidationResult, ClassKnowledge, MethodKnowledge, FunctionKnowledge, TTLFileMetadata } from './types'; export { RDF_NAMESPACES, ONTOLOGY_CLASSES, ONTOLOGY_PROPERTIES, BUSINESS_CONTEXT_PLACEHOLDERS, NEO4J_OPTIMIZATION } from './ontology'; //# sourceMappingURL=index.d.ts.map