Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
export IncludeEnum as it is required by #get and #query (chroma-core#…
…1167) ## Description of changes The `IncludeEnum` enum is not exported, cause lint errors when using `.get` or `.query`, as follows: ```js const result = await collection.query({ queryTexts: [query], // THIS LINE WILL PRODUCE LINT ERROR as it needs IncludeEnum.Distances etc. include: ['distances', 'documents', 'metadatas'], nResults: 2, }) ``` ## Test plan Nil ## Documentation Changes Nil
- Loading branch information