fix: update llm-config types to allow nullable created_at and updated_at fields

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-12-14 22:23:16 -08:00
parent eae259cb38
commit f0a6c348d1

View file

@ -45,8 +45,8 @@ export const llmConfig = z.object({
language: z.string().max(50).nullable(),
litellm_params: z.record(z.string(), z.any()).nullable().optional(),
search_space_id: z.number(),
created_at: z.string(),
updated_at: z.string().optional(),
created_at: z.string().nullable(),
updated_at: z.string().nullable().optional(),
});
export const globalLLMConfig = llmConfig