Skip to content

Commit 847a682

Browse files
committed
feat: update content schemas
1 parent 5877d4c commit 847a682

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/content.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ const models = defineCollection({
5252
strengths: z.array(z.string()),
5353
weaknesses: z.array(z.string()),
5454
vibe_coding_score: z.number().min(0).max(10),
55+
model_type: z.enum(['open_weight', 'closed_source']),
5556
plans_available: z.array(z.string()),
5657
updated_at: z.string().optional(),
5758
}),
@@ -64,6 +65,7 @@ const tools = defineCollection({
6465
slug: z.string(),
6566
description: z.string(),
6667
external_url: z.string().url(),
68+
tool_type: z.enum(['cli', 'ide', 'extension']),
6769
features: z.array(z.string()),
6870
plans_compatible: z.array(z.string()),
6971
updated_at: z.string().optional(),

0 commit comments

Comments
 (0)