Files
wifi-densepose/npm/packages/agentic-synth/examples/employee-simulation/workforce-behavior.d.ts
ruv d803bfe2b1 Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector
git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
2026-02-28 14:39:40 -05:00

44 lines
1.9 KiB
TypeScript

/**
* Employee Behavior Patterns Simulation
*
* Generates realistic daily work schedules, productivity patterns, collaboration,
* and communication behaviors for workforce modeling.
*
* PRIVACY NOTE: All data is synthetic. No real employee data is used or should
* be used to train these models without explicit consent and proper anonymization.
*/
/**
* Generate daily work schedule patterns
* Simulates diverse work hours including flexible schedules, remote work, etc.
*/
export declare function generateWorkSchedules(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate productivity patterns throughout the day
* Models realistic variations in focus and output
*/
export declare function generateProductivityPatterns(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate collaboration and communication patterns
* Models team interactions, meeting participation, and communication frequency
*/
export declare function generateCollaborationPatterns(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate meeting attendance and participation data
* Models realistic meeting behaviors and engagement
*/
export declare function generateMeetingBehavior(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate task completion rates and patterns
* Models realistic work output and completion behaviors
*/
export declare function generateTaskCompletion(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Generate work-from-home vs office patterns
* Models hybrid work preferences and patterns
*/
export declare function generateWorkLocationPatterns(): Promise<import("../../src/types.js").GenerationResult<unknown>>;
/**
* Run all workforce behavior examples
*/
export declare function runAllBehaviorExamples(): Promise<void>;
//# sourceMappingURL=workforce-behavior.d.ts.map