VectorChromaQueryEngineName | Description |
---|---|
db_path | Type: str | None Default: None |
embedding_function | Type: Optional[EmbeddingFunction[Any]] Default: None |
metadata | Type: dict[str, typing.Any] | None Default: None |
llm | Type: ForwardRef(‘LLM’) | None Default: None |
collection_name | Type: str | None Default: None |
Name | Description |
---|---|
new_doc_dir | The directory path from which to load additional documents. If provided, all eligible files in this directory are loaded. Type: pathlib.Path | str | None Default: None |
new_doc_paths_or_urls | A list of file paths specifying additional documents to load. Each file should be a Docling-parsed Markdown file. Type: Sequence[pathlib.Path | str] | None Default: None |
Name | Description |
---|---|
*args | Type: Any |
**kwargs | Type: Any |
Type | Description |
---|---|
str | The name of the collection. |
Name | Description |
---|---|
new_doc_dir | Type: pathlib.Path | str | None Default: None |
new_doc_paths_or_urls | Type: Sequence[pathlib.Path | str] | None Default: None |
*args | Type: Any |
**kwargs | Type: Any |
Name | Description |
---|---|
question | A natural language query string used to search the indexed documents. Type: str |
Type | Description |
---|---|
str | A string containing the response generated by LLM. |