[docs][minor]: Fix typo in Custom Document Loader doc (#20003)

This commit is contained in:
Christophe Bornet 2024-04-04 16:59:33 +02:00 committed by GitHub
parent 31e3ecc728
commit 02152d3909
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,12 +29,12 @@
"The main abstractions for Document Loading are:\n", "The main abstractions for Document Loading are:\n",
"\n", "\n",
"\n", "\n",
"| Component | Description |\n", "| Component | Description |\n",
"|--------------------|--------------------------------|\n", "|----------------|--------------------------------|\n",
"| Document | Contains `text` and `metadata` |\n", "| Document | Contains `text` and `metadata` |\n",
"| BaseDocumentLoader | Use to convert raw data into `Documents` |\n", "| BaseLoader | Use to convert raw data into `Documents` |\n",
"| Blob | A representation of binary data thta's located either in a file or in memory |\n", "| Blob | A representation of binary data thta's located either in a file or in memory |\n",
"| BaseBlobParser | Logic to parse a `Blob` to yield `Document` objects |\n", "| BaseBlobParser | Logic to parse a `Blob` to yield `Document` objects |\n",
"\n", "\n",
"This guide will demonstrate how to write custom document loading and file parsing logic; specifically, we'll see how to:\n", "This guide will demonstrate how to write custom document loading and file parsing logic; specifically, we'll see how to:\n",
"\n", "\n",