chromadb-client 0.5.3.dev0__tar.gz → 0.5.5.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1114) hide show
  1. chromadb_client-0.5.5.dev0/.github/actions/rust/action.yaml +16 -0
  2. chromadb_client-0.5.5.dev0/.github/workflows/_go-tests.yml +46 -0
  3. chromadb_client-0.5.5.dev0/.github/workflows/_javascript-client-tests.yml +13 -0
  4. chromadb_client-0.5.5.dev0/.github/workflows/_python-tests.yml +181 -0
  5. chromadb_client-0.5.5.dev0/.github/workflows/_rust-tests.yml +25 -0
  6. chromadb_client-0.5.5.dev0/.github/workflows/nightly-tests.yml +48 -0
  7. chromadb_client-0.5.5.dev0/.github/workflows/pr.yml +161 -0
  8. chromadb_client-0.5.5.dev0/.github/workflows/release-chromadb.yml +281 -0
  9. chromadb_client-0.5.5.dev0/.github/workflows/release-javascript-client.yml +54 -0
  10. chromadb_client-0.5.5.dev0/.pre-commit-config.yaml +62 -0
  11. chromadb_client-0.5.5.dev0/Cargo.lock +4831 -0
  12. chromadb_client-0.5.5.dev0/PKG-INFO +66 -0
  13. chromadb_client-0.5.5.dev0/Tiltfile +147 -0
  14. chromadb_client-0.5.5.dev0/bin/get-logs.sh +44 -0
  15. chromadb_client-0.5.5.dev0/bin/test-package/install.sh +24 -0
  16. chromadb_client-0.5.5.dev0/bin/test-package/test-package.sh +8 -0
  17. chromadb_client-0.5.5.dev0/bin/test-package/test-thin-client-package.sh +8 -0
  18. chromadb_client-0.5.5.dev0/bin/windows_upgrade_sqlite.py +20 -0
  19. chromadb_client-0.5.5.dev0/chromadb/__init__.py +343 -0
  20. chromadb_client-0.5.5.dev0/chromadb/api/__init__.py +596 -0
  21. chromadb_client-0.5.5.dev0/chromadb/api/async_api.py +587 -0
  22. chromadb_client-0.5.5.dev0/chromadb/api/async_client.py +440 -0
  23. chromadb_client-0.5.5.dev0/chromadb/api/async_fastapi.py +551 -0
  24. chromadb_client-0.5.5.dev0/chromadb/api/base_http_client.py +97 -0
  25. chromadb_client-0.5.5.dev0/chromadb/api/client.py +429 -0
  26. chromadb_client-0.5.5.dev0/chromadb/api/configuration.py +361 -0
  27. chromadb_client-0.5.5.dev0/chromadb/api/fastapi.py +526 -0
  28. chromadb_client-0.5.5.dev0/chromadb/api/models/Collection.py +332 -0
  29. chromadb_client-0.5.5.dev0/chromadb/api/models/CollectionCommon.py +568 -0
  30. chromadb_client-0.5.5.dev0/chromadb/api/segment.py +921 -0
  31. chromadb_client-0.5.5.dev0/chromadb/api/types.py +543 -0
  32. chromadb_client-0.5.5.dev0/chromadb/auth/__init__.py +235 -0
  33. chromadb_client-0.5.5.dev0/chromadb/auth/basic_authn/__init__.py +146 -0
  34. chromadb_client-0.5.5.dev0/chromadb/auth/simple_rbac_authz/__init__.py +75 -0
  35. chromadb_client-0.5.5.dev0/chromadb/auth/token_authn/__init__.py +235 -0
  36. chromadb_client-0.5.5.dev0/chromadb/db/impl/grpc/client.py +323 -0
  37. chromadb_client-0.5.5.dev0/chromadb/db/impl/grpc/server.py +451 -0
  38. chromadb_client-0.5.5.dev0/chromadb/db/mixins/embeddings_queue.py +393 -0
  39. chromadb_client-0.5.5.dev0/chromadb/db/mixins/sysdb.py +804 -0
  40. chromadb_client-0.5.5.dev0/chromadb/db/system.py +136 -0
  41. chromadb_client-0.5.5.dev0/chromadb/errors.py +101 -0
  42. chromadb_client-0.5.5.dev0/chromadb/migrations/sysdb/00007-collection-config.sqlite.sql +2 -0
  43. chromadb_client-0.5.5.dev0/chromadb/proto/chroma_pb2.py +125 -0
  44. chromadb_client-0.5.5.dev0/chromadb/proto/chroma_pb2.pyi +427 -0
  45. chromadb_client-0.5.5.dev0/chromadb/proto/chroma_pb2_grpc.py +272 -0
  46. chromadb_client-0.5.5.dev0/chromadb/proto/convert.py +298 -0
  47. chromadb_client-0.5.5.dev0/chromadb/proto/coordinator_pb2.py +99 -0
  48. chromadb_client-0.5.5.dev0/chromadb/proto/coordinator_pb2.pyi +303 -0
  49. chromadb_client-0.5.5.dev0/chromadb/proto/coordinator_pb2_grpc.py +748 -0
  50. chromadb_client-0.5.5.dev0/chromadb/proto/logservice_pb2.py +48 -0
  51. chromadb_client-0.5.5.dev0/chromadb/proto/logservice_pb2.pyi +81 -0
  52. chromadb_client-0.5.5.dev0/chromadb/proto/logservice_pb2_grpc.py +231 -0
  53. chromadb_client-0.5.5.dev0/chromadb/segment/impl/distributed/segment_directory.py +271 -0
  54. chromadb_client-0.5.5.dev0/chromadb/segment/impl/manager/distributed.py +155 -0
  55. chromadb_client-0.5.5.dev0/chromadb/segment/impl/manager/local.py +266 -0
  56. chromadb_client-0.5.5.dev0/chromadb/segment/impl/metadata/sqlite.py +762 -0
  57. chromadb_client-0.5.5.dev0/chromadb/segment/impl/vector/batch.py +112 -0
  58. chromadb_client-0.5.5.dev0/chromadb/segment/impl/vector/brute_force_index.py +151 -0
  59. chromadb_client-0.5.5.dev0/chromadb/segment/impl/vector/local_hnsw.py +324 -0
  60. chromadb_client-0.5.5.dev0/chromadb/segment/impl/vector/local_persistent_hnsw.py +462 -0
  61. chromadb_client-0.5.5.dev0/chromadb/serde.py +51 -0
  62. chromadb_client-0.5.5.dev0/chromadb/server/fastapi/__init__.py +964 -0
  63. chromadb_client-0.5.5.dev0/chromadb/server/fastapi/types.py +78 -0
  64. chromadb_client-0.5.5.dev0/chromadb/telemetry/product/events.py +252 -0
  65. chromadb_client-0.5.5.dev0/chromadb/test/auth/rbac_test_executors.py +241 -0
  66. chromadb_client-0.5.5.dev0/chromadb/test/auth/test_base_class_behavior.py +106 -0
  67. chromadb_client-0.5.5.dev0/chromadb/test/configurations/test_configurations.py +78 -0
  68. chromadb_client-0.5.5.dev0/chromadb/test/conftest.py +852 -0
  69. chromadb_client-0.5.5.dev0/chromadb/test/data_loader/test_data_loader.py +119 -0
  70. chromadb_client-0.5.5.dev0/chromadb/test/db/test_system.py +781 -0
  71. chromadb_client-0.5.5.dev0/chromadb/test/distributed/test_sanity.py +148 -0
  72. chromadb_client-0.5.5.dev0/chromadb/test/ef/test_default_ef.py +93 -0
  73. chromadb_client-0.5.5.dev0/chromadb/test/ef/test_ef.py +53 -0
  74. chromadb_client-0.5.5.dev0/chromadb/test/ef/test_ollama_ef.py +33 -0
  75. chromadb_client-0.5.5.dev0/chromadb/test/ingest/test_producer_consumer.py +371 -0
  76. chromadb_client-0.5.5.dev0/chromadb/test/property/invariants.py +288 -0
  77. chromadb_client-0.5.5.dev0/chromadb/test/property/strategies.py +681 -0
  78. chromadb_client-0.5.5.dev0/chromadb/test/property/test_add.py +289 -0
  79. chromadb_client-0.5.5.dev0/chromadb/test/property/test_collections.py +345 -0
  80. chromadb_client-0.5.5.dev0/chromadb/test/property/test_collections_with_database_tenant.py +152 -0
  81. chromadb_client-0.5.5.dev0/chromadb/test/property/test_collections_with_database_tenant_overwrite.py +214 -0
  82. chromadb_client-0.5.5.dev0/chromadb/test/property/test_cross_version_persist.py +337 -0
  83. chromadb_client-0.5.5.dev0/chromadb/test/property/test_embeddings.py +823 -0
  84. chromadb_client-0.5.5.dev0/chromadb/test/property/test_filtering.py +440 -0
  85. chromadb_client-0.5.5.dev0/chromadb/test/property/test_persist.py +241 -0
  86. chromadb_client-0.5.5.dev0/chromadb/test/property/test_segment_manager.py +137 -0
  87. chromadb_client-0.5.5.dev0/chromadb/test/stress/test_many_collections.py +37 -0
  88. chromadb_client-0.5.5.dev0/chromadb/test/test_api.py +1615 -0
  89. chromadb_client-0.5.5.dev0/chromadb/test/test_logservice.py +178 -0
  90. chromadb_client-0.5.5.dev0/chromadb/test/test_multithreaded.py +225 -0
  91. chromadb_client-0.5.5.dev0/chromadb/test/utils/wait_for_version_increase.py +29 -0
  92. chromadb_client-0.5.5.dev0/chromadb/types.py +268 -0
  93. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/__init__.py +62 -0
  94. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/amazon_bedrock_embedding_function.py +55 -0
  95. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/chroma_langchain_embedding_function.py +69 -0
  96. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/cohere_embedding_function.py +27 -0
  97. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/google_embedding_function.py +110 -0
  98. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/huggingface_embedding_function.py +90 -0
  99. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/instructor_embedding_function.py +33 -0
  100. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/jina_embedding_function.py +60 -0
  101. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/ollama_embedding_function.py +58 -0
  102. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/onnx_mini_lm_l6_v2.py +234 -0
  103. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/open_clip_embedding_function.py +77 -0
  104. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/openai_embedding_function.py +138 -0
  105. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/roboflow_embedding_function.py +87 -0
  106. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/sentence_transformer_embedding_function.py +51 -0
  107. chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/text2vec_embedding_function.py +22 -0
  108. chromadb_client-0.5.5.dev0/chromadb_client.egg-info/PKG-INFO +66 -0
  109. chromadb_client-0.5.5.dev0/chromadb_client.egg-info/SOURCES.txt +897 -0
  110. chromadb_client-0.5.5.dev0/chromadb_client.egg-info/requires.txt +12 -0
  111. chromadb_client-0.5.5.dev0/clients/js/src/ChromaClient.ts +349 -0
  112. chromadb_client-0.5.5.dev0/clients/js/src/generated/api.ts +2548 -0
  113. chromadb_client-0.5.5.dev0/clients/js/src/generated/models.ts +212 -0
  114. chromadb_client-0.5.5.dev0/clients/js/src/types.ts +164 -0
  115. chromadb_client-0.5.5.dev0/clients/js/test/collection.client.test.ts +114 -0
  116. chromadb_client-0.5.5.dev0/clients/python/pyproject.toml +52 -0
  117. chromadb_client-0.5.5.dev0/clients/python/requirements.txt +12 -0
  118. chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/components/layout/TopNav.tsx +42 -0
  119. chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/_app.tsx +256 -0
  120. chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/deployment/migration.md +286 -0
  121. chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/getting-started.md +291 -0
  122. chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face-server.md +61 -0
  123. chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face.md +30 -0
  124. chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/integrations/jinaai.md +46 -0
  125. chromadb_client-0.5.5.dev0/go/cmd/coordinator/cmd.go +68 -0
  126. chromadb_client-0.5.5.dev0/go/database/log/db/copyfrom.go +45 -0
  127. chromadb_client-0.5.5.dev0/go/database/log/db/db.go +33 -0
  128. chromadb_client-0.5.5.dev0/go/database/log/db/models.go +18 -0
  129. chromadb_client-0.5.5.dev0/go/database/log/db/queries.sql.go +171 -0
  130. chromadb_client-0.5.5.dev0/go/database/log/queries/queries.sql +35 -0
  131. chromadb_client-0.5.5.dev0/go/database/log/schema/collection.sql +8 -0
  132. chromadb_client-0.5.5.dev0/go/go.sum +939 -0
  133. chromadb_client-0.5.5.dev0/go/migrations/20240621171854.sql +2 -0
  134. chromadb_client-0.5.5.dev0/go/migrations/atlas.sum +8 -0
  135. chromadb_client-0.5.5.dev0/go/pkg/coordinator/apis.go +170 -0
  136. chromadb_client-0.5.5.dev0/go/pkg/coordinator/apis_test.go +882 -0
  137. chromadb_client-0.5.5.dev0/go/pkg/coordinator/grpc/collection_service.go +284 -0
  138. chromadb_client-0.5.5.dev0/go/pkg/coordinator/grpc/proto_model_convert.go +249 -0
  139. chromadb_client-0.5.5.dev0/go/pkg/log/repository/log.go +122 -0
  140. chromadb_client-0.5.5.dev0/go/pkg/log/server/property_test.go +468 -0
  141. chromadb_client-0.5.5.dev0/go/pkg/log/server/server.go +112 -0
  142. chromadb_client-0.5.5.dev0/go/pkg/metastore/catalog.go +34 -0
  143. chromadb_client-0.5.5.dev0/go/pkg/metastore/coordinator/model_db_convert.go +190 -0
  144. chromadb_client-0.5.5.dev0/go/pkg/metastore/coordinator/model_db_convert_test.go +155 -0
  145. chromadb_client-0.5.5.dev0/go/pkg/metastore/coordinator/table_catalog.go +654 -0
  146. chromadb_client-0.5.5.dev0/go/pkg/metastore/coordinator/table_catalog_test.go +139 -0
  147. chromadb_client-0.5.5.dev0/go/pkg/metastore/db/dao/collection.go +202 -0
  148. chromadb_client-0.5.5.dev0/go/pkg/metastore/db/dao/collection_test.go +156 -0
  149. chromadb_client-0.5.5.dev0/go/pkg/metastore/db/dao/test_utils.go +188 -0
  150. chromadb_client-0.5.5.dev0/go/pkg/metastore/db/dbmodel/collection.go +42 -0
  151. chromadb_client-0.5.5.dev0/go/pkg/model/collection.go +72 -0
  152. chromadb_client-0.5.5.dev0/go/pkg/proto/coordinatorpb/chroma.pb.go +3834 -0
  153. chromadb_client-0.5.5.dev0/go/pkg/proto/coordinatorpb/chroma_grpc.pb.go +277 -0
  154. chromadb_client-0.5.5.dev0/go/pkg/proto/coordinatorpb/coordinator.pb.go +2930 -0
  155. chromadb_client-0.5.5.dev0/go/pkg/proto/coordinatorpb/coordinator_grpc.pb.go +681 -0
  156. chromadb_client-0.5.5.dev0/go/pkg/proto/logservicepb/logservice.pb.go +844 -0
  157. chromadb_client-0.5.5.dev0/go/pkg/proto/logservicepb/logservice_grpc.pb.go +224 -0
  158. chromadb_client-0.5.5.dev0/idl/chromadb/proto/chroma.proto +321 -0
  159. chromadb_client-0.5.5.dev0/idl/chromadb/proto/coordinator.proto +211 -0
  160. chromadb_client-0.5.5.dev0/idl/chromadb/proto/debug.proto +14 -0
  161. chromadb_client-0.5.5.dev0/idl/chromadb/proto/logservice.proto +66 -0
  162. chromadb_client-0.5.5.dev0/k8s/distributed-chroma/Chart.yaml +30 -0
  163. chromadb_client-0.5.5.dev0/k8s/distributed-chroma/templates/log-migration.yaml +29 -0
  164. chromadb_client-0.5.5.dev0/k8s/distributed-chroma/templates/sysdb-migration.yaml +32 -0
  165. chromadb_client-0.5.5.dev0/k8s/test/jaeger.yaml +47 -0
  166. chromadb_client-0.5.5.dev0/pyproject.toml +52 -0
  167. chromadb_client-0.5.5.dev0/requirements.txt +27 -0
  168. chromadb_client-0.5.5.dev0/requirements_dev.txt +13 -0
  169. chromadb_client-0.5.5.dev0/rust/worker/Cargo.toml +71 -0
  170. chromadb_client-0.5.5.dev0/rust/worker/Dockerfile +61 -0
  171. chromadb_client-0.5.5.dev0/rust/worker/README.md +15 -0
  172. chromadb_client-0.5.5.dev0/rust/worker/build.rs +44 -0
  173. chromadb_client-0.5.5.dev0/rust/worker/chroma_config.yaml +87 -0
  174. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/block/delta.rs +442 -0
  175. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/block/delta_storage.rs +957 -0
  176. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/block/types.rs +683 -0
  177. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/blockfile.rs +1280 -0
  178. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/concurrency_test.rs +69 -0
  179. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/config.rs +16 -0
  180. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/flusher.rs +54 -0
  181. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/mod.rs +8 -0
  182. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/provider.rs +441 -0
  183. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/sparse_index.rs +603 -0
  184. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/config.rs +7 -0
  185. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/memory/provider.rs +131 -0
  186. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/mod.rs +9 -0
  187. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/positional_posting_list_value.rs +268 -0
  188. chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/provider.rs +137 -0
  189. chromadb_client-0.5.5.dev0/rust/worker/src/compactor/compaction_manager.rs +517 -0
  190. chromadb_client-0.5.5.dev0/rust/worker/src/compactor/config.rs +9 -0
  191. chromadb_client-0.5.5.dev0/rust/worker/src/compactor/scheduler.rs +491 -0
  192. chromadb_client-0.5.5.dev0/rust/worker/src/config.rs +608 -0
  193. chromadb_client-0.5.5.dev0/rust/worker/src/errors.rs +54 -0
  194. chromadb_client-0.5.5.dev0/rust/worker/src/execution/dispatcher.rs +335 -0
  195. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operator.rs +290 -0
  196. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/brute_force_knn.rs +548 -0
  197. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/count_records.rs +442 -0
  198. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/flush_s3.rs +144 -0
  199. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/get_vectors_operator.rs +179 -0
  200. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/hnsw_knn.rs +236 -0
  201. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/merge_knn_results.rs +253 -0
  202. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/merge_metadata_results.rs +1022 -0
  203. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/metadata_filtering.rs +1357 -0
  204. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/normalize_vectors.rs +89 -0
  205. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/partition.rs +228 -0
  206. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/pull_log.rs +258 -0
  207. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/register.rs +286 -0
  208. chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/write_segments.rs +198 -0
  209. chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/common.rs +180 -0
  210. chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/compact.rs +706 -0
  211. chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/get_vectors.rs +329 -0
  212. chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/hnsw.rs +771 -0
  213. chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/metadata.rs +820 -0
  214. chromadb_client-0.5.5.dev0/rust/worker/src/execution/worker_thread.rs +67 -0
  215. chromadb_client-0.5.5.dev0/rust/worker/src/index/fulltext/types.rs +1242 -0
  216. chromadb_client-0.5.5.dev0/rust/worker/src/index/metadata/types.rs +1647 -0
  217. chromadb_client-0.5.5.dev0/rust/worker/src/lib.rs +168 -0
  218. chromadb_client-0.5.5.dev0/rust/worker/src/log/config.rs +14 -0
  219. chromadb_client-0.5.5.dev0/rust/worker/src/log/log.rs +446 -0
  220. chromadb_client-0.5.5.dev0/rust/worker/src/memberlist/memberlist_provider.rs +279 -0
  221. chromadb_client-0.5.5.dev0/rust/worker/src/segment/distributed_hnsw_segment.rs +357 -0
  222. chromadb_client-0.5.5.dev0/rust/worker/src/segment/metadata_segment.rs +2843 -0
  223. chromadb_client-0.5.5.dev0/rust/worker/src/segment/record_segment.rs +814 -0
  224. chromadb_client-0.5.5.dev0/rust/worker/src/segment/types.rs +2109 -0
  225. chromadb_client-0.5.5.dev0/rust/worker/src/server.rs +620 -0
  226. chromadb_client-0.5.5.dev0/rust/worker/src/storage/config.rs +44 -0
  227. chromadb_client-0.5.5.dev0/rust/worker/src/storage/s3.rs +333 -0
  228. chromadb_client-0.5.5.dev0/rust/worker/src/sysdb/config.rs +14 -0
  229. chromadb_client-0.5.5.dev0/rust/worker/src/sysdb/sysdb.rs +471 -0
  230. chromadb_client-0.5.5.dev0/rust/worker/src/sysdb/test_sysdb.rs +217 -0
  231. chromadb_client-0.5.5.dev0/rust/worker/src/system/executor.rs +98 -0
  232. chromadb_client-0.5.5.dev0/rust/worker/src/system/mod.rs +12 -0
  233. chromadb_client-0.5.5.dev0/rust/worker/src/system/receiver.rs +82 -0
  234. chromadb_client-0.5.5.dev0/rust/worker/src/system/scheduler.rs +207 -0
  235. chromadb_client-0.5.5.dev0/rust/worker/src/system/system.rs +210 -0
  236. chromadb_client-0.5.5.dev0/rust/worker/src/system/types.rs +388 -0
  237. chromadb_client-0.5.5.dev0/rust/worker/src/system/wrapped_message.rs +115 -0
  238. chromadb_client-0.5.5.dev0/rust/worker/src/tracing/opentelemetry_config.rs +76 -0
  239. chromadb_client-0.5.5.dev0/rust/worker/src/types/collection.rs +92 -0
  240. chromadb_client-0.5.5.dev0/rust/worker/src/types/operation.rs +94 -0
  241. chromadb_client-0.5.5.dev0/rust/worker/src/types/segment.rs +170 -0
  242. chromadb_client-0.5.5.dev0/rust/worker/src/utils/mod.rs +5 -0
  243. chromadb_client-0.5.5.dev0/rust/worker/src/utils/panic.rs +13 -0
  244. chromadb_client-0.5.3.dev0/.github/actions/rust/action.yaml +0 -12
  245. chromadb_client-0.5.3.dev0/.github/workflows/_go-tests.yml +0 -46
  246. chromadb_client-0.5.3.dev0/.github/workflows/_javascript-client-tests.yml +0 -13
  247. chromadb_client-0.5.3.dev0/.github/workflows/_python-tests.yml +0 -166
  248. chromadb_client-0.5.3.dev0/.github/workflows/_rust-tests.yml +0 -25
  249. chromadb_client-0.5.3.dev0/.github/workflows/pr.yml +0 -132
  250. chromadb_client-0.5.3.dev0/.github/workflows/release-chromadb.yml +0 -278
  251. chromadb_client-0.5.3.dev0/.github/workflows/release-javascript-client.yml +0 -44
  252. chromadb_client-0.5.3.dev0/.pre-commit-config.yaml +0 -63
  253. chromadb_client-0.5.3.dev0/Cargo.lock +0 -4746
  254. chromadb_client-0.5.3.dev0/PKG-INFO +0 -66
  255. chromadb_client-0.5.3.dev0/Tiltfile +0 -146
  256. chromadb_client-0.5.3.dev0/bin/test-package.sh +0 -24
  257. chromadb_client-0.5.3.dev0/bin/windows_upgrade_sqlite.py +0 -20
  258. chromadb_client-0.5.3.dev0/chromadb/__init__.py +0 -343
  259. chromadb_client-0.5.3.dev0/chromadb/api/__init__.py +0 -602
  260. chromadb_client-0.5.3.dev0/chromadb/api/async_api.py +0 -595
  261. chromadb_client-0.5.3.dev0/chromadb/api/async_client.py +0 -416
  262. chromadb_client-0.5.3.dev0/chromadb/api/async_fastapi.py +0 -634
  263. chromadb_client-0.5.3.dev0/chromadb/api/base_http_client.py +0 -59
  264. chromadb_client-0.5.3.dev0/chromadb/api/client.py +0 -409
  265. chromadb_client-0.5.3.dev0/chromadb/api/fastapi.py +0 -613
  266. chromadb_client-0.5.3.dev0/chromadb/api/models/Collection.py +0 -332
  267. chromadb_client-0.5.3.dev0/chromadb/api/models/CollectionCommon.py +0 -558
  268. chromadb_client-0.5.3.dev0/chromadb/api/segment.py +0 -941
  269. chromadb_client-0.5.3.dev0/chromadb/api/types.py +0 -527
  270. chromadb_client-0.5.3.dev0/chromadb/auth/__init__.py +0 -236
  271. chromadb_client-0.5.3.dev0/chromadb/auth/basic_authn/__init__.py +0 -144
  272. chromadb_client-0.5.3.dev0/chromadb/auth/simple_rbac_authz/__init__.py +0 -79
  273. chromadb_client-0.5.3.dev0/chromadb/auth/token_authn/__init__.py +0 -235
  274. chromadb_client-0.5.3.dev0/chromadb/db/impl/grpc/client.py +0 -320
  275. chromadb_client-0.5.3.dev0/chromadb/db/impl/grpc/server.py +0 -445
  276. chromadb_client-0.5.3.dev0/chromadb/db/mixins/embeddings_queue.py +0 -393
  277. chromadb_client-0.5.3.dev0/chromadb/db/mixins/sysdb.py +0 -740
  278. chromadb_client-0.5.3.dev0/chromadb/db/system.py +0 -134
  279. chromadb_client-0.5.3.dev0/chromadb/errors.py +0 -86
  280. chromadb_client-0.5.3.dev0/chromadb/proto/chroma_pb2.py +0 -125
  281. chromadb_client-0.5.3.dev0/chromadb/proto/chroma_pb2.pyi +0 -425
  282. chromadb_client-0.5.3.dev0/chromadb/proto/chroma_pb2_grpc.py +0 -270
  283. chromadb_client-0.5.3.dev0/chromadb/proto/convert.py +0 -293
  284. chromadb_client-0.5.3.dev0/chromadb/proto/coordinator_pb2.py +0 -99
  285. chromadb_client-0.5.3.dev0/chromadb/proto/coordinator_pb2.pyi +0 -301
  286. chromadb_client-0.5.3.dev0/chromadb/proto/coordinator_pb2_grpc.py +0 -747
  287. chromadb_client-0.5.3.dev0/chromadb/proto/logservice_pb2.py +0 -48
  288. chromadb_client-0.5.3.dev0/chromadb/proto/logservice_pb2.pyi +0 -79
  289. chromadb_client-0.5.3.dev0/chromadb/proto/logservice_pb2_grpc.py +0 -230
  290. chromadb_client-0.5.3.dev0/chromadb/segment/impl/distributed/segment_directory.py +0 -251
  291. chromadb_client-0.5.3.dev0/chromadb/segment/impl/manager/distributed.py +0 -155
  292. chromadb_client-0.5.3.dev0/chromadb/segment/impl/manager/local.py +0 -266
  293. chromadb_client-0.5.3.dev0/chromadb/segment/impl/metadata/sqlite.py +0 -767
  294. chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/batch.py +0 -118
  295. chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/brute_force_index.py +0 -151
  296. chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/local_hnsw.py +0 -325
  297. chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/local_persistent_hnsw.py +0 -464
  298. chromadb_client-0.5.3.dev0/chromadb/server/fastapi/__init__.py +0 -946
  299. chromadb_client-0.5.3.dev0/chromadb/server/fastapi/types.py +0 -71
  300. chromadb_client-0.5.3.dev0/chromadb/telemetry/product/events.py +0 -252
  301. chromadb_client-0.5.3.dev0/chromadb/test/auth/rbac_test_executors.py +0 -290
  302. chromadb_client-0.5.3.dev0/chromadb/test/auth/test_base_class_behavior.py +0 -107
  303. chromadb_client-0.5.3.dev0/chromadb/test/conftest.py +0 -855
  304. chromadb_client-0.5.3.dev0/chromadb/test/data_loader/test_data_loader.py +0 -119
  305. chromadb_client-0.5.3.dev0/chromadb/test/db/test_system.py +0 -749
  306. chromadb_client-0.5.3.dev0/chromadb/test/distributed/test_sanity.py +0 -155
  307. chromadb_client-0.5.3.dev0/chromadb/test/ef/test_default_ef.py +0 -90
  308. chromadb_client-0.5.3.dev0/chromadb/test/ef/test_ollama_ef.py +0 -34
  309. chromadb_client-0.5.3.dev0/chromadb/test/ingest/test_producer_consumer.py +0 -373
  310. chromadb_client-0.5.3.dev0/chromadb/test/property/invariants.py +0 -294
  311. chromadb_client-0.5.3.dev0/chromadb/test/property/strategies.py +0 -612
  312. chromadb_client-0.5.3.dev0/chromadb/test/property/test_add.py +0 -215
  313. chromadb_client-0.5.3.dev0/chromadb/test/property/test_collections.py +0 -343
  314. chromadb_client-0.5.3.dev0/chromadb/test/property/test_collections_with_database_tenant.py +0 -152
  315. chromadb_client-0.5.3.dev0/chromadb/test/property/test_collections_with_database_tenant_overwrite.py +0 -214
  316. chromadb_client-0.5.3.dev0/chromadb/test/property/test_cross_version_persist.py +0 -326
  317. chromadb_client-0.5.3.dev0/chromadb/test/property/test_embeddings.py +0 -469
  318. chromadb_client-0.5.3.dev0/chromadb/test/property/test_filtering.py +0 -402
  319. chromadb_client-0.5.3.dev0/chromadb/test/property/test_persist.py +0 -244
  320. chromadb_client-0.5.3.dev0/chromadb/test/property/test_segment_manager.py +0 -134
  321. chromadb_client-0.5.3.dev0/chromadb/test/stress/test_many_collections.py +0 -37
  322. chromadb_client-0.5.3.dev0/chromadb/test/test_api.py +0 -1632
  323. chromadb_client-0.5.3.dev0/chromadb/test/test_logservice.py +0 -176
  324. chromadb_client-0.5.3.dev0/chromadb/test/test_multithreaded.py +0 -223
  325. chromadb_client-0.5.3.dev0/chromadb/test/utils/wait_for_version_increase.py +0 -22
  326. chromadb_client-0.5.3.dev0/chromadb/types.py +0 -161
  327. chromadb_client-0.5.3.dev0/chromadb/utils/embedding_functions.py +0 -1029
  328. chromadb_client-0.5.3.dev0/chromadb_client.egg-info/PKG-INFO +0 -66
  329. chromadb_client-0.5.3.dev0/chromadb_client.egg-info/SOURCES.txt +0 -869
  330. chromadb_client-0.5.3.dev0/chromadb_client.egg-info/requires.txt +0 -12
  331. chromadb_client-0.5.3.dev0/clients/js/src/ChromaClient.ts +0 -347
  332. chromadb_client-0.5.3.dev0/clients/js/src/generated/api.ts +0 -2548
  333. chromadb_client-0.5.3.dev0/clients/js/src/generated/models.ts +0 -290
  334. chromadb_client-0.5.3.dev0/clients/js/src/types.ts +0 -163
  335. chromadb_client-0.5.3.dev0/clients/js/test/collection.client.test.ts +0 -104
  336. chromadb_client-0.5.3.dev0/clients/python/pyproject.toml +0 -52
  337. chromadb_client-0.5.3.dev0/clients/python/requirements.txt +0 -12
  338. chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/layout/TopNav.tsx +0 -42
  339. chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/_app.tsx +0 -257
  340. chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/migration.md +0 -286
  341. chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/getting-started.md +0 -291
  342. chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face-server.md +0 -63
  343. chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face.md +0 -32
  344. chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/jinaai.md +0 -48
  345. chromadb_client-0.5.3.dev0/go/cmd/coordinator/cmd.go +0 -68
  346. chromadb_client-0.5.3.dev0/go/database/log/db/copyfrom.go +0 -45
  347. chromadb_client-0.5.3.dev0/go/database/log/db/db.go +0 -33
  348. chromadb_client-0.5.3.dev0/go/database/log/db/models.go +0 -20
  349. chromadb_client-0.5.3.dev0/go/database/log/db/queries.sql.go +0 -170
  350. chromadb_client-0.5.3.dev0/go/database/log/queries/queries.sql +0 -34
  351. chromadb_client-0.5.3.dev0/go/database/log/schema/collection.sql +0 -8
  352. chromadb_client-0.5.3.dev0/go/go.sum +0 -937
  353. chromadb_client-0.5.3.dev0/go/migrations/atlas.sum +0 -7
  354. chromadb_client-0.5.3.dev0/go/pkg/coordinator/apis.go +0 -170
  355. chromadb_client-0.5.3.dev0/go/pkg/coordinator/apis_test.go +0 -865
  356. chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/collection_service.go +0 -281
  357. chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/proto_model_convert.go +0 -247
  358. chromadb_client-0.5.3.dev0/go/pkg/log/repository/log.go +0 -104
  359. chromadb_client-0.5.3.dev0/go/pkg/log/server/property_test.go +0 -190
  360. chromadb_client-0.5.3.dev0/go/pkg/log/server/server.go +0 -111
  361. chromadb_client-0.5.3.dev0/go/pkg/metastore/catalog.go +0 -34
  362. chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/model_db_convert.go +0 -189
  363. chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/model_db_convert_test.go +0 -152
  364. chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/table_catalog.go +0 -650
  365. chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/table_catalog_test.go +0 -136
  366. chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/collection.go +0 -200
  367. chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/collection_test.go +0 -156
  368. chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/test_utils.go +0 -186
  369. chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/collection.go +0 -41
  370. chromadb_client-0.5.3.dev0/go/pkg/model/collection.go +0 -70
  371. chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/chroma.pb.go +0 -3819
  372. chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/chroma_grpc.pb.go +0 -277
  373. chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/coordinator.pb.go +0 -2919
  374. chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/coordinator_grpc.pb.go +0 -681
  375. chromadb_client-0.5.3.dev0/go/pkg/proto/logservicepb/logservice.pb.go +0 -830
  376. chromadb_client-0.5.3.dev0/go/pkg/proto/logservicepb/logservice_grpc.pb.go +0 -224
  377. chromadb_client-0.5.3.dev0/idl/chromadb/proto/chroma.proto +0 -320
  378. chromadb_client-0.5.3.dev0/idl/chromadb/proto/coordinator.proto +0 -210
  379. chromadb_client-0.5.3.dev0/idl/chromadb/proto/logservice.proto +0 -64
  380. chromadb_client-0.5.3.dev0/k8s/distributed-chroma/Chart.yaml +0 -30
  381. chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/log-migration.yaml +0 -29
  382. chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/sysdb-migration.yaml +0 -32
  383. chromadb_client-0.5.3.dev0/k8s/test/jaeger.yaml +0 -47
  384. chromadb_client-0.5.3.dev0/pyproject.toml +0 -52
  385. chromadb_client-0.5.3.dev0/requirements.txt +0 -28
  386. chromadb_client-0.5.3.dev0/requirements_dev.txt +0 -14
  387. chromadb_client-0.5.3.dev0/rust/worker/Cargo.toml +0 -65
  388. chromadb_client-0.5.3.dev0/rust/worker/Dockerfile +0 -61
  389. chromadb_client-0.5.3.dev0/rust/worker/README.md +0 -15
  390. chromadb_client-0.5.3.dev0/rust/worker/build.rs +0 -40
  391. chromadb_client-0.5.3.dev0/rust/worker/chroma_config.yaml +0 -68
  392. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/delta.rs +0 -400
  393. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/delta_storage.rs +0 -924
  394. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/types.rs +0 -398
  395. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/blockfile.rs +0 -1170
  396. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/concurrency_test.rs +0 -68
  397. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/flusher.rs +0 -52
  398. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/mod.rs +0 -7
  399. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/provider.rs +0 -390
  400. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/sparse_index.rs +0 -561
  401. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/memory/provider.rs +0 -131
  402. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/mod.rs +0 -8
  403. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/positional_posting_list_value.rs +0 -271
  404. chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/provider.rs +0 -105
  405. chromadb_client-0.5.3.dev0/rust/worker/src/compactor/compaction_manager.rs +0 -508
  406. chromadb_client-0.5.3.dev0/rust/worker/src/compactor/config.rs +0 -8
  407. chromadb_client-0.5.3.dev0/rust/worker/src/compactor/scheduler.rs +0 -483
  408. chromadb_client-0.5.3.dev0/rust/worker/src/config.rs +0 -516
  409. chromadb_client-0.5.3.dev0/rust/worker/src/errors.rs +0 -48
  410. chromadb_client-0.5.3.dev0/rust/worker/src/execution/dispatcher.rs +0 -327
  411. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operator.rs +0 -106
  412. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/brute_force_knn.rs +0 -547
  413. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/count_records.rs +0 -434
  414. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/flush_s3.rs +0 -140
  415. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/get_vectors_operator.rs +0 -231
  416. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/hnsw_knn.rs +0 -198
  417. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/merge_knn_results.rs +0 -249
  418. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/merge_metadata_results.rs +0 -1015
  419. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/metadata_filtering.rs +0 -1347
  420. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/normalize_vectors.rs +0 -85
  421. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/partition.rs +0 -224
  422. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/pull_log.rs +0 -253
  423. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/register.rs +0 -282
  424. chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/write_segments.rs +0 -188
  425. chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/common.rs +0 -150
  426. chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/compact.rs +0 -669
  427. chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/get_vectors.rs +0 -322
  428. chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/hnsw.rs +0 -793
  429. chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/metadata.rs +0 -843
  430. chromadb_client-0.5.3.dev0/rust/worker/src/execution/worker_thread.rs +0 -62
  431. chromadb_client-0.5.3.dev0/rust/worker/src/index/fulltext/types.rs +0 -1234
  432. chromadb_client-0.5.3.dev0/rust/worker/src/index/metadata/types.rs +0 -1647
  433. chromadb_client-0.5.3.dev0/rust/worker/src/lib.rs +0 -168
  434. chromadb_client-0.5.3.dev0/rust/worker/src/log/config.rs +0 -12
  435. chromadb_client-0.5.3.dev0/rust/worker/src/log/log.rs +0 -430
  436. chromadb_client-0.5.3.dev0/rust/worker/src/memberlist/memberlist_provider.rs +0 -277
  437. chromadb_client-0.5.3.dev0/rust/worker/src/segment/distributed_hnsw_segment.rs +0 -382
  438. chromadb_client-0.5.3.dev0/rust/worker/src/segment/metadata_segment.rs +0 -1937
  439. chromadb_client-0.5.3.dev0/rust/worker/src/segment/record_segment.rs +0 -796
  440. chromadb_client-0.5.3.dev0/rust/worker/src/segment/types.rs +0 -1094
  441. chromadb_client-0.5.3.dev0/rust/worker/src/server.rs +0 -524
  442. chromadb_client-0.5.3.dev0/rust/worker/src/storage/config.rs +0 -43
  443. chromadb_client-0.5.3.dev0/rust/worker/src/storage/s3.rs +0 -317
  444. chromadb_client-0.5.3.dev0/rust/worker/src/sysdb/config.rs +0 -12
  445. chromadb_client-0.5.3.dev0/rust/worker/src/sysdb/sysdb.rs +0 -440
  446. chromadb_client-0.5.3.dev0/rust/worker/src/sysdb/test_sysdb.rs +0 -224
  447. chromadb_client-0.5.3.dev0/rust/worker/src/system/executor.rs +0 -100
  448. chromadb_client-0.5.3.dev0/rust/worker/src/system/mod.rs +0 -10
  449. chromadb_client-0.5.3.dev0/rust/worker/src/system/scheduler.rs +0 -215
  450. chromadb_client-0.5.3.dev0/rust/worker/src/system/sender.rs +0 -202
  451. chromadb_client-0.5.3.dev0/rust/worker/src/system/system.rs +0 -126
  452. chromadb_client-0.5.3.dev0/rust/worker/src/system/types.rs +0 -213
  453. chromadb_client-0.5.3.dev0/rust/worker/src/tracing/opentelemetry_config.rs +0 -52
  454. chromadb_client-0.5.3.dev0/rust/worker/src/types/collection.rs +0 -90
  455. chromadb_client-0.5.3.dev0/rust/worker/src/types/operation.rs +0 -73
  456. chromadb_client-0.5.3.dev0/rust/worker/src/types/segment.rs +0 -156
  457. chromadb_client-0.5.3.dev0/rust/worker/src/utils/mod.rs +0 -3
  458. chromadb_client-0.5.3.dev0/rust/worker/test.arrow +0 -0
  459. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.dockerignore +0 -0
  460. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.gitattributes +0 -0
  461. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/DEVELOP.md +0 -0
  462. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/ISSUE_TEMPLATE/bug_report.yaml +0 -0
  463. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  464. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/ISSUE_TEMPLATE/feature_request.yaml +0 -0
  465. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/ISSUE_TEMPLATE/installation_trouble.yaml +0 -0
  466. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/bandit-scan/Dockerfile +0 -0
  467. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/bandit-scan/action.yaml +0 -0
  468. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/bandit-scan/entrypoint.sh +0 -0
  469. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/docker/action.yaml +0 -0
  470. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/go/action.yaml +0 -0
  471. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/python/action.yaml +0 -0
  472. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/tilt/action.yaml +0 -0
  473. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/_python-vulnerability-scan.yml +0 -0
  474. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/pr-review-checklist.yml +0 -0
  475. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/release-dev-javascript-client.yml +0 -0
  476. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/release-helm-chart.yml +0 -0
  477. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/release-hosted.yml +0 -0
  478. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.gitignore +0 -0
  479. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.vscode/settings.json +0 -0
  480. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/Cargo.toml +0 -0
  481. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/DEVELOP.md +0 -0
  482. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/Dockerfile +0 -0
  483. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/Dockerfile.windows +0 -0
  484. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/LICENSE +0 -0
  485. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/README.md +0 -0
  486. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/RELEASE_PROCESS.md +0 -0
  487. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bandit.yaml +0 -0
  488. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/cluster-test.sh +0 -0
  489. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/docker_entrypoint.ps1 +0 -0
  490. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/docker_entrypoint.sh +0 -0
  491. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/generate_cloudformation.py +0 -0
  492. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/python-integration-test +0 -0
  493. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/templates/docker-compose.yml +0 -0
  494. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/test-remote +0 -0
  495. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/test.py +0 -0
  496. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/ts-integration-test +0 -0
  497. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/version +0 -0
  498. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/api/models/AsyncCollection.py +0 -0
  499. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/api/shared_system_client.py +0 -0
  500. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/app.py +0 -0
  501. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/cli/__init__.py +0 -0
  502. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/cli/cli.py +0 -0
  503. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/cli/utils.py +0 -0
  504. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/config.py +0 -0
  505. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/__init__.py +0 -0
  506. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/base.py +0 -0
  507. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/impl/__init__.py +0 -0
  508. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/impl/sqlite.py +0 -0
  509. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/impl/sqlite_pool.py +0 -0
  510. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/migrations.py +0 -0
  511. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/experimental/density_relevance.ipynb +0 -0
  512. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/ingest/__init__.py +0 -0
  513. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/ingest/impl/utils.py +0 -0
  514. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/is_thin_client.py +0 -0
  515. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/log_config.yml +0 -0
  516. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/logservice/logservice.py +0 -0
  517. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/__init__.py +0 -0
  518. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/embeddings_queue/00001-embeddings.sqlite.sql +0 -0
  519. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/metadb/00001-embedding-metadata.sqlite.sql +0 -0
  520. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/metadb/00002-embedding-metadata.sqlite.sql +0 -0
  521. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/metadb/00003-full-text-tokenize.sqlite.sql +0 -0
  522. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00001-collections.sqlite.sql +0 -0
  523. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00002-segments.sqlite.sql +0 -0
  524. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00003-collection-dimension.sqlite.sql +0 -0
  525. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00004-tenants-databases.sqlite.sql +0 -0
  526. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00005-remove-topic.sqlite.sql +0 -0
  527. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00006-collection-segment-metadata.sqlite.sql +0 -0
  528. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/proto/__init__.py +0 -0
  529. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/py.typed +0 -0
  530. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/quota/__init__.py +0 -0
  531. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/quota/test_provider.py +0 -0
  532. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/rate_limiting/__init__.py +0 -0
  533. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/rate_limiting/test_provider.py +0 -0
  534. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/__init__.py +0 -0
  535. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/distributed/__init__.py +0 -0
  536. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/__init__.py +0 -0
  537. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/manager/__init__.py +0 -0
  538. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/manager/cache/__init__.py +0 -0
  539. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/manager/cache/cache.py +0 -0
  540. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/metadata/grpc_segment.py +0 -0
  541. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/vector/grpc_segment.py +0 -0
  542. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/vector/hnsw_params.py +0 -0
  543. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/server/__init__.py +0 -0
  544. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/README.md +0 -0
  545. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/__init__.py +0 -0
  546. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/opentelemetry/__init__.py +0 -0
  547. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/opentelemetry/fastapi.py +0 -0
  548. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/opentelemetry/grpc.py +0 -0
  549. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/product/__init__.py +0 -0
  550. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/product/posthog.py +0 -0
  551. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/api/test_types.py +0 -0
  552. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/auth/strategies.py +0 -0
  553. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/auth/test_basic_authn.py +0 -0
  554. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/auth/test_simple_rbac_authz.py +0 -0
  555. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/auth/test_token_authn.py +0 -0
  556. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/create_http_client_with_basic_auth.py +0 -0
  557. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/test_cloud_client.py +0 -0
  558. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/test_create_http_client.py +0 -0
  559. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/test_database_tenant.py +0 -0
  560. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/test_multiple_clients_concurrency.py +0 -0
  561. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00001-migration-1.psql.sql +0 -0
  562. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00001-migration-1.sqlite.sql +0 -0
  563. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00002-migration-2.psql.sql +0 -0
  564. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00002-migration-2.sqlite.sql +0 -0
  565. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00003-migration-3.psql.sql +0 -0
  566. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00003-migration-3.sqlite.sql +0 -0
  567. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/__init__.py +0 -0
  568. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/test_base.py +0 -0
  569. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/test_hash.py +0 -0
  570. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/test_migrations.py +0 -0
  571. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/distributed/README.md +0 -0
  572. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/ef/test_multimodal_ef.py +0 -0
  573. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/openssl.cnf +0 -0
  574. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/property/test_client_url.py +0 -0
  575. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/quota/test_static_quota_enforcer.py +0 -0
  576. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/rate_limiting/test_rate_limiting.py +0 -0
  577. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/distributed/test_memberlist_provider.py +0 -0
  578. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/distributed/test_protobuf_translation.py +0 -0
  579. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/distributed/test_rendezvous_hash.py +0 -0
  580. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/test_metadata.py +0 -0
  581. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/test_vector.py +0 -0
  582. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/test_chroma.py +0 -0
  583. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/test_cli.py +0 -0
  584. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/test_client.py +0 -0
  585. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/test_config.py +0 -0
  586. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/utils/test_messagid.py +0 -0
  587. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/__init__.py +0 -0
  588. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/async_to_sync.py +0 -0
  589. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/batch_utils.py +0 -0
  590. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/data_loaders.py +0 -0
  591. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/delete_file.py +0 -0
  592. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/directory.py +0 -0
  593. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/distance_functions.py +0 -0
  594. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/fastapi.py +0 -0
  595. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/lru_cache.py +0 -0
  596. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/messageid.py +0 -0
  597. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/read_write_lock.py +0 -0
  598. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/rendezvous_hash.py +0 -0
  599. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb_client.egg-info/dependency_links.txt +0 -0
  600. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb_client.egg-info/top_level.txt +0 -0
  601. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/.gitignore +0 -0
  602. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/.prettierignore +0 -0
  603. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/.prettierrc.json +0 -0
  604. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/DEVELOP.md +0 -0
  605. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/LICENSE +0 -0
  606. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/README.md +0 -0
  607. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/config.yml +0 -0
  608. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/README.md +0 -0
  609. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/app.tsx +0 -0
  610. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/index.html +0 -0
  611. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/index.tsx +0 -0
  612. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/package.json +0 -0
  613. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/pnpm-lock.yaml +0 -0
  614. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/vite.config.mjs +0 -0
  615. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/node/README.md +0 -0
  616. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/node/app.js +0 -0
  617. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/node/package.json +0 -0
  618. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/node/yarn.lock +0 -0
  619. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/genapi.sh +0 -0
  620. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/jest.config.ts +0 -0
  621. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/openapitools.json +0 -0
  622. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/package.json +0 -0
  623. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/AdminClient.ts +0 -0
  624. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/ChromaFetch.ts +0 -0
  625. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/CloudClient.ts +0 -0
  626. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/Collection.ts +0 -0
  627. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/Errors.ts +0 -0
  628. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/auth.ts +0 -0
  629. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/CohereEmbeddingFunction.ts +0 -0
  630. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/DefaultEmbeddingFunction.ts +0 -0
  631. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/GoogleGeminiEmbeddingFunction.ts +0 -0
  632. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/HuggingFaceEmbeddingServerFunction.ts +0 -0
  633. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/IEmbeddingFunction.ts +0 -0
  634. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/JinaEmbeddingFunction.ts +0 -0
  635. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/OllamaEmbeddingFunction.ts +0 -0
  636. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/OpenAIEmbeddingFunction.ts +0 -0
  637. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/TransformersEmbeddingFunction.ts +0 -0
  638. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/generated/README.md +0 -0
  639. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/generated/configuration.ts +0 -0
  640. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/generated/index.ts +0 -0
  641. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/generated/runtime.ts +0 -0
  642. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/index.ts +0 -0
  643. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/utils.ts +0 -0
  644. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/add.collections.test.ts +0 -0
  645. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/admin.test.ts +0 -0
  646. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/auth.basic.test.ts +0 -0
  647. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/auth.token.test.ts +0 -0
  648. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/client.test.ts +0 -0
  649. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/collection.test.ts +0 -0
  650. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/data.ts +0 -0
  651. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/delete.collection.test.ts +0 -0
  652. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/get.collection.test.ts +0 -0
  653. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/initAdminClient.ts +0 -0
  654. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/initClient.ts +0 -0
  655. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/initClientWithAuth.ts +0 -0
  656. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/offline.test.ts +0 -0
  657. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/peek.collection.test.ts +0 -0
  658. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/query.collection.test.ts +0 -0
  659. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/update.collection.test.ts +0 -0
  660. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/upsert.collections.test.ts +0 -0
  661. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/tsconfig.json +0 -0
  662. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/tsup.config.ts +0 -0
  663. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/README.md +0 -0
  664. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/build_python_thin_client.sh +0 -0
  665. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/integration-test.sh +0 -0
  666. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/is_thin_client.py +0 -0
  667. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/requirements_dev.txt +0 -0
  668. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/compose-env.linux +0 -0
  669. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/compose-env.windows +0 -0
  670. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docker-compose.server.example.yml +0 -0
  671. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docker-compose.test-auth.yml +0 -0
  672. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docker-compose.test.yml +0 -0
  673. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docker-compose.yml +0 -0
  674. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP-01022024_SSL_Verify_Client_Config.md +0 -0
  675. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP-10112023_Authorization.md +0 -0
  676. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP-1_Allow_Filtering_for_Collections.md +0 -0
  677. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_2_Auth_Providers_Proposal.md +0 -0
  678. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_4_In_Nin_Metadata_Filters.md +0 -0
  679. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_5_Large_Batch_Handling_Improvements.md +0 -0
  680. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_6_OpenTelemetry_Monitoring.md +0 -0
  681. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_Chroma_Improvment_Proposals.md +0 -0
  682. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/CIP-01022024-test_self_signed.ipynb +0 -0
  683. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/CIP-10112023_Authorization_Workflow.png +0 -0
  684. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/cip-2-arch.png +0 -0
  685. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/cip-2-client-side-wf.png +0 -0
  686. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/cip-2-seq.png +0 -0
  687. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/cip-2-server-side-wf.png +0 -0
  688. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/.env.local +0 -0
  689. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/.gitignore +0 -0
  690. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/README.md +0 -0
  691. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/CodeBlock.tsx +0 -0
  692. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/CopyToClipboardButton.tsx +0 -0
  693. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/layout/SideNav.tsx +0 -0
  694. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/layout/TableOfContents.tsx +0 -0
  695. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/layout/state.tsx +0 -0
  696. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/AppLink.tsx +0 -0
  697. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/CodeTab.tsx +0 -0
  698. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/CodeTabs.tsx +0 -0
  699. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Heading.tsx +0 -0
  700. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Math.tsx +0 -0
  701. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Note.tsx +0 -0
  702. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/SpecialTable.tsx +0 -0
  703. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Tab.tsx +0 -0
  704. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Tabs.tsx +0 -0
  705. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/misc.tsx +0 -0
  706. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/alert.tsx +0 -0
  707. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/breadcrumb.tsx +0 -0
  708. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/button.tsx +0 -0
  709. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/dropdown-menu.tsx +0 -0
  710. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/icons.tsx +0 -0
  711. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/menubar.tsx +0 -0
  712. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/scroll-area.tsx +0 -0
  713. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/select.tsx +0 -0
  714. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/tabs.tsx +0 -0
  715. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/toast.tsx +0 -0
  716. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/toaster.tsx +0 -0
  717. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/toggle-theme.tsx +0 -0
  718. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/tooltip.tsx +0 -0
  719. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/use-toast.ts +0 -0
  720. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components.json +0 -0
  721. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/lib/utils.ts +0 -0
  722. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/functions.ts +0 -0
  723. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/nodes/fence.markdoc.tsx +0 -0
  724. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/nodes/heading.markdoc.ts +0 -0
  725. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/nodes/index.ts +0 -0
  726. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/nodes/link.markdoc.ts +0 -0
  727. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/partials/header.md +0 -0
  728. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/codetabs.markdoc.ts +0 -0
  729. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/index.ts +0 -0
  730. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/note.markdoc.ts +0 -0
  731. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/special_table.markdoc.ts +0 -0
  732. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/tabs.markdoc.ts +0 -0
  733. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/next-env.d.ts +0 -0
  734. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/next.config.js +0 -0
  735. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/package.json +0 -0
  736. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/_sidenav.js +0 -0
  737. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/about.md +0 -0
  738. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/_sidenav.js +0 -0
  739. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/apikeys.md +0 -0
  740. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/index.md +0 -0
  741. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/performance.md +0 -0
  742. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/teams.md +0 -0
  743. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/community.md +0 -0
  744. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/contributing.md +0 -0
  745. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/_sidenav.js +0 -0
  746. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/auth.md +0 -0
  747. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/aws.md +0 -0
  748. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/azure.md +0 -0
  749. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/docker.md +0 -0
  750. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/encryption.md +0 -0
  751. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/gcp.md +0 -0
  752. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/in-memory.md +0 -0
  753. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/index.md +0 -0
  754. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/kubernetes.md +0 -0
  755. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/logging.md +0 -0
  756. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/observability.md +0 -0
  757. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/performance.md +0 -0
  758. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/persistent-client.md +0 -0
  759. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/security.md +0 -0
  760. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/docs/index.md +0 -0
  761. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/_sidenav.js +0 -0
  762. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/agents.md +0 -0
  763. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/code.md +0 -0
  764. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/documents.md +0 -0
  765. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/fastapi.md +0 -0
  766. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/index.md +0 -0
  767. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/nextjs.md +0 -0
  768. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/rails.md +0 -0
  769. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/_sidenav.js +0 -0
  770. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/adding.md +0 -0
  771. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/deleting.md +0 -0
  772. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/documents.md +0 -0
  773. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/embedding.md +0 -0
  774. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/embeddings.md +0 -0
  775. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/index.md +0 -0
  776. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/indexes.md +0 -0
  777. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/loading.md +0 -0
  778. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/metadatas.md +0 -0
  779. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/multimodal.md +0 -0
  780. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/querying.md +0 -0
  781. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/splitting.md +0 -0
  782. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/updating.md +0 -0
  783. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/index.md +0 -0
  784. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/_sidenav.js +0 -0
  785. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/braintrust.md +0 -0
  786. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/cohere.md +0 -0
  787. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/google-gemini.md +0 -0
  788. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/haystack.md +0 -0
  789. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/index.md +0 -0
  790. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/instructor.md +0 -0
  791. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/langchain.md +0 -0
  792. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/llamaindex.md +0 -0
  793. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/ollama.md +0 -0
  794. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/openai.md +0 -0
  795. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/openlit.md +0 -0
  796. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/openllmetry.md +0 -0
  797. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/roboflow.md +0 -0
  798. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/streamlit.md +0 -0
  799. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/_sidenav.js +0 -0
  800. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/architecture.md +0 -0
  801. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/cheatsheet.md +0 -0
  802. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/cli.md +0 -0
  803. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/docs.md +0 -0
  804. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/index.md +0 -0
  805. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/js-client.md +0 -0
  806. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/js-collection.md +0 -0
  807. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/openapi.md +0 -0
  808. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/py-client.md +0 -0
  809. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/py-collection.md +0 -0
  810. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/roadmap.md +0 -0
  811. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/tabs.md +0 -0
  812. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/telemetry.md +0 -0
  813. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/troubleshooting.md +0 -0
  814. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/postcss.config.js +0 -0
  815. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/favicon.ico +0 -0
  816. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/globals.css +0 -0
  817. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/after.gif +0 -0
  818. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/chroma-migrate.png +0 -0
  819. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/chroma.png +0 -0
  820. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/chroma.svg +0 -0
  821. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/favicon.ico +0 -0
  822. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/glitch.gif +0 -0
  823. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/hrm4.svg +0 -0
  824. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/openllmetry.png +0 -0
  825. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/pip.png +0 -0
  826. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_fast.svg +0 -0
  827. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_fast2.svg +0 -0
  828. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_feature.svg +0 -0
  829. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_free.svg +0 -0
  830. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_simple.svg +0 -0
  831. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_simple2.svg +0 -0
  832. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/team.JPG +0 -0
  833. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/tailwind.config.js +0 -0
  834. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/tsconfig.json +0 -0
  835. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/vercel.json +0 -0
  836. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/README.md +0 -0
  837. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/advanced/hadrware-optimized-image.md +0 -0
  838. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/alternative_embeddings.ipynb +0 -0
  839. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/assets/auh-sequence.png +0 -0
  840. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/assets/auth-architecture.png +0 -0
  841. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/auth.ipynb +0 -0
  842. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/authz/README.md +0 -0
  843. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/authz/authz.yaml +0 -0
  844. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/in_not_in_filtering.ipynb +0 -0
  845. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/local_persistence.ipynb +0 -0
  846. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/start_here.ipynb +0 -0
  847. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/test_get_collection_by_id.ipynb +0 -0
  848. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/where_filtering.ipynb +0 -0
  849. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/README.md +0 -0
  850. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/documents/state_of_the_union_2022.txt +0 -0
  851. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/documents/state_of_the_union_2023.txt +0 -0
  852. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/load_data.py +0 -0
  853. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/main.py +0 -0
  854. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/requirements.txt +0 -0
  855. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/aws-terraform/README.md +0 -0
  856. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/aws-terraform/chroma.tf +0 -0
  857. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/aws-terraform/startup.sh +0 -0
  858. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/aws-terraform/variables.tf +0 -0
  859. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/common/startup.sh +0 -0
  860. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/do-terraform/README.md +0 -0
  861. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/do-terraform/chroma.tf +0 -0
  862. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/do-terraform/variables.tf +0 -0
  863. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/README.md +0 -0
  864. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/chroma.tf +0 -0
  865. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/main.tf +0 -0
  866. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/startup.sh +0 -0
  867. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/variables.tf +0 -0
  868. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/render-terraform/README.md +0 -0
  869. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/render-terraform/chroma.tf +0 -0
  870. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/render-terraform/sqlite_version.patch +0 -0
  871. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/render-terraform/variables.tf +0 -0
  872. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/systemd-service/chroma-cli.service +0 -0
  873. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/systemd-service/chroma-docker.service +0 -0
  874. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/systemd-service/systemd-service.md +0 -0
  875. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/README.md +0 -0
  876. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/documents/state_of_the_union_2022.txt +0 -0
  877. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/documents/state_of_the_union_2023.txt +0 -0
  878. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/load_data.py +0 -0
  879. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/main.py +0 -0
  880. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/requirements.txt +0 -0
  881. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/multimodal/multimodal_retrieval.ipynb +0 -0
  882. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/observability/README.md +0 -0
  883. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/observability/docker-compose.local-observability.yml +0 -0
  884. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/observability/otel-collector-config.yaml +0 -0
  885. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/server_side_embeddings/huggingface/docker-compose.yml +0 -0
  886. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/server_side_embeddings/huggingface/test.ipynb +0 -0
  887. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/cohere/cohere_js.js +0 -0
  888. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/cohere/cohere_python.ipynb +0 -0
  889. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/cohere/package.json +0 -0
  890. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/ollama.md +0 -0
  891. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/roboflow/embeddings.ipynb +0 -0
  892. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/Dockerfile +0 -0
  893. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/Dockerfile.migration +0 -0
  894. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/Makefile +0 -0
  895. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/README.md +0 -0
  896. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/atlas.hcl +0 -0
  897. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/cmd/coordinator/main.go +0 -0
  898. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/cmd/flag/flag.go +0 -0
  899. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/cmd/logservice/main.go +0 -0
  900. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/atlas.hcl +0 -0
  901. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/migrations/20240404181827_initial.sql +0 -0
  902. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/migrations/atlas.sum +0 -0
  903. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/schema/record_log.sql +0 -0
  904. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/sqlc.yaml +0 -0
  905. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/go.mod +0 -0
  906. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240313233558.sql +0 -0
  907. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240321194713.sql +0 -0
  908. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240327075032.sql +0 -0
  909. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240327172649.sql +0 -0
  910. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240411201006.sql +0 -0
  911. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240612201006.sql +0 -0
  912. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/Catalog.go +0 -0
  913. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/CollectionMetadataValueType.go +0 -0
  914. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/Component.go +0 -0
  915. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/DBTX.go +0 -0
  916. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/GrpcProvider.go +0 -0
  917. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/GrpcServer.go +0 -0
  918. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ICollectionDb.go +0 -0
  919. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ICollectionMetadataDb.go +0 -0
  920. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ICoordinator.go +0 -0
  921. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IDatabaseDb.go +0 -0
  922. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IMemberlistManager.go +0 -0
  923. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IMemberlistStore.go +0 -0
  924. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IMetaDomain.go +0 -0
  925. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/INotificationDb.go +0 -0
  926. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ISegmentDb.go +0 -0
  927. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ISegmentMetadataDb.go +0 -0
  928. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ITenantDb.go +0 -0
  929. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ITransaction.go +0 -0
  930. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IWatcher.go +0 -0
  931. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/LogServiceClient.go +0 -0
  932. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/LogServiceServer.go +0 -0
  933. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/NodeWatcherCallback.go +0 -0
  934. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/NotificationProcessor.go +0 -0
  935. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/NotificationStore.go +0 -0
  936. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/Notifier.go +0 -0
  937. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/SegmentMetadataValueType.go +0 -0
  938. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/SysDBClient.go +0 -0
  939. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/SysDBServer.go +0 -0
  940. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/UnsafeLogServiceServer.go +0 -0
  941. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/UnsafeSysDBServer.go +0 -0
  942. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/UnsafeVectorReaderServer.go +0 -0
  943. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/VectorReaderClient.go +0 -0
  944. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/VectorReaderServer.go +0 -0
  945. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/isUpdateCollectionRequest_MetadataUpdate.go +0 -0
  946. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/isUpdateMetadataValue_Value.go +0 -0
  947. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/isUpdateSegmentRequest_CollectionUpdate.go +0 -0
  948. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/isUpdateSegmentRequest_MetadataUpdate.go +0 -0
  949. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/common/component.go +0 -0
  950. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/common/constants.go +0 -0
  951. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/common/errors.go +0 -0
  952. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/coordinator.go +0 -0
  953. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/collection_service_test.go +0 -0
  954. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/proto_model_convert_test.go +0 -0
  955. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/segment_service.go +0 -0
  956. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/server.go +0 -0
  957. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/tenant_database_service.go +0 -0
  958. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/tenant_database_service_test.go +0 -0
  959. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/grpcutils/config.go +0 -0
  960. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/grpcutils/config_test.go +0 -0
  961. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/grpcutils/response.go +0 -0
  962. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/grpcutils/service.go +0 -0
  963. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/log/configuration/config.go +0 -0
  964. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/log/purging/main.go +0 -0
  965. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/memberlist_manager/memberlist_manager.go +0 -0
  966. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/memberlist_manager/memberlist_manager_test.go +0 -0
  967. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/memberlist_manager/memberlist_store.go +0 -0
  968. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/memberlist_manager/node_watcher.go +0 -0
  969. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/collection_metadata.go +0 -0
  970. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/common.go +0 -0
  971. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/database.go +0 -0
  972. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/notification.go +0 -0
  973. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/segment.go +0 -0
  974. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/segment_metadata.go +0 -0
  975. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/segment_test.go +0 -0
  976. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/tenant.go +0 -0
  977. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/tenant_test.go +0 -0
  978. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbcore/core.go +0 -0
  979. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/collection_metadata.go +0 -0
  980. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/common.go +0 -0
  981. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/database.go +0 -0
  982. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ICollectionDb.go +0 -0
  983. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ICollectionMetadataDb.go +0 -0
  984. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/IDatabaseDb.go +0 -0
  985. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/IMetaDomain.go +0 -0
  986. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/INotificationDb.go +0 -0
  987. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ISegmentDb.go +0 -0
  988. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ISegmentMetadataDb.go +0 -0
  989. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ITenantDb.go +0 -0
  990. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ITransaction.go +0 -0
  991. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/notification.go +0 -0
  992. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/segment.go +0 -0
  993. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/segment_metadata.go +0 -0
  994. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/tenant.go +0 -0
  995. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/mocks/Catalog.go +0 -0
  996. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/collection_metadata.go +0 -0
  997. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/database.go +0 -0
  998. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/notification.go +0 -0
  999. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/segment.go +0 -0
  1000. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/segment_metadata.go +0 -0
  1001. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/tenant.go +0 -0
  1002. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/database_notification_store.go +0 -0
  1003. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/database_notification_store_test.go +0 -0
  1004. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/memory_notification_store.go +0 -0
  1005. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/memory_notification_store_test.go +0 -0
  1006. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/notification_processor.go +0 -0
  1007. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/notification_processor_test.go +0 -0
  1008. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/notification_store.go +0 -0
  1009. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/notifier.go +0 -0
  1010. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/types/types.go +0 -0
  1011. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/integration.go +0 -0
  1012. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/kubernetes.go +0 -0
  1013. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/log.go +0 -0
  1014. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/rendezvous_hash.go +0 -0
  1015. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/rendezvous_hash_test.go +0 -0
  1016. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/run.go +0 -0
  1017. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/signal.go +0 -0
  1018. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/script/migrate_up_test.sh +0 -0
  1019. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/shared/libs/db_utils.go +0 -0
  1020. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/shared/libs/test_utils.go +0 -0
  1021. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/shared/otel/main.go +0 -0
  1022. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/idl/makefile +0 -0
  1023. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/WARNING.md +0 -0
  1024. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/.helmignore +0 -0
  1025. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/crds/memberlist_crd.yaml +0 -0
  1026. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/compaction-service-memberlist-cr.yaml +0 -0
  1027. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/compaction-service.yaml +0 -0
  1028. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/frontend-service.yaml +0 -0
  1029. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/logservice.yaml +0 -0
  1030. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/namespace.yaml +0 -0
  1031. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/pod-watcher-role.yaml +0 -0
  1032. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/query-service-memberlist-cr.yaml +0 -0
  1033. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/query-service.yaml +0 -0
  1034. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/sysdb-service.yaml +0 -0
  1035. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/values.yaml +0 -0
  1036. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/README.md +0 -0
  1037. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/jaeger-service.yaml +0 -0
  1038. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/minio.yaml +0 -0
  1039. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/postgres/Dockerfile +0 -0
  1040. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/postgres/create-multiple-postgresql-databases.sh +0 -0
  1041. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/postgres-service.yaml +0 -0
  1042. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/postgres.yaml +0 -0
  1043. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/test-memberlist-cr.yaml +0 -0
  1044. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/pull_request_template.md +0 -0
  1045. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/.dockerignore +0 -0
  1046. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/.gitignore +0 -0
  1047. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/bindings.cpp +0 -0
  1048. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/proptest-regressions/blockstore/arrow/blockfile.txt +0 -0
  1049. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/assignment/assignment_policy.rs +0 -0
  1050. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/assignment/config.rs +0 -0
  1051. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/assignment/mod.rs +0 -0
  1052. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/assignment/rendezvous_hash.rs +0 -0
  1053. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/benches/distance_metrics.rs +0 -0
  1054. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/bin/compaction_service.rs +0 -0
  1055. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/bin/query_service.rs +0 -0
  1056. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/bool_key.rs +0 -0
  1057. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/data_record_value.rs +0 -0
  1058. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/f32_key.rs +0 -0
  1059. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/int32array_value.rs +0 -0
  1060. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/mod.rs +0 -0
  1061. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/roaring_bitmap_value.rs +0 -0
  1062. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/str_key.rs +0 -0
  1063. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/str_value.rs +0 -0
  1064. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/u32_key.rs +0 -0
  1065. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/u32_value.rs +0 -0
  1066. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/types.rs +0 -0
  1067. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/key.rs +0 -0
  1068. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/memory/mod.rs +0 -0
  1069. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/memory/reader_writer.rs +0 -0
  1070. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/memory/storage.rs +0 -0
  1071. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/types.rs +0 -0
  1072. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/compactor/mod.rs +0 -0
  1073. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/compactor/scheduler_policy.rs +0 -0
  1074. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/compactor/types.rs +0 -0
  1075. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/distance_avx.rs +0 -0
  1076. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/distance_neon.rs +0 -0
  1077. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/distance_sse.rs +0 -0
  1078. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/mod.rs +0 -0
  1079. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/types.rs +0 -0
  1080. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/config.rs +0 -0
  1081. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/data/data_chunk.rs +0 -0
  1082. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/data/mod.rs +0 -0
  1083. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/mod.rs +0 -0
  1084. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/operators/mod.rs +0 -0
  1085. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/orchestration/mod.rs +0 -0
  1086. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/fulltext/mod.rs +0 -0
  1087. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/fulltext/tokenizer.rs +0 -0
  1088. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/hnsw.rs +0 -0
  1089. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/hnsw_provider.rs +0 -0
  1090. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/metadata/mod.rs +0 -0
  1091. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/mod.rs +0 -0
  1092. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/types.rs +0 -0
  1093. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/utils.rs +0 -0
  1094. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/log/mod.rs +0 -0
  1095. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/memberlist/config.rs +0 -0
  1096. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/memberlist/mod.rs +0 -0
  1097. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/segment/config.rs +0 -0
  1098. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/segment/mod.rs +0 -0
  1099. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/storage/local.rs +0 -0
  1100. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/storage/mod.rs +0 -0
  1101. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/sysdb/mod.rs +0 -0
  1102. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/tracing/mod.rs +0 -0
  1103. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/tracing/util.rs +0 -0
  1104. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/flush.rs +0 -0
  1105. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/metadata.rs +0 -0
  1106. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/mod.rs +0 -0
  1107. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/record.rs +0 -0
  1108. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/scalar_encoding.rs +0 -0
  1109. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/segment_scope.rs +0 -0
  1110. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/tenant.rs +0 -0
  1111. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/types.rs +0 -0
  1112. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/utils/vec.rs +0 -0
  1113. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/setup.cfg +0 -0
  1114. {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/yarn.lock +0 -0
@@ -0,0 +1,16 @@
1
+ name: Setup Rust
2
+ description: "This action sets up Rust"
3
+ runs:
4
+ using: "composite"
5
+ steps:
6
+ - name: Checkout chroma-hnswlib
7
+ uses: actions/checkout@v3
8
+ with:
9
+ repository: chroma-core/hnswlib
10
+ path: hnswlib
11
+ - name: Install Protoc
12
+ uses: arduino/setup-protoc@v2
13
+ - name: Cache
14
+ uses: Swatinem/rust-cache@v2
15
+ with:
16
+ workspaces: chroma/rust/worker
@@ -0,0 +1,46 @@
1
+ name: Go tests
2
+
3
+ on:
4
+ workflow_call:
5
+
6
+ jobs:
7
+ test:
8
+ strategy:
9
+ matrix:
10
+ platform: [depot-ubuntu-22.04]
11
+ runs-on: ${{ matrix.platform }}
12
+ services:
13
+ postgres:
14
+ image: postgres
15
+ env:
16
+ POSTGRES_USER: chroma
17
+ POSTGRES_PASSWORD: chroma
18
+ POSTGRES_DB: chroma
19
+ options: >-
20
+ --health-cmd pg_isready
21
+ --health-interval 10s
22
+ --health-timeout 5s
23
+ --health-retries 5
24
+ ports:
25
+ - 5432:5432
26
+ steps:
27
+ - name: Checkout
28
+ uses: actions/checkout@v3
29
+ - name: Setup
30
+ uses: ./.github/actions/go
31
+ - name: Build and test
32
+ run: make test
33
+ env:
34
+ POSTGRES_HOST: localhost
35
+ POSTGRES_PORT: 5432
36
+ working-directory: go
37
+
38
+ cluster-test:
39
+ runs-on: "depot-ubuntu-22.04-16"
40
+ steps:
41
+ - name: Checkout
42
+ uses: actions/checkout@v3
43
+ - name: Setup
44
+ uses: ./.github/actions/go
45
+ - uses: ./.github/actions/tilt
46
+ - run: bin/cluster-test.sh bash -c 'cd go && go test -timeout 30s -run ^TestNodeWatcher$ github.com/chroma-core/chroma/go/pkg/memberlist_manager'
@@ -0,0 +1,13 @@
1
+ name: JavaScript client tests
2
+
3
+ on:
4
+ workflow_call:
5
+
6
+ jobs:
7
+ test:
8
+ runs-on: depot-ubuntu-22.04
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v3
12
+ - name: Test
13
+ run: bin/ts-integration-test
@@ -0,0 +1,181 @@
1
+ name: Chroma Python Base Tests
2
+
3
+ on:
4
+ workflow_call:
5
+ inputs:
6
+ python_versions:
7
+ description: 'Python versions to test (as json array)'
8
+ required: false
9
+ default: '["3.8"]'
10
+ type: string
11
+ property_testing_preset:
12
+ description: 'Property testing preset'
13
+ required: true
14
+ type: string
15
+
16
+ jobs:
17
+ test:
18
+ timeout-minutes: 90
19
+ strategy:
20
+ fail-fast: false
21
+ matrix:
22
+ python: ${{fromJson(inputs.python_versions)}}
23
+ platform: [depot-ubuntu-22.04, windows-latest]
24
+ test-globs: ["--ignore-glob 'chromadb/test/property/*' --ignore-glob 'chromadb/test/stress/*' --ignore-glob 'chromadb/test/distributed/*' --ignore='chromadb/test/auth/test_simple_rbac_authz.py'",
25
+ "chromadb/test/auth/test_simple_rbac_authz.py",
26
+ "chromadb/test/property/test_add.py",
27
+ "chromadb/test/property/test_collections.py",
28
+ "chromadb/test/property/test_collections_with_database_tenant.py",
29
+ "chromadb/test/property/test_collections_with_database_tenant_overwrite.py",
30
+ "chromadb/test/property/test_cross_version_persist.py",
31
+ "chromadb/test/property/test_embeddings.py",
32
+ "chromadb/test/property/test_filtering.py",
33
+ "chromadb/test/property/test_persist.py"]
34
+ include:
35
+ - test-globs: "chromadb/test/property/test_embeddings.py"
36
+ parallelized: true
37
+
38
+ runs-on: ${{ matrix.platform }}
39
+ steps:
40
+ - uses: actions/checkout@v3
41
+ - name: Setup
42
+ uses: ./.github/actions/python
43
+ with:
44
+ python-version: ${{ matrix.python }}
45
+ - name: Test
46
+ run: python -m pytest ${{ matrix.parallelized && '-n auto' || '' }} ${{ matrix.test-globs }}
47
+ shell: bash
48
+ env:
49
+ PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
50
+
51
+ # todo: break out stress integration tests
52
+ test-single-node-integration:
53
+ strategy:
54
+ fail-fast: false
55
+ matrix:
56
+ python: ${{fromJson(inputs.python_versions)}}
57
+ platform: [depot-ubuntu-22.04, windows-latest]
58
+ test-globs: ["--ignore-glob 'chromadb/test/property/*' --ignore='chromadb/test/test_cli.py' --ignore-glob 'chromadb/test/distributed/*' --ignore='chromadb/test/auth/test_simple_rbac_authz.py'",
59
+ "chromadb/test/property/test_add.py",
60
+ "chromadb/test/test_cli.py",
61
+ "chromadb/test/auth/test_simple_rbac_authz.py",
62
+ "chromadb/test/property/test_collections.py",
63
+ "chromadb/test/property/test_collections_with_database_tenant.py",
64
+ "chromadb/test/property/test_cross_version_persist.py",
65
+ "chromadb/test/property/test_embeddings.py",
66
+ "chromadb/test/property/test_filtering.py",
67
+ "chromadb/test/property/test_persist.py"]
68
+ include:
69
+ - platform: depot-ubuntu-22.04
70
+ env-file: compose-env.linux
71
+ - platform: windows-latest
72
+ env-file: compose-env.windows
73
+ runs-on: ${{ matrix.platform }}
74
+ steps:
75
+ - name: Checkout
76
+ uses: actions/checkout@v3
77
+ - name: Set up Python (${{ matrix.python }})
78
+ uses: ./.github/actions/python
79
+ - name: Integration Test
80
+ run: bin/python-integration-test ${{ matrix.test-globs }}
81
+ shell: bash
82
+ env:
83
+ ENV_FILE: ${{ matrix.env-file }}
84
+ PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
85
+
86
+ test-cluster-integration:
87
+ strategy:
88
+ fail-fast: false
89
+ matrix:
90
+ python: ${{fromJson(inputs.python_versions)}}
91
+ platform: ["depot-ubuntu-22.04-16"]
92
+ test-globs: ["chromadb/test/db/test_system.py",
93
+ "chromadb/test/property/test_collections.py",
94
+ "chromadb/test/property/test_add.py",
95
+ "chromadb/test/property/test_filtering.py",
96
+ "chromadb/test/property/test_embeddings.py",
97
+ "chromadb/test/property/test_collections_with_database_tenant.py",
98
+ "chromadb/test/property/test_collections_with_database_tenant_overwrite.py",
99
+ "chromadb/test/ingest/test_producer_consumer.py",
100
+ "chromadb/test/segment/distributed/test_memberlist_provider.py",
101
+ "chromadb/test/test_logservice.py",
102
+ "chromadb/test/distributed/test_sanity.py"]
103
+ runs-on: ${{ matrix.platform }}
104
+ steps:
105
+ - uses: actions/checkout@v3
106
+ - uses: ./.github/actions/python
107
+ with:
108
+ python-version: ${{ matrix.python }}
109
+ - uses: ./.github/actions/tilt
110
+ - name: Test
111
+ run: bin/cluster-test.sh bash -c 'python -m pytest "${{ matrix.test-globs }}"'
112
+ shell: bash
113
+ env:
114
+ PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
115
+ - name: Get logs of all services
116
+ id: get-logs
117
+ if: success() || failure()
118
+ run: |
119
+ bin/get-logs.sh "${{ matrix.test-globs }}"
120
+ # Output the logs zip file path as a job output
121
+ echo "logs_zip_path=$(pwd)/$(basename "${{ matrix.test-globs }}" .py)_logs.zip" >> $GITHUB_OUTPUT
122
+ shell: bash
123
+ - name: Upload logs as artifact
124
+ if: success() || failure()
125
+ uses: actions/upload-artifact@v2
126
+ with:
127
+ name: logs
128
+ path: ${{ steps.get-logs.outputs.logs_zip_path }}
129
+
130
+ test-thin-client:
131
+ strategy:
132
+ matrix:
133
+ python: ${{fromJson(inputs.python_versions)}}
134
+ platform: [depot-ubuntu-22.04] # # todo: should run on Windows, currently failing because Dockerfile doesn't build
135
+ runs-on: ${{ matrix.platform }}
136
+ steps:
137
+ - uses: actions/checkout@v3
138
+ - name: Setup
139
+ uses: ./.github/actions/python
140
+ with:
141
+ python-version: ${{ matrix.python }}
142
+ - name: Test
143
+ run: clients/python/integration-test.sh
144
+ shell: bash
145
+ env:
146
+ PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
147
+
148
+ test-stress:
149
+ timeout-minutes: 90
150
+ strategy:
151
+ matrix:
152
+ python: ${{fromJson(inputs.python_versions)}}
153
+ platform: ['depot-ubuntu-22.04-16', '16core-64gb-windows-latest']
154
+ runs-on: ${{ matrix.platform }}
155
+ steps:
156
+ - uses: actions/checkout@v3
157
+ - uses: ./.github/actions/python
158
+ with:
159
+ python-version: ${{ matrix.python }}
160
+ - name: Test
161
+ run: python -m pytest chromadb/test/stress/
162
+ shell: bash
163
+ env:
164
+ PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
165
+
166
+ test-single-node-integration-stress:
167
+ strategy:
168
+ matrix:
169
+ python: ${{fromJson(inputs.python_versions)}}
170
+ platform: [depot-ubuntu-22.04] # todo: should run on Windows, currently failing because Dockerfile doesn't build
171
+ runs-on: ${{ matrix.platform }}
172
+ steps:
173
+ - name: Checkout
174
+ uses: actions/checkout@v3
175
+ - name: Set up Python (${{ matrix.python }})
176
+ uses: ./.github/actions/python
177
+ - name: Integration Test
178
+ run: bin/python-integration-test chromadb/test/stress/
179
+ shell: bash
180
+ env:
181
+ PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
@@ -0,0 +1,25 @@
1
+ name: Rust tests
2
+
3
+ on:
4
+ workflow_call:
5
+
6
+ jobs:
7
+ test:
8
+ strategy:
9
+ matrix:
10
+ platform: [depot-ubuntu-22.04]
11
+ runs-on: ${{ matrix.platform }}
12
+ defaults:
13
+ run:
14
+ working-directory: chroma
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v3
18
+ with:
19
+ path: chroma
20
+ - name: Setup
21
+ uses: ./chroma/.github/actions/rust
22
+ - name: Build
23
+ run: cargo build --verbose
24
+ - name: Test
25
+ run: cargo test --verbose
@@ -0,0 +1,48 @@
1
+ name: Run (intensive) tests nightly
2
+ on:
3
+ schedule:
4
+ # 2:15 AM PDT, offseted by a few minutes because:
5
+ # "The schedule event can be delayed during periods of high loads of GitHub Actions workflow runs. High load times include the start of every hour. If the load is sufficiently high enough, some queued jobs may be dropped."
6
+ - cron: '15 9 * * *'
7
+
8
+ jobs:
9
+ test-cluster:
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ test-globs: ["chromadb/test/property/test_collections.py",
14
+ "chromadb/test/property/test_add.py",
15
+ "chromadb/test/property/test_filtering.py",
16
+ "chromadb/test/property/test_embeddings.py"]
17
+ runs-on: "depot-ubuntu-22.04-8"
18
+ steps:
19
+ - uses: actions/checkout@v3
20
+ - uses: ./.github/actions/python
21
+ with:
22
+ python-version: "3.12"
23
+ - uses: ./.github/actions/tilt
24
+ - name: Test
25
+ run: bin/cluster-test.sh bash -c 'python -m pytest "${{ matrix.test-globs }}"'
26
+ shell: bash
27
+ env:
28
+ PROPERTY_TESTING_PRESET: slow
29
+ - name: Get logs of all services
30
+ id: get-logs
31
+ if: success() || failure()
32
+ run: |
33
+ bin/get-logs.sh "${{ matrix.test-globs }}"
34
+ # Output the logs zip file path as a job output
35
+ echo "logs_zip_path=$(pwd)/$(basename "${{ matrix.test-globs }}" .py)_logs.zip" >> $GITHUB_OUTPUT
36
+ shell: bash
37
+ - name: Upload logs as artifact
38
+ if: success() || failure()
39
+ uses: actions/upload-artifact@v2
40
+ with:
41
+ name: logs
42
+ path: ${{ steps.get-logs.outputs.logs_zip_path }}
43
+ - name: Send PagerDuty alert on failure
44
+ if: ${{ failure() }}
45
+ uses: Entle/action-pagerduty-alert@0.2.0
46
+ with:
47
+ pagerduty-integration-key: '${{ secrets.PAGERDUTY_INTEGRATION_KEY }}'
48
+ pagerduty-dedup-key: distributed-test-failed-${{ matrix.test-globs}}
@@ -0,0 +1,161 @@
1
+ name: PR checks
2
+ on:
3
+ pull_request:
4
+ branches:
5
+ - main
6
+ - '**'
7
+
8
+ jobs:
9
+ # GitHub only provides a way to do path filtering at the workflow level rather than the job level.
10
+ # This allows us to selectively run jobs based on changed paths.
11
+ paths-filter:
12
+ name: Get changed paths
13
+ runs-on: ubuntu-latest
14
+ outputs:
15
+ outside-docs: ${{ steps.changes.outputs.outside-docs }}
16
+ docs: ${{ steps.changes.outputs.docs }}
17
+ steps:
18
+ - name: Get changed paths
19
+ id: changes
20
+ uses: dorny/paths-filter@v3
21
+ with:
22
+ predicate-quantifier: 'every'
23
+ filters: |
24
+ outside-docs:
25
+ - '!docs/**'
26
+ docs:
27
+ - 'docs/**'
28
+
29
+ deploy-docs-preview:
30
+ name: Deploy preview of docs
31
+ needs: paths-filter
32
+ if: needs.paths-filter.outputs.docs == 'true'
33
+ runs-on: depot-ubuntu-22.04-small
34
+ environment:
35
+ name: Preview
36
+ url: ${{ steps.deploy.outputs.url }}
37
+ steps:
38
+ - name: Checkout
39
+ uses: actions/checkout@v3
40
+ with:
41
+ fetch-depth: 0
42
+ - uses: actions/setup-node@v3
43
+ with:
44
+ node-version: "18.x"
45
+ registry-url: "https://registry.npmjs.org"
46
+ - name: Install vercel
47
+ run: npm install -g vercel
48
+ - name: Deploy
49
+ id: deploy
50
+ run: echo "url=$(vercel deploy --token ${{ secrets.VERCEL_TOKEN }})" >> $GITHUB_OUTPUT
51
+ env:
52
+ VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
53
+ VERCEL_PROJECT_ID: ${{ secrets.VERCEL_DOCS_PROJECT_ID }}
54
+
55
+
56
+ python-tests:
57
+ name: Python tests
58
+ needs: paths-filter
59
+ if: needs.paths-filter.outputs.outside-docs == 'true'
60
+ uses: ./.github/workflows/_python-tests.yml
61
+ with:
62
+ property_testing_preset: 'fast'
63
+
64
+ python-vulnerability-scan:
65
+ name: Python vulnerability scan
66
+ needs: paths-filter
67
+ if: needs.paths-filter.outputs.outside-docs == 'true'
68
+ uses: ./.github/workflows/_python-vulnerability-scan.yml
69
+
70
+ javascript-client-tests:
71
+ name: JavaScript client tests
72
+ needs: paths-filter
73
+ if: needs.paths-filter.outputs.outside-docs == 'true'
74
+ uses: ./.github/workflows/_javascript-client-tests.yml
75
+
76
+ rust-tests:
77
+ name: Rust tests
78
+ needs: paths-filter
79
+ if: needs.paths-filter.outputs.outside-docs == 'true'
80
+ uses: ./.github/workflows/_rust-tests.yml
81
+
82
+ go-tests:
83
+ name: Go tests
84
+ needs: paths-filter
85
+ if: needs.paths-filter.outputs.outside-docs == 'true'
86
+ uses: ./.github/workflows/_go-tests.yml
87
+
88
+ check-title:
89
+ name: Check PR Title
90
+ runs-on: ubuntu-latest
91
+ steps:
92
+ - name: Check PR Title
93
+ uses: Slashgear/action-check-pr-title@v4.3.0
94
+ with:
95
+ regexp: '\[(ENH|BUG|DOC|TST|BLD|PERF|TYP|CLN|CHORE|RELEASE)\].*'
96
+ helpMessage: "Please tag your PR title. See https://docs.trychroma.com/contributing#contributing-code-and-ideas. You must push new code to this PR for this check to run again."
97
+ - name: Comment explaining failure
98
+ if: failure()
99
+ uses: actions/github-script@v6
100
+ with:
101
+ script: |
102
+ github.rest.issues.createComment({
103
+ issue_number: context.issue.number,
104
+ owner: context.repo.owner,
105
+ repo: context.repo.repo,
106
+ body: 'Please tag your PR title with one of: \\[ENH | BUG | DOC | TST | BLD | PERF | TYP | CLN | CHORE\\]. See https://docs.trychroma.com/contributing#contributing-code-and-ideas'
107
+ })
108
+
109
+ lint:
110
+ name: Lint
111
+ runs-on: ubuntu-latest
112
+ steps:
113
+ - name: Checkout
114
+ uses: actions/checkout@v3
115
+ - name: Set up Python
116
+ uses: actions/setup-python@v4
117
+ - name: Install pre-commit
118
+ shell: bash
119
+ run: python -m pip install -r requirements_dev.txt
120
+ - name: Run pre-commit
121
+ shell: bash
122
+ run: |
123
+ pre-commit run --all-files trailing-whitespace
124
+ pre-commit run --all-files mixed-line-ending
125
+ pre-commit run --all-files end-of-file-fixer
126
+ pre-commit run --all-files requirements-txt-fixer
127
+ pre-commit run --all-files check-xml
128
+ pre-commit run --all-files check-merge-conflict
129
+ pre-commit run --all-files check-case-conflict
130
+ pre-commit run --all-files check-docstring-first
131
+ pre-commit run --all-files black
132
+ pre-commit run --all-files flake8
133
+ pre-commit run --all-files prettier
134
+ pre-commit run --all-files check-yaml
135
+ - name: Cargo fmt check
136
+ shell: bash
137
+ run: cargo fmt -- --check
138
+
139
+ # This job exists for our branch protection rule.
140
+ # We want to require status checks to pass before merging, but the set of
141
+ # checks that run for any given PR is dynamic based on the files changed.
142
+ # When creating a branch protection rule, you have to specify a static list
143
+ # of checks.
144
+ # So since this job always runs, we can specify it in the branch protection rule.
145
+ all-required-pr-checks-passed:
146
+ if: always()
147
+ needs:
148
+ - python-tests
149
+ - python-vulnerability-scan
150
+ - javascript-client-tests
151
+ - rust-tests
152
+ - go-tests
153
+ - check-title
154
+ - lint
155
+ runs-on: ubuntu-latest
156
+ steps:
157
+ - name: Decide whether the needed jobs succeeded or failed
158
+ uses: re-actors/alls-green@release/v1
159
+ with:
160
+ jobs: ${{ toJSON(needs) }}
161
+ allowed-skips: python-tests,python-vulnerability-scan,javascript-client-tests,rust-tests,go-tests