48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
/**
|
|
* Real-World Integration Examples for Agentic-Synth
|
|
*
|
|
* This file demonstrates practical integrations with popular
|
|
* frameworks and tools for various use cases.
|
|
*/
|
|
/**
|
|
* Express.js REST API for synthetic data generation
|
|
*/
|
|
export declare function expressAPIExample(): Promise<void>;
|
|
/**
|
|
* Database seeding with Prisma ORM
|
|
*/
|
|
export declare function prismaSeedingExample(): Promise<void>;
|
|
/**
|
|
* Generate test fixtures for Jest tests
|
|
*/
|
|
export declare function jestFixturesExample(): Promise<void>;
|
|
/**
|
|
* Generate training data for TensorFlow.js models
|
|
*/
|
|
export declare function tensorflowTrainingExample(): Promise<void>;
|
|
/**
|
|
* Generate mock data for GraphQL resolvers
|
|
*/
|
|
export declare function graphqlMockingExample(): Promise<void>;
|
|
/**
|
|
* Cache generated data in Redis for distributed systems
|
|
*/
|
|
export declare function redisCachingExample(): Promise<void>;
|
|
/**
|
|
* Generate and publish events to Kafka
|
|
*/
|
|
export declare function kafkaStreamingExample(): Promise<void>;
|
|
/**
|
|
* Generate and bulk index documents in Elasticsearch
|
|
*/
|
|
export declare function elasticsearchIndexingExample(): Promise<void>;
|
|
/**
|
|
* Next.js API route for data generation
|
|
*/
|
|
export declare function nextjsAPIRouteExample(): Promise<void>;
|
|
/**
|
|
* Supabase database seeding and real-time subscriptions
|
|
*/
|
|
export declare function supabaseIntegrationExample(): Promise<void>;
|
|
export declare function runAllExamples(): Promise<void>;
|
|
//# sourceMappingURL=integration-examples.d.ts.map
|