diff --git a/CHANGELOG.md b/CHANGELOG.md index 97832602b..af67b7e82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.11.0-dev6 +## 0.11.0-dev7 ### Enhancements @@ -22,6 +22,7 @@ * **Fix some pdfs returning `KeyError: 'N'`** Certain pdfs were throwing this error when being opened by pdfminer. Added a wrapper function for pdfminer that allows these documents to be partitioned. * **Fix mis-splits on `Table` chunks.** Remedies repeated appearance of full `.text_as_html` on metadata of each `TableChunk` split from a `Table` element too large to fit in the chunking window. * **Import tables_agent from inference** so that we don't have to initialize a global table agent in unstructured OCR again +* **Fix local connector with absolute input path** When passed an absolute filepath for the input document path, the local connector incorrectly writes the output file to the input file directory. This fixes such that the output in this case is written to `output-dir/input-filename.json` ## 0.10.30 diff --git a/test_unstructured_ingest/dest/azure-cognitive-search.sh b/test_unstructured_ingest/dest/azure-cognitive-search.sh index 5a22e1a78..bafbfa789 100755 --- a/test_unstructured_ingest/dest/azure-cognitive-search.sh +++ b/test_unstructured_ingest/dest/azure-cognitive-search.sh @@ -6,9 +6,9 @@ SRC_PATH=$(dirname "$(realpath "$0")") SCRIPT_DIR=$(dirname "$SRC_PATH") cd "$SCRIPT_DIR"/.. || exit 1 OUTPUT_ROOT=${OUTPUT_ROOT:-$SCRIPT_DIR} +OUTPUT_FOLDER_NAME=azure-cog-search-dest OUTPUT_DIR=$OUTPUT_ROOT/structured-output/$OUTPUT_FOLDER_NAME WORK_DIR=$OUTPUT_ROOT/workdir/$OUTPUT_FOLDER_NAME -OUTPUT_FOLDER_NAME=azure-cog-search-dest max_processes=${MAX_PROCESSES:=$(python3 -c "import os; print(os.cpu_count())")} DESTINATION_INDEX="utic-test-ingest-fixtures-output-$(uuidgen)" @@ -90,19 +90,19 @@ while [ "$docs_count_remote" -eq 0 ] && [ "$attempt" -lt 6 ]; do --header "api-key: $AZURE_SEARCH_API_KEY" \ --header 'content-type: application/json' | jq) - echo "docs count pulled from Azure: $docs_count_remote" + echo "docs count pulled from Azure Cognitive Search: $docs_count_remote" attempt=$((attempt+1)) done docs_count_local=0 -for i in $(jq length "$OUTPUT_DIR"/**/*.json); do +for i in $(jq length "$OUTPUT_DIR"/*.json); do docs_count_local=$((docs_count_local+i)); done if [ "$docs_count_remote" -ne "$docs_count_local" ];then - echo "Number of docs in Azure $docs_count_remote doesn't match the expected docs: $docs_count_local" + echo "Number of docs in Azure Cognitive Search $docs_count_remote doesn't match the expected docs: $docs_count_local" exit 1 fi diff --git a/test_unstructured_ingest/dest/dropbox.sh b/test_unstructured_ingest/dest/dropbox.sh index 3db7ca30b..6f15285c7 100755 --- a/test_unstructured_ingest/dest/dropbox.sh +++ b/test_unstructured_ingest/dest/dropbox.sh @@ -73,7 +73,7 @@ expected_num_files=1 num_files_in_dropbox=$(curl -X POST https://api.dropboxapi.com/2/files/list_folder \ --header "Content-Type: application/json" \ --header "Authorization: Bearer $DROPBOX_ACCESS_TOKEN" \ - --data "{\"path\":\"$DESTINATION_DROPBOX/example-docs/\"}" | jq '.entries | length') + --data "{\"path\":\"$DESTINATION_DROPBOX/\"}" | jq '.entries | length') if [ "$num_files_in_dropbox" -ne "$expected_num_files" ]; then echo "Expected $expected_num_files files to be uploaded to dropbox, but found $num_files_in_dropbox files." exit 1 diff --git a/test_unstructured_ingest/dest/mongodb.sh b/test_unstructured_ingest/dest/mongodb.sh index 53496c347..51bc6d90e 100755 --- a/test_unstructured_ingest/dest/mongodb.sh +++ b/test_unstructured_ingest/dest/mongodb.sh @@ -66,4 +66,4 @@ python "$SCRIPT_DIR"/python/test-ingest-mongodb.py \ --database "$MONGODB_DATABASE_NAME" \ --collection "$DESTINATION_MONGO_COLLECTION" \ check-vector \ ---output-json "$OUTPUT_ROOT"/structured-output/$OUTPUT_FOLDER_NAME/example-docs/fake-memo.pdf.json +--output-json "$OUTPUT_ROOT"/structured-output/$OUTPUT_FOLDER_NAME/fake-memo.pdf.json diff --git a/test_unstructured_ingest/dest/s3.sh b/test_unstructured_ingest/dest/s3.sh index fc0bbf14c..9f99698fa 100755 --- a/test_unstructured_ingest/dest/s3.sh +++ b/test_unstructured_ingest/dest/s3.sh @@ -43,7 +43,7 @@ PYTHONPATH=${PYTHONPATH:-.} "$RUN_SCRIPT" \ # Simply check the number of files uploaded expected_num_files=1 -num_files_in_s3=$(aws s3 ls "${DESTINATION_S3}example-docs/" --region us-east-2 | grep -c "\.json$") +num_files_in_s3=$(aws s3 ls "${DESTINATION_S3}" --region us-east-2 | grep -c "\.json$") if [ "$num_files_in_s3" -ne "$expected_num_files" ]; then echo "Expected $expected_num_files files to be uploaded to s3, but found $num_files_in_s3 files." exit 1 diff --git a/test_unstructured_ingest/expected-structured-output/embed/example-docs/book-war-and-peace-1p.txt.json b/test_unstructured_ingest/expected-structured-output/embed/book-war-and-peace-1p.txt.json similarity index 100% rename from test_unstructured_ingest/expected-structured-output/embed/example-docs/book-war-and-peace-1p.txt.json rename to test_unstructured_ingest/expected-structured-output/embed/book-war-and-peace-1p.txt.json diff --git a/test_unstructured_ingest/expected-structured-output/local-single-file-with-encoding/example-docs/fake-html-cp1252.html.json b/test_unstructured_ingest/expected-structured-output/local-single-file-with-encoding/fake-html-cp1252.html.json similarity index 100% rename from test_unstructured_ingest/expected-structured-output/local-single-file-with-encoding/example-docs/fake-html-cp1252.html.json rename to test_unstructured_ingest/expected-structured-output/local-single-file-with-encoding/fake-html-cp1252.html.json diff --git a/test_unstructured_ingest/expected-structured-output/local-single-file/example-docs/language-docs/UDHR_first_article_all.txt.json b/test_unstructured_ingest/expected-structured-output/local-single-file/UDHR_first_article_all.txt.json similarity index 79% rename from test_unstructured_ingest/expected-structured-output/local-single-file/example-docs/language-docs/UDHR_first_article_all.txt.json rename to test_unstructured_ingest/expected-structured-output/local-single-file/UDHR_first_article_all.txt.json index 183f27ea8..7d23c3998 100644 --- a/test_unstructured_ingest/expected-structured-output/local-single-file/example-docs/language-docs/UDHR_first_article_all.txt.json +++ b/test_unstructured_ingest/expected-structured-output/local-single-file/UDHR_first_article_all.txt.json @@ -8,7 +8,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -27,7 +27,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -46,7 +46,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -65,7 +65,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -85,7 +85,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -104,7 +104,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -123,7 +123,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -143,7 +143,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -165,7 +165,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -187,7 +187,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -207,7 +207,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -227,7 +227,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -248,7 +248,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -267,7 +267,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -286,7 +286,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -305,7 +305,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -325,7 +325,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -344,7 +344,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -363,7 +363,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -384,7 +384,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -403,7 +403,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -424,7 +424,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -445,7 +445,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -464,7 +464,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -483,7 +483,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -503,7 +503,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -524,7 +524,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -543,7 +543,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -562,7 +562,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -578,7 +578,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -598,7 +598,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -619,7 +619,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -638,7 +638,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -657,7 +657,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -677,7 +677,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -698,7 +698,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -719,7 +719,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -735,7 +735,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -754,7 +754,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -773,7 +773,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -792,7 +792,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -813,7 +813,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -833,7 +833,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -852,7 +852,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -872,7 +872,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -891,7 +891,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -912,7 +912,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -931,7 +931,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -950,7 +950,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -970,7 +970,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -991,7 +991,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1011,7 +1011,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1030,7 +1030,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1049,7 +1049,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1068,7 +1068,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1087,7 +1087,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1108,7 +1108,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1127,7 +1127,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1146,7 +1146,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1165,7 +1165,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1185,7 +1185,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1205,7 +1205,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1224,7 +1224,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1246,7 +1246,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -1262,7 +1262,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1281,7 +1281,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1300,7 +1300,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1320,7 +1320,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1341,7 +1341,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1360,7 +1360,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1379,7 +1379,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1398,7 +1398,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1418,7 +1418,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -1434,7 +1434,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1454,7 +1454,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1475,7 +1475,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -1491,7 +1491,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -1507,7 +1507,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1527,7 +1527,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1546,7 +1546,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1566,7 +1566,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1586,7 +1586,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1605,7 +1605,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1624,7 +1624,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1644,7 +1644,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1663,7 +1663,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1682,7 +1682,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1701,7 +1701,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1721,7 +1721,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1740,7 +1740,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1760,7 +1760,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1779,7 +1779,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1799,7 +1799,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1818,7 +1818,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1837,7 +1837,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1856,7 +1856,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1875,7 +1875,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1894,7 +1894,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1914,7 +1914,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1933,7 +1933,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1953,7 +1953,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1972,7 +1972,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -1991,7 +1991,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2010,7 +2010,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2030,7 +2030,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2049,7 +2049,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2069,7 +2069,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2088,7 +2088,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2108,7 +2108,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2127,7 +2127,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2146,7 +2146,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2165,7 +2165,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2185,7 +2185,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2204,7 +2204,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2223,7 +2223,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2243,7 +2243,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2263,7 +2263,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2283,7 +2283,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2302,7 +2302,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2321,7 +2321,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2340,7 +2340,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -2356,7 +2356,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2375,7 +2375,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2395,7 +2395,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2417,7 +2417,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2436,7 +2436,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2455,7 +2455,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2475,7 +2475,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2496,7 +2496,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2517,7 +2517,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2536,7 +2536,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2555,7 +2555,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2576,7 +2576,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2596,7 +2596,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2617,7 +2617,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2637,7 +2637,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2656,7 +2656,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -2672,7 +2672,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2691,7 +2691,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2710,7 +2710,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2732,7 +2732,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2752,7 +2752,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2771,7 +2771,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2790,7 +2790,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2809,7 +2809,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2828,7 +2828,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2848,7 +2848,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2867,7 +2867,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2886,7 +2886,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2906,7 +2906,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2925,7 +2925,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2944,7 +2944,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2964,7 +2964,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -2983,7 +2983,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3003,7 +3003,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3022,7 +3022,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3042,7 +3042,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3063,7 +3063,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3082,7 +3082,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3102,7 +3102,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3122,7 +3122,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3141,7 +3141,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3160,7 +3160,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3179,7 +3179,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3200,7 +3200,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3219,7 +3219,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3239,7 +3239,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3258,7 +3258,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3277,7 +3277,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3296,7 +3296,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3316,7 +3316,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3337,7 +3337,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3356,7 +3356,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3375,7 +3375,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3397,7 +3397,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3417,7 +3417,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3436,7 +3436,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3455,7 +3455,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3474,7 +3474,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3494,7 +3494,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3515,7 +3515,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3535,7 +3535,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3555,7 +3555,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3575,7 +3575,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3595,7 +3595,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3614,7 +3614,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3633,7 +3633,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3652,7 +3652,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3673,7 +3673,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3694,7 +3694,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3714,7 +3714,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3734,7 +3734,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3755,7 +3755,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3776,7 +3776,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3798,7 +3798,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3818,7 +3818,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3837,7 +3837,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3858,7 +3858,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3877,7 +3877,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3897,7 +3897,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3916,7 +3916,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3935,7 +3935,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3957,7 +3957,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3976,7 +3976,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -3995,7 +3995,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4015,7 +4015,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -4031,7 +4031,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4050,7 +4050,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4069,7 +4069,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4088,7 +4088,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4107,7 +4107,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4126,7 +4126,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4145,7 +4145,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4164,7 +4164,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4183,7 +4183,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4202,7 +4202,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -4218,7 +4218,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4237,7 +4237,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4257,7 +4257,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4277,7 +4277,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4298,7 +4298,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4317,7 +4317,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4336,7 +4336,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4355,7 +4355,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4374,7 +4374,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4393,7 +4393,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4415,7 +4415,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4436,7 +4436,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4457,7 +4457,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4476,7 +4476,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4496,7 +4496,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4516,7 +4516,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4536,7 +4536,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4556,7 +4556,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4576,7 +4576,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -4592,7 +4592,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4611,7 +4611,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4631,7 +4631,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4651,7 +4651,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4671,7 +4671,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4692,7 +4692,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4711,7 +4711,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4731,7 +4731,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4750,7 +4750,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4769,7 +4769,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4788,7 +4788,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4808,7 +4808,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4829,7 +4829,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4849,7 +4849,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4870,7 +4870,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4892,7 +4892,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4912,7 +4912,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4931,7 +4931,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4952,7 +4952,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -4968,7 +4968,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -4987,7 +4987,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5008,7 +5008,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5027,7 +5027,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5046,7 +5046,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5065,7 +5065,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5084,7 +5084,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5104,7 +5104,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5125,7 +5125,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5144,7 +5144,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5163,7 +5163,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5182,7 +5182,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5202,7 +5202,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5221,7 +5221,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5240,7 +5240,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5260,7 +5260,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5279,7 +5279,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5298,7 +5298,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5317,7 +5317,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5337,7 +5337,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5358,7 +5358,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5378,7 +5378,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5399,7 +5399,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5419,7 +5419,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5438,7 +5438,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5457,7 +5457,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5476,7 +5476,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5495,7 +5495,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5515,7 +5515,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5534,7 +5534,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5555,7 +5555,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5574,7 +5574,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5594,7 +5594,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5615,7 +5615,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5634,7 +5634,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5653,7 +5653,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5673,7 +5673,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5695,7 +5695,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5716,7 +5716,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5736,7 +5736,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5755,7 +5755,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5774,7 +5774,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5794,7 +5794,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5815,7 +5815,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5835,7 +5835,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5854,7 +5854,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5873,7 +5873,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5893,7 +5893,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5914,7 +5914,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5935,7 +5935,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -5951,7 +5951,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5970,7 +5970,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -5989,7 +5989,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -6005,7 +6005,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6024,7 +6024,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6045,7 +6045,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6064,7 +6064,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6084,7 +6084,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6104,7 +6104,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6124,7 +6124,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6143,7 +6143,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6163,7 +6163,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6183,7 +6183,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6203,7 +6203,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6223,7 +6223,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6242,7 +6242,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6261,7 +6261,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6281,7 +6281,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6301,7 +6301,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6320,7 +6320,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6339,7 +6339,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6358,7 +6358,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6377,7 +6377,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6396,7 +6396,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6415,7 +6415,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6434,7 +6434,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6454,7 +6454,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6473,7 +6473,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6495,7 +6495,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6515,7 +6515,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6534,7 +6534,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6553,7 +6553,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6573,7 +6573,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6593,7 +6593,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6612,7 +6612,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6633,7 +6633,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -6649,7 +6649,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6671,7 +6671,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6690,7 +6690,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6709,7 +6709,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6728,7 +6728,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6747,7 +6747,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6768,7 +6768,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6790,7 +6790,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6809,7 +6809,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6831,7 +6831,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6850,7 +6850,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6869,7 +6869,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6888,7 +6888,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6907,7 +6907,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6926,7 +6926,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6945,7 +6945,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6965,7 +6965,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -6984,7 +6984,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7004,7 +7004,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7024,7 +7024,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7043,7 +7043,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7062,7 +7062,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7081,7 +7081,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7100,7 +7100,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7119,7 +7119,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7138,7 +7138,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7158,7 +7158,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7181,7 +7181,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7201,7 +7201,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7223,7 +7223,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7242,7 +7242,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7261,7 +7261,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7282,7 +7282,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7303,7 +7303,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7323,7 +7323,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7345,7 +7345,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7366,7 +7366,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7387,7 +7387,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7409,7 +7409,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7429,7 +7429,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7450,7 +7450,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7470,7 +7470,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7490,7 +7490,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7510,7 +7510,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7529,7 +7529,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7548,7 +7548,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7567,7 +7567,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7586,7 +7586,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7606,7 +7606,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7626,7 +7626,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7647,7 +7647,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7668,7 +7668,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7691,7 +7691,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7711,7 +7711,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7731,7 +7731,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7750,7 +7750,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7769,7 +7769,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7788,7 +7788,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7808,7 +7808,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7827,7 +7827,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7848,7 +7848,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7868,7 +7868,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7887,7 +7887,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7906,7 +7906,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7926,7 +7926,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7946,7 +7946,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7965,7 +7965,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -7984,7 +7984,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8004,7 +8004,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8023,7 +8023,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8042,7 +8042,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8061,7 +8061,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8082,7 +8082,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8101,7 +8101,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -8117,7 +8117,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8138,7 +8138,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8160,7 +8160,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8180,7 +8180,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8200,7 +8200,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8219,7 +8219,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8239,7 +8239,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8260,7 +8260,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -8276,7 +8276,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8297,7 +8297,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8316,7 +8316,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8335,7 +8335,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8354,7 +8354,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8375,7 +8375,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8395,7 +8395,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8416,7 +8416,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8438,7 +8438,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8457,7 +8457,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8476,7 +8476,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8495,7 +8495,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8515,7 +8515,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8534,7 +8534,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8555,7 +8555,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8574,7 +8574,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8594,7 +8594,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8613,7 +8613,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8632,7 +8632,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -8648,7 +8648,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8667,7 +8667,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -8683,7 +8683,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8704,7 +8704,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8723,7 +8723,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8742,7 +8742,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8762,7 +8762,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -8778,7 +8778,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -8794,7 +8794,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8813,7 +8813,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8832,7 +8832,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8851,7 +8851,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8870,7 +8870,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8889,7 +8889,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8910,7 +8910,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8930,7 +8930,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8949,7 +8949,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8968,7 +8968,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -8987,7 +8987,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9006,7 +9006,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9026,7 +9026,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9045,7 +9045,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -9061,7 +9061,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9083,7 +9083,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -9099,7 +9099,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9119,7 +9119,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9139,7 +9139,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9160,7 +9160,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9180,7 +9180,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9201,7 +9201,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9222,7 +9222,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9242,7 +9242,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9261,7 +9261,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9281,7 +9281,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9301,7 +9301,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9320,7 +9320,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9339,7 +9339,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9358,7 +9358,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9377,7 +9377,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9397,7 +9397,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9417,7 +9417,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9437,7 +9437,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9458,7 +9458,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9478,7 +9478,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9497,7 +9497,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9518,7 +9518,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9538,7 +9538,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9559,7 +9559,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9578,7 +9578,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9597,7 +9597,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9616,7 +9616,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9638,7 +9638,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9657,7 +9657,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9677,7 +9677,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain" }, @@ -9693,7 +9693,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9712,7 +9712,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9731,7 +9731,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9751,7 +9751,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9771,7 +9771,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9790,7 +9790,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9809,7 +9809,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9829,7 +9829,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9849,7 +9849,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9868,7 +9868,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9888,7 +9888,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9907,7 +9907,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9926,7 +9926,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9945,7 +9945,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9965,7 +9965,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -9985,7 +9985,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10006,7 +10006,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10025,7 +10025,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10045,7 +10045,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10064,7 +10064,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10083,7 +10083,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10103,7 +10103,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10122,7 +10122,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10141,7 +10141,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10160,7 +10160,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10179,7 +10179,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10201,7 +10201,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10224,7 +10224,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10243,7 +10243,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10264,7 +10264,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ @@ -10285,7 +10285,7 @@ "mode": 33188 } ], - "url": "example-docs/language-docs/UDHR_first_article_all.txt" + "url": "/home/runner/work/unstructured/unstructured/test_unstructured_ingest/../example-docs/language-docs/UDHR_first_article_all.txt" }, "filetype": "text/plain", "languages": [ diff --git a/test_unstructured_ingest/src/local-single-file.sh b/test_unstructured_ingest/src/local-single-file.sh index 0d762871e..0b3e7c584 100755 --- a/test_unstructured_ingest/src/local-single-file.sh +++ b/test_unstructured_ingest/src/local-single-file.sh @@ -9,6 +9,8 @@ OUTPUT_FOLDER_NAME=local-single-file OUTPUT_ROOT=${OUTPUT_ROOT:-$SCRIPT_DIR} OUTPUT_DIR=$OUTPUT_ROOT/structured-output/$OUTPUT_FOLDER_NAME WORK_DIR=$OUTPUT_ROOT/workdir/$OUTPUT_FOLDER_NAME +# assigning an absolute path to the input file so that we explicitly test passing an absolute path +ABS_INPUT_PATH="$SCRIPT_DIR/../example-docs/language-docs/UDHR_first_article_all.txt" max_processes=${MAX_PROCESSES:=$(python3 -c "import os; print(os.cpu_count())")} # shellcheck disable=SC1091 @@ -29,7 +31,7 @@ PYTHONPATH=${PYTHONPATH:-.} "$RUN_SCRIPT" \ --additional-partition-args '{"strategy":"ocr_only", "languages":["ind", "est"]}' \ --verbose \ --reprocess \ - --input-path example-docs/language-docs/UDHR_first_article_all.txt \ + --input-path "$ABS_INPUT_PATH" \ --work-dir "$WORK_DIR" set +e diff --git a/unstructured/__version__.py b/unstructured/__version__.py index ec06ce086..1af7b0d5b 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.11.0-dev6" # pragma: no cover +__version__ = "0.11.0-dev7" # pragma: no cover diff --git a/unstructured/ingest/connector/local.py b/unstructured/ingest/connector/local.py index 7bbf7348d..dceb75818 100644 --- a/unstructured/ingest/connector/local.py +++ b/unstructured/ingest/connector/local.py @@ -41,10 +41,12 @@ class LocalIngestDoc(BaseIngestDoc): @property def base_filename(self) -> t.Optional[str]: - download_path = str(Path(self.connector_config.input_path).resolve()) - full_path = str(self.filename) - base_path = full_path.replace(download_path, "") - return base_path + download_path = Path(self.connector_config.input_path).resolve() + full_path = Path(self.filename).resolve() + if download_path.is_file(): + download_path = download_path.parent + relative_path = full_path.relative_to(download_path) + return str(relative_path) @property def filename(self):