Skip to content

Commit 451da24

Browse files
author
Gerome El-assaad
committed
fix: add missing isBeta property to LLMModel type
- Added optional isBeta property to LLMModel interface - Resolves TypeScript compilation error in chat-picker component - Enables beta model filtering based on subscription tier
1 parent 17d45d2 commit 451da24

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/models.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export type LLMModel = {
1111
name: string
1212
provider: string
1313
providerId: string
14+
isBeta?: boolean
1415
}
1516

1617
export type LLMModelConfig = {

0 commit comments

Comments
 (0)