chore: fix some stuff idk

This commit is contained in:
2025-09-04 15:28:43 +02:00
parent c801abc2e8
commit 09a0862896
3 changed files with 16 additions and 75 deletions

View File

@@ -103,14 +103,6 @@ interface ProductAnalysis {
// 2. Create a ResponseType object
const productAnalysisType = createResponseType<ProductAnalysis>(
`{
productName: string;
priceRange: 'budget' | 'mid-range' | 'premium';
pros: string[];
cons: string[];
overallRating: number;
recommendation: 'buy' | 'consider' | 'avoid';
}`,
'A comprehensive product analysis with pros, cons, rating, and recommendation'
);