Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
49
npm/packages/agentic-synth/examples/employee-simulation/performance-data.d.ts
vendored
Normal file
49
npm/packages/agentic-synth/examples/employee-simulation/performance-data.d.ts
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
/**
|
||||
* Employee Performance Data Simulation
|
||||
*
|
||||
* Generates realistic KPI achievement data, project deliverables, code metrics,
|
||||
* sales targets, quality metrics, and learning progress for performance analysis.
|
||||
*
|
||||
* ETHICS NOTE: Performance simulations should be used for system testing only.
|
||||
* Never use synthetic data to make actual decisions about real employees.
|
||||
*/
|
||||
/**
|
||||
* Generate KPI achievement data
|
||||
* Models diverse performance metrics across different roles
|
||||
*/
|
||||
export declare function generateKPIData(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
||||
/**
|
||||
* Generate project deliverables tracking
|
||||
* Models project contributions and completion quality
|
||||
*/
|
||||
export declare function generateProjectDeliverables(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
||||
/**
|
||||
* Generate code commits and review metrics (for developers)
|
||||
* Models realistic development activity and code quality
|
||||
*/
|
||||
export declare function generateCodeMetrics(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
||||
/**
|
||||
* Generate sales targets and achievements
|
||||
* Models sales performance with realistic quota attainment
|
||||
*/
|
||||
export declare function generateSalesPerformance(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
||||
/**
|
||||
* Generate quality metrics across different roles
|
||||
* Models output quality and accuracy
|
||||
*/
|
||||
export declare function generateQualityMetrics(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
||||
/**
|
||||
* Generate learning and development progress
|
||||
* Models continuous learning and skill acquisition
|
||||
*/
|
||||
export declare function generateLearningProgress(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
||||
/**
|
||||
* Generate comprehensive performance review data
|
||||
* Models 360-degree feedback and competency ratings
|
||||
*/
|
||||
export declare function generatePerformanceReviews(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
|
||||
/**
|
||||
* Run all performance data examples
|
||||
*/
|
||||
export declare function runAllPerformanceExamples(): Promise<void>;
|
||||
//# sourceMappingURL=performance-data.d.ts.map
|
||||
Reference in New Issue
Block a user