prfect
Version:
Prfect is a powerful tool that analyzes your git commits and generates professional pull request descriptions using local AI models via Ollama. No more struggling with blank PR templates or forgetting what you changed!
12 lines (11 loc) • 392 B
text/typescript
// Re-export all utility classes for easy importing
export { GitAnalyzer, type CommitInfo } from "./GitAnalyzer";
export { OutputProcessor } from "./OutputProcessor";
export {
OllamaClient,
type OllamaResponse,
type OllamaModel,
type OllamaGenerateOptions,
type OllamaGenerateRequest,
} from "./OllamaClient";
export { TemplateLoader, type TemplateConfig } from "./TemplateLoader";