// Re-export from industry-benchmarks
export * from './industry-benchmarks.js';
// For type compatibility
export type IndustryType =
| 'financial_services'
| 'healthcare'
| 'retail'
| 'manufacturing'
| 'technology'
| 'education'
| 'government'
| 'other';
// Helper to get benchmarks for a specific industry
export async function getBenchmarks(industry: IndustryType) {
// Use the exported getBenchmarkData function
const { getBenchmarkData } = await import('./industry-benchmarks.js');
// Get default benchmark for now
const benchmark = await getBenchmarkData(industry, 'general');
// Transform to expected format
return {
automationSavings: {
percentage: benchmark.adoption_rate,
confidence: benchmark.confidence_factor
},
errorReduction: {
percentage: 0.7, // Default
confidence: benchmark.confidence_factor
},
implementationTimeline: {
typicalMonths: benchmark.average_payback_months,
confidence: benchmark.confidence_factor
},
projectTypes: []
};
}