@@ -19,7 +19,7 @@ interface PlanData {
1919 categories : string [ ] ;
2020 student_discount : boolean ;
2121 startup_credits : boolean ;
22- tools_compatible : string [ ] ;
22+ compatible_tools : string [ ] ;
2323 community_score ?: number ;
2424 latency ?: {
2525 average_ms ?: number ;
@@ -44,7 +44,7 @@ const COMPARISON_ROWS: { key: string; label: string; getValue: (p: PlanData) =>
4444 { key : 'tpm' , label : 'Tokens/min' , getValue : p => p . limits . tokens_per_minute ? `${ ( p . limits . tokens_per_minute / 1000 ) . toFixed ( 0 ) } K` : '—' } ,
4545 { key : 'daily' , label : 'Daily Message Limit' , getValue : p => p . limits . daily_message_limit ?. toString ( ) || '—' } ,
4646 { key : 'features' , label : 'Features' , getValue : p => p . features . join ( ', ' ) || '—' } ,
47- { key : 'tools' , label : 'Tool Compatibility' , getValue : p => p . tools_compatible . join ( ', ' ) || '—' } ,
47+ { key : 'tools' , label : 'Tool Compatibility' , getValue : p => p . compatible_tools . join ( ', ' ) || '—' } ,
4848 { key : 'student' , label : 'Student Discount' , getValue : p => p . student_discount ? '✅ Yes' : '❌ No' } ,
4949 { key : 'community' , label : 'Community Score' , getValue : p => p . community_score != null ? `${ p . community_score } /100` : '—' } ,
5050 { key : 'latency' , label : 'Avg Latency' , getValue : p => p . latency ?. average_ms ? `${ p . latency . average_ms } ms` : '—' } ,
0 commit comments