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