34 lines
595 B
JSON
34 lines
595 B
JSON
{
|
|
"id": "batch_file_async_basic",
|
|
"category": "batch",
|
|
"description": "Extract text from multiple files asynchronously",
|
|
"tags": [
|
|
"batch",
|
|
"async",
|
|
"concurrent",
|
|
"multiple_files"
|
|
],
|
|
"call": "batch_extract_files",
|
|
"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"
|
|
}
|
|
}
|