Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
24
npm/packages/agentic-synth-examples/examples/beginner/simple-data-generation.d.ts
vendored
Normal file
24
npm/packages/agentic-synth-examples/examples/beginner/simple-data-generation.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* BEGINNER TUTORIAL: Simple Data Generation
|
||||
*
|
||||
* Learn how to generate structured synthetic data with agentic-synth.
|
||||
* Perfect for creating test data, mock APIs, or prototyping.
|
||||
*
|
||||
* What you'll learn:
|
||||
* - Defining data schemas
|
||||
* - Generating structured data
|
||||
* - Saving output to files
|
||||
* - Working with different formats
|
||||
*
|
||||
* Prerequisites:
|
||||
* - Set GEMINI_API_KEY environment variable
|
||||
* - npm install @ruvector/agentic-synth
|
||||
*
|
||||
* Run: npx tsx examples/beginner/simple-data-generation.ts
|
||||
*/
|
||||
import { AgenticSynth } from '@ruvector/agentic-synth';
|
||||
declare const synth: AgenticSynth;
|
||||
declare function generateUserData(): Promise<void>;
|
||||
declare function generateWithConstraints(): Promise<void>;
|
||||
export { generateUserData, generateWithConstraints, synth };
|
||||
//# sourceMappingURL=simple-data-generation.d.ts.map
|
||||
Reference in New Issue
Block a user