ingest_docs
Ingest document strings into a LanceDB table. Accepts a single string or list of strings as input.
Instructions
Ingests a list of documents into a LanceDB table. It is critical that the metdata must be a string literal
Args:
docs (Union[str, List[str]]): A string or a list of strings to ingest.
Returns:
None
example:
ingest_docs(
docs=["Hello world", "Hello world 2"],
)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| docs | Yes |