mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
fix(scrapeURL/llmExtract): fill in required field as well
This commit is contained in:
parent
0588f340c3
commit
79cadcb769
|
@ -23,6 +23,7 @@ function normalizeSchema(x: any): any {
|
||||||
return {
|
return {
|
||||||
...x,
|
...x,
|
||||||
properties: Object.fromEntries(Object.entries(x.properties).map(([k, v]) => [k, normalizeSchema(v)])),
|
properties: Object.fromEntries(Object.entries(x.properties).map(([k, v]) => [k, normalizeSchema(v)])),
|
||||||
|
required: Object.keys(x.properties),
|
||||||
additionalProperties: false,
|
additionalProperties: false,
|
||||||
}
|
}
|
||||||
} else if (x && x.type === "array") {
|
} else if (x && x.type === "array") {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user