mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-08 20:25:19 +02:00
fix: update llm-config types to allow nullable created_at and updated_at fields
This commit is contained in:
parent
eae259cb38
commit
f0a6c348d1
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue