Files
fil/fixtures/batch/batch_file_sync_basic.json

33 lines
579 B
JSON
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
{
"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"
}
}