/** * DSPy Training Session - Usage Example * * Demonstrates how to use the DSPy learning framework for multi-model training * with automatic prompt optimization and benchmarking. * * @example */ /** * Example 1: Basic Training Session */ declare function basicTrainingExample(): Promise; /** * Example 2: Advanced Training with Real-time Monitoring */ declare function advancedTrainingExample(): Promise; /** * Example 3: Cost-Optimized Training */ declare function costOptimizedTrainingExample(): Promise; /** * Example 4: Quality-Focused Training */ declare function qualityFocusedTrainingExample(): Promise; /** * Example 5: Benchmark Comparison */ declare function benchmarkComparisonExample(): Promise; export { basicTrainingExample, advancedTrainingExample, costOptimizedTrainingExample, qualityFocusedTrainingExample, benchmarkComparisonExample }; //# sourceMappingURL=dspy-training-example.d.ts.map