Class UrlSource
java.lang.Object
dev.langchain4j.data.document.source.UrlSource
- All Implemented Interfaces:
DocumentSource
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic UrlSource
static UrlSource
static UrlSource
Provides anInputStream
to read the content of the document.metadata()
Returns the metadata associated with the source of the document.
-
Constructor Details
-
UrlSource
-
-
Method Details
-
inputStream
Description copied from interface:DocumentSource
Provides anInputStream
to read the content of the document. This method can be implemented to read from various sources like a local file or a network connection.- Specified by:
inputStream
in interfaceDocumentSource
- Returns:
- An InputStream from which the document content can be read.
- Throws:
IOException
- If an I/O error occurs while creating the InputStream.
-
metadata
Description copied from interface:DocumentSource
Returns the metadata associated with the source of the document. This could include details such as the source location, date of creation, owner, etc.- Specified by:
metadata
in interfaceDocumentSource
- Returns:
- A Metadata object containing information associated with the source of the document.
-
from
-
from
-
from
-