30 lines
954 B
TypeScript
30 lines
954 B
TypeScript
/**
|
|
* 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<void>;
|
|
/**
|
|
* Example 2: Advanced Training with Real-time Monitoring
|
|
*/
|
|
declare function advancedTrainingExample(): Promise<void>;
|
|
/**
|
|
* Example 3: Cost-Optimized Training
|
|
*/
|
|
declare function costOptimizedTrainingExample(): Promise<void>;
|
|
/**
|
|
* Example 4: Quality-Focused Training
|
|
*/
|
|
declare function qualityFocusedTrainingExample(): Promise<void>;
|
|
/**
|
|
* Example 5: Benchmark Comparison
|
|
*/
|
|
declare function benchmarkComparisonExample(): Promise<void>;
|
|
export { basicTrainingExample, advancedTrainingExample, costOptimizedTrainingExample, qualityFocusedTrainingExample, benchmarkComparisonExample };
|
|
//# sourceMappingURL=dspy-training-example.d.ts.map
|