Fix embedding parameter order in ChromaComponent
constructor
This commit is contained in:
parent
a8a5cb35e3
commit
6b996e2843
1 changed files with 1 additions and 1 deletions
|
|
@ -53,9 +53,9 @@ class ChromaComponent(CustomComponent):
|
|||
self,
|
||||
collection_name: str,
|
||||
persist: bool,
|
||||
embedding: Embeddings,
|
||||
chroma_server_ssl_enabled: bool,
|
||||
persist_directory: Optional[str] = None,
|
||||
embedding: Optional[Embeddings] = None,
|
||||
documents: Optional[Document] = None,
|
||||
chroma_server_cors_allow_origins: Optional[str] = None,
|
||||
chroma_server_host: Optional[str] = None,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue