* fix debug quote list

* delete next text node match

* fix extract default boolean value

* export latest 100 chat items

* fix quote item ui

* doc

* fix doc
This commit is contained in:
heheer
2025-04-22 20:10:35 +08:00
committed by GitHub
parent 27614e9e8b
commit 5c93545016
9 changed files with 28 additions and 26 deletions

View File

@@ -103,7 +103,7 @@ export async function dispatchContentExtract(props: Props): Promise<Response> {
// auto fill required fields
extractKeys.forEach((item) => {
if (item.required && !arg[item.key]) {
if (item.required && arg[item.key] === undefined) {
arg[item.key] = item.defaultValue || '';
}
});