Chroma
ChromaReader #
Bases: BaseReader
Chroma reader.
Retrieve documents from existing persisted Chroma collections.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_name
|
str
|
Name of the persisted collection. |
required |
persist_directory
|
Optional[str]
|
Directory where the collection is persisted. |
None
|
Source code in llama-index-integrations/readers/llama-index-readers-chroma/llama_index/readers/chroma/base.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|
create_documents #
create_documents(results: Any) -> List[Document]
Create documents from the results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
results
|
Any
|
Results from the query. |
required |
Returns:
Type | Description |
---|---|
List[Document]
|
List of documents. |
Source code in llama-index-integrations/readers/llama-index-readers-chroma/llama_index/readers/chroma/base.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
load_data #
load_data(query_embedding: Optional[List[float]] = None, limit: int = 10, where: Optional[dict] = None, where_document: Optional[dict] = None, query: Optional[Union[str, List[str]]] = None) -> Any
Load data from the collection.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
limit
|
int
|
Number of results to return. |
10
|
where
|
Optional[dict]
|
Filter results by metadata. {"metadata_field": "is_equal_to_this"} |
None
|
where_document
|
Optional[dict]
|
Filter results by document. {"$contains":"search_string"} |
None
|
Returns:
Type | Description |
---|---|
Any
|
List of documents. |
Source code in llama-index-integrations/readers/llama-index-readers-chroma/llama_index/readers/chroma/base.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|