mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-26 21:39:43 +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(),
|
language: z.string().max(50).nullable(),
|
||||||
litellm_params: z.record(z.string(), z.any()).nullable().optional(),
|
litellm_params: z.record(z.string(), z.any()).nullable().optional(),
|
||||||
search_space_id: z.number(),
|
search_space_id: z.number(),
|
||||||
created_at: z.string(),
|
created_at: z.string().nullable(),
|
||||||
updated_at: z.string().optional(),
|
updated_at: z.string().nullable().optional(),
|
||||||
});
|
});
|
||||||
|
|
||||||
export const globalLLMConfig = llmConfig
|
export const globalLLMConfig = llmConfig
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue