33 lines
579 B
JSON
33 lines
579 B
JSON
{
|
|
"id": "batch_file_sync_basic",
|
|
"category": "batch",
|
|
"description": "Extract text from multiple files synchronously",
|
|
"tags": [
|
|
"batch",
|
|
"sync",
|
|
"multiple_files"
|
|
],
|
|
"call": "batch_extract_files_sync",
|
|
"input": {
|
|
"paths": [
|
|
{
|
|
"path": "pdf/fake_memo.pdf"
|
|
},
|
|
{
|
|
"path": "text/fake_text.txt"
|
|
}
|
|
]
|
|
},
|
|
"assertions": [
|
|
{
|
|
"type": "not_error"
|
|
}
|
|
],
|
|
"skip": {
|
|
"languages": [
|
|
"wasm"
|
|
],
|
|
"reason": "WASM cannot access filesystem; use extractBytes with file content instead"
|
|
}
|
|
}
|