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.
- chromadb_client-0.5.3.dev0/.gitattributes +4 -0
- chromadb_client-0.5.3.dev0/.github/DEVELOP.md +6 -0
- chromadb_client-0.5.3.dev0/.github/actions/docker/action.yaml +37 -0
- chromadb_client-0.5.3.dev0/.github/actions/go/action.yaml +9 -0
- chromadb_client-0.5.3.dev0/.github/actions/python/action.yaml +23 -0
- chromadb_client-0.5.3.dev0/.github/actions/rust/action.yaml +12 -0
- chromadb_client-0.5.3.dev0/.github/actions/tilt/action.yaml +23 -0
- chromadb_client-0.5.3.dev0/.github/workflows/_go-tests.yml +46 -0
- chromadb_client-0.5.3.dev0/.github/workflows/_javascript-client-tests.yml +13 -0
- chromadb_client-0.5.3.dev0/.github/workflows/_python-tests.yml +166 -0
- chromadb_client-0.5.3.dev0/.github/workflows/_python-vulnerability-scan.yml +24 -0
- chromadb_client-0.5.3.dev0/.github/workflows/_rust-tests.yml +25 -0
- chromadb_client-0.5.3.dev0/.github/workflows/pr-review-checklist.yml +37 -0
- chromadb_client-0.5.3.dev0/.github/workflows/pr.yml +132 -0
- chromadb_client-0.5.3.dev0/.github/workflows/release-chromadb.yml +278 -0
- chromadb_client-0.5.3.dev0/.github/workflows/release-dev-javascript-client.yml +68 -0
- chromadb_client-0.5.3.dev0/.github/workflows/release-helm-chart.yml +30 -0
- chromadb_client-0.5.3.dev0/.github/workflows/release-hosted.yml +23 -0
- chromadb_client-0.5.3.dev0/.github/workflows/release-javascript-client.yml +44 -0
- chromadb_client-0.5.3.dev0/.gitignore +46 -0
- chromadb_client-0.5.3.dev0/.pre-commit-config.yaml +63 -0
- chromadb_client-0.5.3.dev0/.vscode/settings.json +135 -0
- chromadb_client-0.5.3.dev0/Cargo.lock +4746 -0
- chromadb_client-0.5.3.dev0/Dockerfile +41 -0
- chromadb_client-0.5.3.dev0/Dockerfile.windows +26 -0
- chromadb_client-0.5.3.dev0/PKG-INFO +66 -0
- chromadb_client-0.5.3.dev0/Tiltfile +146 -0
- chromadb_client-0.5.3.dev0/bin/cluster-test.sh +21 -0
- chromadb_client-0.5.3.dev0/bin/docker_entrypoint.ps1 +26 -0
- chromadb_client-0.5.3.dev0/bin/python-integration-test +24 -0
- chromadb_client-0.5.3.dev0/bin/ts-integration-test +68 -0
- chromadb_client-0.5.3.dev0/chromadb/__init__.py +343 -0
- chromadb_client-0.5.3.dev0/chromadb/api/__init__.py +602 -0
- chromadb_client-0.5.3.dev0/chromadb/api/async_api.py +595 -0
- chromadb_client-0.5.3.dev0/chromadb/api/async_client.py +416 -0
- chromadb_client-0.5.3.dev0/chromadb/api/async_fastapi.py +634 -0
- chromadb_client-0.5.3.dev0/chromadb/api/base_http_client.py +59 -0
- chromadb_client-0.5.3.dev0/chromadb/api/client.py +409 -0
- chromadb_client-0.5.3.dev0/chromadb/api/fastapi.py +613 -0
- chromadb_client-0.5.3.dev0/chromadb/api/models/AsyncCollection.py +333 -0
- chromadb_client-0.5.3.dev0/chromadb/api/models/Collection.py +332 -0
- chromadb_client-0.5.3.dev0/chromadb/api/models/CollectionCommon.py +558 -0
- chromadb_client-0.5.3.dev0/chromadb/api/segment.py +941 -0
- chromadb_client-0.5.3.dev0/chromadb/api/shared_system_client.py +93 -0
- chromadb_client-0.5.3.dev0/chromadb/api/types.py +527 -0
- chromadb_client-0.5.3.dev0/chromadb/auth/__init__.py +236 -0
- chromadb_client-0.5.3.dev0/chromadb/auth/basic_authn/__init__.py +144 -0
- chromadb_client-0.5.3.dev0/chromadb/auth/simple_rbac_authz/__init__.py +79 -0
- chromadb_client-0.5.3.dev0/chromadb/auth/token_authn/__init__.py +235 -0
- chromadb_client-0.5.3.dev0/chromadb/cli/cli.py +101 -0
- chromadb_client-0.5.3.dev0/chromadb/config.py +450 -0
- chromadb_client-0.5.3.dev0/chromadb/db/impl/grpc/client.py +320 -0
- chromadb_client-0.5.3.dev0/chromadb/db/impl/grpc/server.py +445 -0
- chromadb_client-0.5.3.dev0/chromadb/db/impl/sqlite.py +249 -0
- chromadb_client-0.5.3.dev0/chromadb/db/migrations.py +276 -0
- chromadb_client-0.5.3.dev0/chromadb/db/mixins/embeddings_queue.py +393 -0
- chromadb_client-0.5.3.dev0/chromadb/db/mixins/sysdb.py +740 -0
- chromadb_client-0.5.3.dev0/chromadb/db/system.py +134 -0
- chromadb_client-0.5.3.dev0/chromadb/ingest/__init__.py +116 -0
- chromadb_client-0.5.3.dev0/chromadb/ingest/impl/utils.py +17 -0
- chromadb_client-0.5.3.dev0/chromadb/logservice/logservice.py +160 -0
- chromadb_client-0.5.3.dev0/chromadb/migrations/sysdb/00005-remove-topic.sqlite.sql +4 -0
- chromadb_client-0.5.3.dev0/chromadb/migrations/sysdb/00006-collection-segment-metadata.sqlite.sql +6 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/chroma_pb2.py +125 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/chroma_pb2.pyi +425 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/chroma_pb2_grpc.py +270 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/convert.py +293 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/coordinator_pb2.py +99 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/coordinator_pb2.pyi +301 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/coordinator_pb2_grpc.py +747 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/logservice_pb2.py +48 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/logservice_pb2.pyi +79 -0
- chromadb_client-0.5.3.dev0/chromadb/proto/logservice_pb2_grpc.py +230 -0
- chromadb_client-0.5.3.dev0/chromadb/quota/__init__.py +131 -0
- chromadb_client-0.5.3.dev0/chromadb/quota/test_provider.py +16 -0
- chromadb_client-0.5.3.dev0/chromadb/rate_limiting/__init__.py +71 -0
- chromadb_client-0.5.3.dev0/chromadb/rate_limiting/test_provider.py +15 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/__init__.py +130 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/distributed/segment_directory.py +251 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/manager/cache/cache.py +108 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/manager/distributed.py +155 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/manager/local.py +266 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/metadata/grpc_segment.py +360 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/metadata/sqlite.py +767 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/batch.py +118 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/brute_force_index.py +151 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/grpc_segment.py +104 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/local_hnsw.py +325 -0
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/local_persistent_hnsw.py +464 -0
- chromadb_client-0.5.3.dev0/chromadb/server/fastapi/__init__.py +946 -0
- chromadb_client-0.5.3.dev0/chromadb/telemetry/opentelemetry/__init__.py +179 -0
- chromadb_client-0.5.3.dev0/chromadb/telemetry/opentelemetry/grpc.py +94 -0
- chromadb_client-0.5.3.dev0/chromadb/telemetry/product/events.py +252 -0
- chromadb_client-0.5.3.dev0/chromadb/test/auth/rbac_test_executors.py +290 -0
- chromadb_client-0.5.3.dev0/chromadb/test/auth/strategies.py +235 -0
- chromadb_client-0.5.3.dev0/chromadb/test/auth/test_base_class_behavior.py +107 -0
- chromadb_client-0.5.3.dev0/chromadb/test/auth/test_basic_authn.py +14 -0
- chromadb_client-0.5.3.dev0/chromadb/test/auth/test_simple_rbac_authz.py +82 -0
- chromadb_client-0.5.3.dev0/chromadb/test/auth/test_token_authn.py +72 -0
- chromadb_client-0.5.3.dev0/chromadb/test/client/create_http_client_with_basic_auth.py +28 -0
- chromadb_client-0.5.3.dev0/chromadb/test/client/test_cloud_client.py +101 -0
- chromadb_client-0.5.3.dev0/chromadb/test/client/test_create_http_client.py +15 -0
- chromadb_client-0.5.3.dev0/chromadb/test/client/test_database_tenant.py +172 -0
- chromadb_client-0.5.3.dev0/chromadb/test/client/test_multiple_clients_concurrency.py +49 -0
- chromadb_client-0.5.3.dev0/chromadb/test/conftest.py +855 -0
- chromadb_client-0.5.3.dev0/chromadb/test/db/test_hash.py +121 -0
- chromadb_client-0.5.3.dev0/chromadb/test/db/test_system.py +749 -0
- chromadb_client-0.5.3.dev0/chromadb/test/distributed/README.md +3 -0
- chromadb_client-0.5.3.dev0/chromadb/test/distributed/test_sanity.py +155 -0
- chromadb_client-0.5.3.dev0/chromadb/test/ef/test_ollama_ef.py +34 -0
- chromadb_client-0.5.3.dev0/chromadb/test/ingest/test_producer_consumer.py +373 -0
- chromadb_client-0.5.3.dev0/chromadb/test/openssl.cnf +12 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/invariants.py +294 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/strategies.py +612 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_add.py +215 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_collections.py +343 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_collections_with_database_tenant.py +152 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_collections_with_database_tenant_overwrite.py +214 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_embeddings.py +469 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_filtering.py +402 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_persist.py +244 -0
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_segment_manager.py +134 -0
- chromadb_client-0.5.3.dev0/chromadb/test/quota/test_static_quota_enforcer.py +182 -0
- chromadb_client-0.5.3.dev0/chromadb/test/rate_limiting/test_rate_limiting.py +61 -0
- chromadb_client-0.5.3.dev0/chromadb/test/segment/distributed/test_memberlist_provider.py +112 -0
- chromadb_client-0.5.3.dev0/chromadb/test/segment/distributed/test_protobuf_translation.py +387 -0
- chromadb_client-0.5.3.dev0/chromadb/test/segment/test_metadata.py +759 -0
- chromadb_client-0.5.3.dev0/chromadb/test/segment/test_vector.py +704 -0
- chromadb_client-0.5.3.dev0/chromadb/test/test_api.py +1632 -0
- chromadb_client-0.5.3.dev0/chromadb/test/test_client.py +101 -0
- chromadb_client-0.5.3.dev0/chromadb/test/test_logservice.py +176 -0
- chromadb_client-0.5.3.dev0/chromadb/test/utils/test_messagid.py +19 -0
- chromadb_client-0.5.3.dev0/chromadb/test/utils/wait_for_version_increase.py +22 -0
- chromadb_client-0.5.3.dev0/chromadb/types.py +161 -0
- chromadb_client-0.5.3.dev0/chromadb/utils/async_to_sync.py +63 -0
- chromadb_client-0.5.3.dev0/chromadb/utils/batch_utils.py +36 -0
- chromadb_client-0.5.3.dev0/chromadb/utils/data_loaders.py +31 -0
- chromadb_client-0.5.3.dev0/chromadb/utils/directory.py +22 -0
- chromadb_client-0.5.3.dev0/chromadb/utils/embedding_functions.py +1029 -0
- chromadb_client-0.5.3.dev0/chromadb/utils/fastapi.py +18 -0
- chromadb_client-0.5.3.dev0/chromadb/utils/messageid.py +8 -0
- chromadb_client-0.5.3.dev0/chromadb_client.egg-info/PKG-INFO +66 -0
- chromadb_client-0.5.3.dev0/chromadb_client.egg-info/SOURCES.txt +869 -0
- chromadb_client-0.5.3.dev0/chromadb_client.egg-info/requires.txt +12 -0
- chromadb_client-0.5.3.dev0/clients/js/DEVELOP.md +83 -0
- chromadb_client-0.5.3.dev0/clients/js/README.md +43 -0
- chromadb_client-0.5.3.dev0/clients/js/examples/browser/README.md +15 -0
- chromadb_client-0.5.3.dev0/clients/js/examples/browser/app.tsx +231 -0
- chromadb_client-0.5.3.dev0/clients/js/examples/browser/index.html +22 -0
- chromadb_client-0.5.3.dev0/clients/js/examples/browser/index.tsx +7 -0
- chromadb_client-0.5.3.dev0/clients/js/examples/browser/package.json +24 -0
- chromadb_client-0.5.3.dev0/clients/js/examples/browser/pnpm-lock.yaml +2394 -0
- chromadb_client-0.5.3.dev0/clients/js/examples/browser/vite.config.mjs +23 -0
- chromadb_client-0.5.3.dev0/clients/js/examples/node/app.js +54 -0
- chromadb_client-0.5.3.dev0/clients/js/package.json +96 -0
- chromadb_client-0.5.3.dev0/clients/js/src/AdminClient.ts +268 -0
- chromadb_client-0.5.3.dev0/clients/js/src/ChromaClient.ts +347 -0
- chromadb_client-0.5.3.dev0/clients/js/src/ChromaFetch.ts +102 -0
- chromadb_client-0.5.3.dev0/clients/js/src/CloudClient.ts +45 -0
- chromadb_client-0.5.3.dev0/clients/js/src/Collection.ts +544 -0
- chromadb_client-0.5.3.dev0/clients/js/src/Errors.ts +109 -0
- chromadb_client-0.5.3.dev0/clients/js/src/auth.ts +109 -0
- chromadb_client-0.5.3.dev0/clients/js/src/embeddings/CohereEmbeddingFunction.ts +122 -0
- chromadb_client-0.5.3.dev0/clients/js/src/embeddings/DefaultEmbeddingFunction.ts +118 -0
- chromadb_client-0.5.3.dev0/clients/js/src/embeddings/GoogleGeminiEmbeddingFunction.ts +78 -0
- chromadb_client-0.5.3.dev0/clients/js/src/embeddings/HuggingFaceEmbeddingServerFunction.ts +30 -0
- chromadb_client-0.5.3.dev0/clients/js/src/embeddings/IEmbeddingFunction.ts +3 -0
- chromadb_client-0.5.3.dev0/clients/js/src/embeddings/JinaEmbeddingFunction.ts +52 -0
- chromadb_client-0.5.3.dev0/clients/js/src/embeddings/OllamaEmbeddingFunction.ts +35 -0
- chromadb_client-0.5.3.dev0/clients/js/src/embeddings/OpenAIEmbeddingFunction.ts +157 -0
- chromadb_client-0.5.3.dev0/clients/js/src/embeddings/TransformersEmbeddingFunction.ts +101 -0
- chromadb_client-0.5.3.dev0/clients/js/src/generated/README.md +42 -0
- chromadb_client-0.5.3.dev0/clients/js/src/generated/api.ts +2548 -0
- chromadb_client-0.5.3.dev0/clients/js/src/generated/configuration.ts +66 -0
- chromadb_client-0.5.3.dev0/clients/js/src/generated/models.ts +290 -0
- chromadb_client-0.5.3.dev0/clients/js/src/generated/runtime.ts +84 -0
- chromadb_client-0.5.3.dev0/clients/js/src/index.ts +45 -0
- chromadb_client-0.5.3.dev0/clients/js/src/types.ts +163 -0
- chromadb_client-0.5.3.dev0/clients/js/src/utils.ts +93 -0
- chromadb_client-0.5.3.dev0/clients/js/test/add.collections.test.ts +161 -0
- chromadb_client-0.5.3.dev0/clients/js/test/admin.test.ts +77 -0
- chromadb_client-0.5.3.dev0/clients/js/test/auth.basic.test.ts +33 -0
- chromadb_client-0.5.3.dev0/clients/js/test/auth.token.test.ts +79 -0
- chromadb_client-0.5.3.dev0/clients/js/test/client.test.ts +207 -0
- chromadb_client-0.5.3.dev0/clients/js/test/collection.client.test.ts +104 -0
- chromadb_client-0.5.3.dev0/clients/js/test/collection.test.ts +72 -0
- chromadb_client-0.5.3.dev0/clients/js/test/delete.collection.test.ts +33 -0
- chromadb_client-0.5.3.dev0/clients/js/test/get.collection.test.ts +119 -0
- chromadb_client-0.5.3.dev0/clients/js/test/initClientWithAuth.ts +33 -0
- chromadb_client-0.5.3.dev0/clients/js/test/offline.test.ts +15 -0
- chromadb_client-0.5.3.dev0/clients/js/test/peek.collection.test.ts +24 -0
- chromadb_client-0.5.3.dev0/clients/js/test/query.collection.test.ts +229 -0
- chromadb_client-0.5.3.dev0/clients/js/test/update.collection.test.ts +87 -0
- chromadb_client-0.5.3.dev0/clients/js/test/upsert.collections.test.ts +41 -0
- chromadb_client-0.5.3.dev0/clients/js/tsconfig.json +16 -0
- chromadb_client-0.5.3.dev0/clients/js/tsup.config.ts +32 -0
- chromadb_client-0.5.3.dev0/clients/python/integration-test.sh +36 -0
- chromadb_client-0.5.3.dev0/clients/python/pyproject.toml +52 -0
- chromadb_client-0.5.3.dev0/clients/python/requirements.txt +12 -0
- chromadb_client-0.5.3.dev0/compose-env.windows +2 -0
- chromadb_client-0.5.3.dev0/docker-compose.test-auth.yml +30 -0
- chromadb_client-0.5.3.dev0/docker-compose.test.yml +19 -0
- chromadb_client-0.5.3.dev0/docker-compose.yml +45 -0
- chromadb_client-0.5.3.dev0/docs/cip/CIP_2_Auth_Providers_Proposal.md +190 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/.env.local +6 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/.gitignore +6 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/README.md +61 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/CodeBlock.tsx +193 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/CopyToClipboardButton.tsx +49 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/layout/SideNav.tsx +142 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/layout/TableOfContents.tsx +65 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/layout/TopNav.tsx +42 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/layout/state.tsx +42 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/AppLink.tsx +10 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/CodeTab.tsx +12 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/CodeTabs.tsx +36 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/Heading.tsx +63 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/Math.tsx +8 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/Note.tsx +39 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/SpecialTable.tsx +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/Tab.tsx +12 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/Tabs.tsx +62 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/markdoc/misc.tsx +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/alert.tsx +64 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/breadcrumb.tsx +115 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/button.tsx +57 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/dropdown-menu.tsx +203 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/icons.tsx +214 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/menubar.tsx +239 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/scroll-area.tsx +46 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/select.tsx +162 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/tabs.tsx +53 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/toast.tsx +127 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/toaster.tsx +33 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/toggle-theme.tsx +33 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/tooltip.tsx +28 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/ui/use-toast.ts +192 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components.json +17 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/lib/utils.ts +6 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/functions.ts +16 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/nodes/fence.markdoc.tsx +21 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/nodes/heading.markdoc.ts +31 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/nodes/index.ts +4 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/nodes/link.markdoc.ts +9 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/partials/header.md +1 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/tags/codetabs.markdoc.ts +34 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/tags/index.ts +5 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/tags/note.markdoc.ts +28 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/tags/special_table.markdoc.ts +10 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/markdoc/tags/tabs.markdoc.ts +36 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/next-env.d.ts +5 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/next.config.js +6 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/package.json +46 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/_app.tsx +257 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/_sidenav.js +16 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/about.md +48 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/cloud/_sidenav.js +11 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/cloud/apikeys.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/cloud/index.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/cloud/performance.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/cloud/teams.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/community.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/contributing.md +42 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/_sidenav.js +32 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/auth.md +186 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/aws.md +206 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/azure.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/docker.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/encryption.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/gcp.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/in-memory.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/index.md +33 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/kubernetes.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/logging.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/migration.md +286 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/observability.md +46 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/performance.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/persistent-client.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/security.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/docs/index.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/examples/_sidenav.js +20 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/examples/agents.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/examples/code.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/examples/documents.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/examples/fastapi.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/examples/index.md +16 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/examples/nextjs.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/examples/rails.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/getting-started.md +291 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/_sidenav.js +24 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/adding.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/deleting.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/documents.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/embedding.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/embeddings.md +147 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/index.md +792 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/indexes.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/loading.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/metadatas.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/multimodal.md +150 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/querying.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/splitting.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/guides/updating.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/index.md +91 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/_sidenav.js +28 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/braintrust.md +60 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/cohere.md +89 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/google-gemini.md +60 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/haystack.md +80 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face-server.md +63 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face.md +32 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/index.md +48 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/instructor.md +20 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/jinaai.md +48 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/langchain.md +55 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/llamaindex.md +7 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/ollama.md +77 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/openai.md +78 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/openlit.md +48 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/openllmetry.md +29 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/roboflow.md +65 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/streamlit.md +68 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/_sidenav.js +25 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/architecture.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/cheatsheet.md +249 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/cli.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/docs.md +133 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/index.md +32 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/js-client.md +259 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/js-collection.md +351 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/openapi.md +3 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/py-client.md +299 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/reference/py-collection.md +218 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/roadmap.md +102 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/tabs.md +56 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/telemetry.md +57 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/troubleshooting.md +59 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/postcss.config.js +6 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/favicon.ico +0 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/globals.css +517 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/after.gif +0 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/chroma-migrate.png +0 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/chroma.png +0 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/chroma.svg +7 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/favicon.ico +0 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/glitch.gif +0 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/hrm4.svg +56 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/openllmetry.png +0 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/pip.png +0 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/svg_fast.svg +4 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/svg_fast2.svg +11 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/svg_feature.svg +4 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/svg_free.svg +196 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/svg_simple.svg +14 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/svg_simple2.svg +8 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/public/img/team.JPG +0 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/tailwind.config.js +81 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/tsconfig.json +20 -0
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/vercel.json +6 -0
- chromadb_client-0.5.3.dev0/examples/advanced/hadrware-optimized-image.md +9 -0
- chromadb_client-0.5.3.dev0/examples/basic_functionality/auth.ipynb +347 -0
- chromadb_client-0.5.3.dev0/examples/basic_functionality/authz/README.md +151 -0
- chromadb_client-0.5.3.dev0/examples/basic_functionality/authz/authz.yaml +114 -0
- chromadb_client-0.5.3.dev0/examples/chat_with_your_documents/main.py +141 -0
- chromadb_client-0.5.3.dev0/examples/deployments/aws-terraform/startup.sh +51 -0
- chromadb_client-0.5.3.dev0/examples/deployments/common/startup.sh +51 -0
- chromadb_client-0.5.3.dev0/examples/deployments/google-cloud-compute/main.tf +0 -0
- chromadb_client-0.5.3.dev0/examples/deployments/google-cloud-compute/startup.sh +51 -0
- chromadb_client-0.5.3.dev0/examples/deployments/render-terraform/chroma.tf +85 -0
- chromadb_client-0.5.3.dev0/examples/deployments/systemd-service/chroma-cli.service +13 -0
- chromadb_client-0.5.3.dev0/examples/deployments/systemd-service/chroma-docker.service +16 -0
- chromadb_client-0.5.3.dev0/examples/deployments/systemd-service/systemd-service.md +91 -0
- chromadb_client-0.5.3.dev0/examples/gemini/load_data.py +108 -0
- chromadb_client-0.5.3.dev0/examples/gemini/main.py +145 -0
- chromadb_client-0.5.3.dev0/examples/observability/docker-compose.local-observability.yml +51 -0
- chromadb_client-0.5.3.dev0/examples/server_side_embeddings/huggingface/docker-compose.yml +47 -0
- chromadb_client-0.5.3.dev0/examples/use_with/ollama.md +40 -0
- chromadb_client-0.5.3.dev0/examples/use_with/roboflow/embeddings.ipynb +258 -0
- chromadb_client-0.5.3.dev0/go/Dockerfile +23 -0
- chromadb_client-0.5.3.dev0/go/Dockerfile.migration +13 -0
- chromadb_client-0.5.3.dev0/go/Makefile +31 -0
- chromadb_client-0.5.3.dev0/go/README.md +19 -0
- chromadb_client-0.5.3.dev0/go/atlas.hcl +24 -0
- chromadb_client-0.5.3.dev0/go/cmd/coordinator/cmd.go +68 -0
- chromadb_client-0.5.3.dev0/go/cmd/coordinator/main.go +36 -0
- chromadb_client-0.5.3.dev0/go/cmd/logservice/main.go +57 -0
- chromadb_client-0.5.3.dev0/go/database/log/atlas.hcl +6 -0
- chromadb_client-0.5.3.dev0/go/database/log/db/copyfrom.go +45 -0
- chromadb_client-0.5.3.dev0/go/database/log/db/db.go +33 -0
- chromadb_client-0.5.3.dev0/go/database/log/db/models.go +20 -0
- chromadb_client-0.5.3.dev0/go/database/log/db/queries.sql.go +170 -0
- chromadb_client-0.5.3.dev0/go/database/log/migrations/20240404181827_initial.sql +15 -0
- chromadb_client-0.5.3.dev0/go/database/log/migrations/atlas.sum +2 -0
- chromadb_client-0.5.3.dev0/go/database/log/queries/queries.sql +34 -0
- chromadb_client-0.5.3.dev0/go/database/log/schema/collection.sql +8 -0
- chromadb_client-0.5.3.dev0/go/database/log/schema/record_log.sql +7 -0
- chromadb_client-0.5.3.dev0/go/database/log/sqlc.yaml +10 -0
- chromadb_client-0.5.3.dev0/go/go.mod +162 -0
- chromadb_client-0.5.3.dev0/go/go.sum +937 -0
- chromadb_client-0.5.3.dev0/go/migrations/20240313233558.sql +105 -0
- chromadb_client-0.5.3.dev0/go/migrations/20240321194713.sql +14 -0
- chromadb_client-0.5.3.dev0/go/migrations/20240327075032.sql +4 -0
- chromadb_client-0.5.3.dev0/go/migrations/20240327172649.sql +4 -0
- chromadb_client-0.5.3.dev0/go/migrations/20240411201006.sql +6 -0
- chromadb_client-0.5.3.dev0/go/migrations/20240612201006.sql +3 -0
- chromadb_client-0.5.3.dev0/go/migrations/atlas.sum +7 -0
- chromadb_client-0.5.3.dev0/go/mocks/Catalog.go +526 -0
- chromadb_client-0.5.3.dev0/go/mocks/CollectionMetadataValueType.go +50 -0
- chromadb_client-0.5.3.dev0/go/mocks/Component.go +60 -0
- chromadb_client-0.5.3.dev0/go/mocks/DBTX.go +147 -0
- chromadb_client-0.5.3.dev0/go/mocks/GrpcProvider.go +58 -0
- chromadb_client-0.5.3.dev0/go/mocks/GrpcServer.go +60 -0
- chromadb_client-0.5.3.dev0/go/mocks/ICollectionDb.go +167 -0
- chromadb_client-0.5.3.dev0/go/mocks/ICollectionMetadataDb.go +91 -0
- chromadb_client-0.5.3.dev0/go/mocks/ICoordinator.go +490 -0
- chromadb_client-0.5.3.dev0/go/mocks/IDatabaseDb.go +123 -0
- chromadb_client-0.5.3.dev0/go/mocks/IMemberlistManager.go +60 -0
- chromadb_client-0.5.3.dev0/go/mocks/IMemberlistStore.go +84 -0
- chromadb_client-0.5.3.dev0/go/mocks/IMetaDomain.go +169 -0
- chromadb_client-0.5.3.dev0/go/mocks/INotificationDb.go +141 -0
- chromadb_client-0.5.3.dev0/go/mocks/ISegmentDb.go +151 -0
- chromadb_client-0.5.3.dev0/go/mocks/ISegmentMetadataDb.go +99 -0
- chromadb_client-0.5.3.dev0/go/mocks/ITenantDb.go +171 -0
- chromadb_client-0.5.3.dev0/go/mocks/ITransaction.go +46 -0
- chromadb_client-0.5.3.dev0/go/mocks/IWatcher.go +98 -0
- chromadb_client-0.5.3.dev0/go/mocks/LogServiceClient.go +180 -0
- chromadb_client-0.5.3.dev0/go/mocks/LogServiceServer.go +154 -0
- chromadb_client-0.5.3.dev0/go/mocks/NodeWatcherCallback.go +29 -0
- chromadb_client-0.5.3.dev0/go/mocks/NotificationProcessor.go +88 -0
- chromadb_client-0.5.3.dev0/go/mocks/NotificationStore.go +125 -0
- chromadb_client-0.5.3.dev0/go/mocks/Notifier.go +47 -0
- chromadb_client-0.5.3.dev0/go/mocks/SegmentMetadataValueType.go +29 -0
- chromadb_client-0.5.3.dev0/go/mocks/SysDBClient.go +625 -0
- chromadb_client-0.5.3.dev0/go/mocks/SysDBServer.go +516 -0
- chromadb_client-0.5.3.dev0/go/mocks/UnsafeLogServiceServer.go +29 -0
- chromadb_client-0.5.3.dev0/go/mocks/UnsafeSysDBServer.go +29 -0
- chromadb_client-0.5.3.dev0/go/mocks/UnsafeVectorReaderServer.go +29 -0
- chromadb_client-0.5.3.dev0/go/mocks/VectorReaderClient.go +105 -0
- chromadb_client-0.5.3.dev0/go/mocks/VectorReaderServer.go +94 -0
- chromadb_client-0.5.3.dev0/go/mocks/isUpdateCollectionRequest_MetadataUpdate.go +29 -0
- chromadb_client-0.5.3.dev0/go/mocks/isUpdateMetadataValue_Value.go +29 -0
- chromadb_client-0.5.3.dev0/go/mocks/isUpdateSegmentRequest_CollectionUpdate.go +29 -0
- chromadb_client-0.5.3.dev0/go/mocks/isUpdateSegmentRequest_MetadataUpdate.go +29 -0
- chromadb_client-0.5.3.dev0/go/pkg/common/errors.go +39 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/apis.go +170 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/apis_test.go +865 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/coordinator.go +56 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/collection_service.go +281 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/collection_service_test.go +334 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/proto_model_convert.go +247 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/proto_model_convert_test.go +197 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/segment_service.go +144 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/server.go +175 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/tenant_database_service.go +123 -0
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/tenant_database_service_test.go +107 -0
- chromadb_client-0.5.3.dev0/go/pkg/grpcutils/response.go +45 -0
- chromadb_client-0.5.3.dev0/go/pkg/grpcutils/service.go +112 -0
- chromadb_client-0.5.3.dev0/go/pkg/log/configuration/config.go +25 -0
- chromadb_client-0.5.3.dev0/go/pkg/log/purging/main.go +108 -0
- chromadb_client-0.5.3.dev0/go/pkg/log/repository/log.go +104 -0
- chromadb_client-0.5.3.dev0/go/pkg/log/server/property_test.go +190 -0
- chromadb_client-0.5.3.dev0/go/pkg/log/server/server.go +111 -0
- chromadb_client-0.5.3.dev0/go/pkg/memberlist_manager/memberlist_manager.go +171 -0
- chromadb_client-0.5.3.dev0/go/pkg/memberlist_manager/memberlist_manager_test.go +257 -0
- chromadb_client-0.5.3.dev0/go/pkg/memberlist_manager/memberlist_store.go +111 -0
- chromadb_client-0.5.3.dev0/go/pkg/memberlist_manager/node_watcher.go +177 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/catalog.go +34 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/model_db_convert.go +189 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/model_db_convert_test.go +152 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/table_catalog.go +650 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/table_catalog_test.go +136 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/collection.go +200 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/collection_metadata.go +33 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/collection_test.go +156 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/common.go +42 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/database.go +86 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/notification.go +42 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/segment.go +216 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/segment_metadata.go +35 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/segment_test.go +150 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/tenant.go +98 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/tenant_test.go +102 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/test_utils.go +186 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbcore/core.go +236 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/collection.go +41 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/collection_metadata.go +30 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/common.go +23 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/database.go +29 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/mocks/ICollectionDb.go +167 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/mocks/ICollectionMetadataDb.go +91 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/mocks/IDatabaseDb.go +107 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/mocks/IMetaDomain.go +141 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/mocks/INotificationDb.go +121 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/mocks/ISegmentDb.go +111 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/mocks/ISegmentMetadataDb.go +83 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/mocks/ITenantDb.go +107 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/segment.go +50 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/segment_metadata.go +31 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/tenant.go +30 -0
- chromadb_client-0.5.3.dev0/go/pkg/metastore/mocks/Catalog.go +526 -0
- chromadb_client-0.5.3.dev0/go/pkg/model/collection.go +70 -0
- chromadb_client-0.5.3.dev0/go/pkg/model/collection_metadata.go +105 -0
- chromadb_client-0.5.3.dev0/go/pkg/model/database.go +24 -0
- chromadb_client-0.5.3.dev0/go/pkg/model/segment.go +64 -0
- chromadb_client-0.5.3.dev0/go/pkg/model/segment_metadata.go +63 -0
- chromadb_client-0.5.3.dev0/go/pkg/model/tenant.go +22 -0
- chromadb_client-0.5.3.dev0/go/pkg/notification/database_notification_store.go +95 -0
- chromadb_client-0.5.3.dev0/go/pkg/notification/database_notification_store_test.go +192 -0
- chromadb_client-0.5.3.dev0/go/pkg/notification/memory_notification_store.go +65 -0
- chromadb_client-0.5.3.dev0/go/pkg/notification/memory_notification_store_test.go +145 -0
- chromadb_client-0.5.3.dev0/go/pkg/notification/notification_processor.go +138 -0
- chromadb_client-0.5.3.dev0/go/pkg/notification/notification_processor_test.go +139 -0
- chromadb_client-0.5.3.dev0/go/pkg/notification/notification_store.go +14 -0
- chromadb_client-0.5.3.dev0/go/pkg/notification/notifier.go +94 -0
- chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/chroma.pb.go +3819 -0
- chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/chroma_grpc.pb.go +277 -0
- chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/coordinator.pb.go +2919 -0
- chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/coordinator_grpc.pb.go +681 -0
- chromadb_client-0.5.3.dev0/go/pkg/proto/logservicepb/logservice.pb.go +830 -0
- chromadb_client-0.5.3.dev0/go/pkg/proto/logservicepb/logservice_grpc.pb.go +224 -0
- chromadb_client-0.5.3.dev0/go/script/migrate_up_test.sh +5 -0
- chromadb_client-0.5.3.dev0/go/shared/libs/db_utils.go +12 -0
- chromadb_client-0.5.3.dev0/go/shared/libs/test_utils.go +55 -0
- chromadb_client-0.5.3.dev0/go/shared/otel/main.go +148 -0
- chromadb_client-0.5.3.dev0/idl/chromadb/proto/chroma.proto +320 -0
- chromadb_client-0.5.3.dev0/idl/chromadb/proto/coordinator.proto +210 -0
- chromadb_client-0.5.3.dev0/idl/chromadb/proto/logservice.proto +64 -0
- chromadb_client-0.5.3.dev0/idl/makefile +23 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/.helmignore +23 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/Chart.yaml +30 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/crds/memberlist_crd.yaml +36 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/compaction-service-memberlist-cr.yaml +79 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/compaction-service.yaml +99 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/frontend-service.yaml +71 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/log-migration.yaml +29 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/logservice.yaml +85 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/namespace.yaml +8 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/pod-watcher-role.yaml +13 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/query-service-memberlist-cr.yaml +79 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/query-service.yaml +118 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/sysdb-migration.yaml +32 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/sysdb-service.yaml +76 -0
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/values.yaml +83 -0
- chromadb_client-0.5.3.dev0/k8s/test/README.md +1 -0
- chromadb_client-0.5.3.dev0/k8s/test/jaeger-service.yaml +13 -0
- chromadb_client-0.5.3.dev0/k8s/test/jaeger.yaml +47 -0
- chromadb_client-0.5.3.dev0/k8s/test/minio.yaml +68 -0
- chromadb_client-0.5.3.dev0/k8s/test/postgres/Dockerfile +2 -0
- chromadb_client-0.5.3.dev0/k8s/test/postgres/create-multiple-postgresql-databases.sh +22 -0
- chromadb_client-0.5.3.dev0/k8s/test/postgres-service.yaml +13 -0
- chromadb_client-0.5.3.dev0/k8s/test/postgres.yaml +43 -0
- chromadb_client-0.5.3.dev0/pull_request_template.md +15 -0
- chromadb_client-0.5.3.dev0/pyproject.toml +52 -0
- chromadb_client-0.5.3.dev0/requirements.txt +28 -0
- chromadb_client-0.5.3.dev0/requirements_dev.txt +14 -0
- chromadb_client-0.5.3.dev0/rust/worker/.dockerignore +3 -0
- chromadb_client-0.5.3.dev0/rust/worker/Cargo.toml +65 -0
- chromadb_client-0.5.3.dev0/rust/worker/Dockerfile +61 -0
- chromadb_client-0.5.3.dev0/rust/worker/README.md +15 -0
- chromadb_client-0.5.3.dev0/rust/worker/bindings.cpp +268 -0
- chromadb_client-0.5.3.dev0/rust/worker/build.rs +40 -0
- chromadb_client-0.5.3.dev0/rust/worker/chroma_config.yaml +68 -0
- chromadb_client-0.5.3.dev0/rust/worker/proptest-regressions/blockstore/arrow/blockfile.txt +8 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/assignment/assignment_policy.rs +82 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/assignment/mod.rs +17 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/benches/distance_metrics.rs +22 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/bin/compaction_service.rs +6 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/bin/query_service.rs +6 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/bool_key.rs +40 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/data_record_value.rs +178 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/delta.rs +400 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/delta_storage.rs +924 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/f32_key.rs +41 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/int32array_value.rs +85 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/mod.rs +14 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/roaring_bitmap_value.rs +84 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/str_key.rs +44 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/str_value.rs +88 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/types.rs +398 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/u32_key.rs +40 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/u32_value.rs +73 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/blockfile.rs +1170 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/concurrency_test.rs +68 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/flusher.rs +52 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/mod.rs +7 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/provider.rs +390 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/sparse_index.rs +561 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/types.rs +48 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/key.rs +150 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/memory/mod.rs +3 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/memory/provider.rs +131 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/memory/reader_writer.rs +907 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/memory/storage.rs +1166 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/mod.rs +8 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/positional_posting_list_value.rs +271 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/provider.rs +105 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/types.rs +355 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/compactor/compaction_manager.rs +508 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/compactor/config.rs +8 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/compactor/mod.rs +8 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/compactor/scheduler.rs +483 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/compactor/scheduler_policy.rs +95 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/compactor/types.rs +12 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/config.rs +516 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/distance/distance_avx.rs +345 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/distance/distance_neon.rs +296 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/distance/distance_sse.rs +342 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/distance/mod.rs +9 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/distance/types.rs +421 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/errors.rs +48 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/config.rs +8 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/data/data_chunk.rs +169 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/data/mod.rs +1 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/dispatcher.rs +327 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/mod.rs +7 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operator.rs +106 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/brute_force_knn.rs +547 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/count_records.rs +434 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/flush_s3.rs +140 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/get_vectors_operator.rs +231 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/hnsw_knn.rs +198 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/merge_knn_results.rs +249 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/merge_metadata_results.rs +1015 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/metadata_filtering.rs +1347 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/mod.rs +13 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/normalize_vectors.rs +85 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/partition.rs +224 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/pull_log.rs +253 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/register.rs +282 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/write_segments.rs +188 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/common.rs +150 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/compact.rs +669 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/get_vectors.rs +322 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/hnsw.rs +793 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/metadata.rs +843 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/mod.rs +9 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/worker_thread.rs +62 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/index/fulltext/mod.rs +2 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/index/fulltext/tokenizer.rs +87 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/index/fulltext/types.rs +1234 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/index/hnsw.rs +784 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/index/hnsw_provider.rs +502 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/index/metadata/mod.rs +3 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/index/metadata/types.rs +1647 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/index/mod.rs +11 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/index/types.rs +94 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/lib.rs +168 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/log/config.rs +12 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/log/log.rs +430 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/log/mod.rs +14 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/memberlist/config.rs +29 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/memberlist/memberlist_provider.rs +277 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/segment/distributed_hnsw_segment.rs +382 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/segment/metadata_segment.rs +1937 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/segment/mod.rs +7 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/segment/record_segment.rs +796 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/segment/types.rs +1094 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/server.rs +524 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/storage/config.rs +43 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/storage/local.rs +79 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/storage/mod.rs +115 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/storage/s3.rs +317 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/sysdb/mod.rs +17 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/sysdb/sysdb.rs +440 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/sysdb/test_sysdb.rs +224 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/system/executor.rs +100 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/system/mod.rs +10 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/system/scheduler.rs +215 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/system/sender.rs +202 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/system/system.rs +126 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/system/types.rs +213 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/tracing/mod.rs +2 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/tracing/opentelemetry_config.rs +52 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/tracing/util.rs +110 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/collection.rs +90 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/flush.rs +92 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/metadata.rs +947 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/mod.rs +23 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/operation.rs +73 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/record.rs +388 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/scalar_encoding.rs +66 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/segment.rs +156 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/segment_scope.rs +84 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/tenant.rs +17 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/types/types.rs +33 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/utils/mod.rs +3 -0
- chromadb_client-0.5.3.dev0/rust/worker/src/utils/vec.rs +143 -0
- chromadb_client-0.5.3.dev0/rust/worker/test.arrow +0 -0
- chromadb-client-0.4.24.dev0/.gitattributes +0 -1
- chromadb-client-0.4.24.dev0/.github/workflows/chroma-client-integration-test.yml +0 -31
- chromadb-client-0.4.24.dev0/.github/workflows/chroma-cluster-test.yml +0 -42
- chromadb-client-0.4.24.dev0/.github/workflows/chroma-coordinator-test.yaml +0 -40
- chromadb-client-0.4.24.dev0/.github/workflows/chroma-integration-test.yml +0 -40
- chromadb-client-0.4.24.dev0/.github/workflows/chroma-js-release.yml +0 -42
- chromadb-client-0.4.24.dev0/.github/workflows/chroma-release-python-client.yml +0 -58
- chromadb-client-0.4.24.dev0/.github/workflows/chroma-release.yml +0 -179
- chromadb-client-0.4.24.dev0/.github/workflows/chroma-test.yml +0 -65
- chromadb-client-0.4.24.dev0/.github/workflows/chroma-worker-test.yml +0 -36
- chromadb-client-0.4.24.dev0/.github/workflows/pr-review-checklist.yml +0 -37
- chromadb-client-0.4.24.dev0/.github/workflows/python-vuln.yaml +0 -28
- chromadb-client-0.4.24.dev0/.gitignore +0 -34
- chromadb-client-0.4.24.dev0/.pre-commit-config.yaml +0 -36
- chromadb-client-0.4.24.dev0/.vscode/settings.json +0 -131
- chromadb-client-0.4.24.dev0/Cargo.lock +0 -4868
- chromadb-client-0.4.24.dev0/Dockerfile +0 -39
- chromadb-client-0.4.24.dev0/PKG-INFO +0 -66
- chromadb-client-0.4.24.dev0/Tiltfile +0 -41
- chromadb-client-0.4.24.dev0/bin/cluster-test.sh +0 -65
- chromadb-client-0.4.24.dev0/bin/integration-test +0 -75
- chromadb-client-0.4.24.dev0/bin/reset.sh +0 -13
- chromadb-client-0.4.24.dev0/chromadb/__init__.py +0 -283
- chromadb-client-0.4.24.dev0/chromadb/api/__init__.py +0 -596
- chromadb-client-0.4.24.dev0/chromadb/api/client.py +0 -496
- chromadb-client-0.4.24.dev0/chromadb/api/fastapi.py +0 -654
- chromadb-client-0.4.24.dev0/chromadb/api/models/Collection.py +0 -633
- chromadb-client-0.4.24.dev0/chromadb/api/segment.py +0 -918
- chromadb-client-0.4.24.dev0/chromadb/api/types.py +0 -513
- chromadb-client-0.4.24.dev0/chromadb/auth/__init__.py +0 -449
- chromadb-client-0.4.24.dev0/chromadb/auth/authz/__init__.py +0 -110
- chromadb-client-0.4.24.dev0/chromadb/auth/basic/__init__.py +0 -110
- chromadb-client-0.4.24.dev0/chromadb/auth/fastapi.py +0 -330
- chromadb-client-0.4.24.dev0/chromadb/auth/fastapi_utils.py +0 -53
- chromadb-client-0.4.24.dev0/chromadb/auth/providers.py +0 -197
- chromadb-client-0.4.24.dev0/chromadb/auth/registry.py +0 -123
- chromadb-client-0.4.24.dev0/chromadb/auth/token/__init__.py +0 -291
- chromadb-client-0.4.24.dev0/chromadb/cli/cli.py +0 -102
- chromadb-client-0.4.24.dev0/chromadb/config.py +0 -435
- chromadb-client-0.4.24.dev0/chromadb/db/impl/grpc/client.py +0 -310
- chromadb-client-0.4.24.dev0/chromadb/db/impl/grpc/server.py +0 -452
- chromadb-client-0.4.24.dev0/chromadb/db/impl/sqlite.py +0 -248
- chromadb-client-0.4.24.dev0/chromadb/db/migrations.py +0 -270
- chromadb-client-0.4.24.dev0/chromadb/db/mixins/embeddings_queue.py +0 -379
- chromadb-client-0.4.24.dev0/chromadb/db/mixins/sysdb.py +0 -747
- chromadb-client-0.4.24.dev0/chromadb/db/system.py +0 -138
- chromadb-client-0.4.24.dev0/chromadb/ingest/__init__.py +0 -134
- chromadb-client-0.4.24.dev0/chromadb/ingest/impl/pulsar.py +0 -317
- chromadb-client-0.4.24.dev0/chromadb/ingest/impl/pulsar_admin.py +0 -81
- chromadb-client-0.4.24.dev0/chromadb/ingest/impl/simple_policy.py +0 -61
- chromadb-client-0.4.24.dev0/chromadb/ingest/impl/utils.py +0 -20
- chromadb-client-0.4.24.dev0/chromadb/proto/chroma_pb2.py +0 -70
- chromadb-client-0.4.24.dev0/chromadb/proto/chroma_pb2.pyi +0 -205
- chromadb-client-0.4.24.dev0/chromadb/proto/chroma_pb2_grpc.py +0 -124
- chromadb-client-0.4.24.dev0/chromadb/proto/convert.py +0 -297
- chromadb-client-0.4.24.dev0/chromadb/proto/coordinator_pb2.py +0 -64
- chromadb-client-0.4.24.dev0/chromadb/proto/coordinator_pb2.pyi +0 -194
- chromadb-client-0.4.24.dev0/chromadb/proto/coordinator_pb2_grpc.py +0 -621
- chromadb-client-0.4.24.dev0/chromadb/proto/logservice_pb2.py +0 -31
- chromadb-client-0.4.24.dev0/chromadb/proto/logservice_pb2.pyi +0 -4
- chromadb-client-0.4.24.dev0/chromadb/proto/logservice_pb2_grpc.py +0 -31
- chromadb-client-0.4.24.dev0/chromadb/quota/__init__.py +0 -90
- chromadb-client-0.4.24.dev0/chromadb/quota/test_provider.py +0 -14
- chromadb-client-0.4.24.dev0/chromadb/segment/__init__.py +0 -128
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/distributed/segment_directory.py +0 -231
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/distributed/server.py +0 -187
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/manager/cache/cache.py +0 -104
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/manager/distributed.py +0 -178
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/manager/local.py +0 -242
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/metadata/sqlite.py +0 -739
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/vector/batch.py +0 -106
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/vector/brute_force_index.py +0 -153
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/vector/grpc_segment.py +0 -104
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/vector/local_hnsw.py +0 -327
- chromadb-client-0.4.24.dev0/chromadb/segment/impl/vector/local_persistent_hnsw.py +0 -458
- chromadb-client-0.4.24.dev0/chromadb/server/fastapi/__init__.py +0 -630
- chromadb-client-0.4.24.dev0/chromadb/server/fastapi/utils.py +0 -17
- chromadb-client-0.4.24.dev0/chromadb/telemetry/opentelemetry/__init__.py +0 -160
- chromadb-client-0.4.24.dev0/chromadb/telemetry/product/events.py +0 -239
- chromadb-client-0.4.24.dev0/chromadb/test/auth/test_basic_auth.py +0 -12
- chromadb-client-0.4.24.dev0/chromadb/test/auth/test_simple_rbac_authz.py +0 -325
- chromadb-client-0.4.24.dev0/chromadb/test/auth/test_token_auth.py +0 -138
- chromadb-client-0.4.24.dev0/chromadb/test/client/test_cloud_client.py +0 -104
- chromadb-client-0.4.24.dev0/chromadb/test/client/test_database_tenant.py +0 -168
- chromadb-client-0.4.24.dev0/chromadb/test/client/test_multiple_clients_concurrency.py +0 -47
- chromadb-client-0.4.24.dev0/chromadb/test/conftest.py +0 -578
- chromadb-client-0.4.24.dev0/chromadb/test/db/test_hash.py +0 -117
- chromadb-client-0.4.24.dev0/chromadb/test/db/test_system.py +0 -793
- chromadb-client-0.4.24.dev0/chromadb/test/ingest/test_producer_consumer.py +0 -404
- chromadb-client-0.4.24.dev0/chromadb/test/openssl.cnf +0 -12
- chromadb-client-0.4.24.dev0/chromadb/test/property/invariants.py +0 -294
- chromadb-client-0.4.24.dev0/chromadb/test/property/strategies.py +0 -626
- chromadb-client-0.4.24.dev0/chromadb/test/property/test_add.py +0 -185
- chromadb-client-0.4.24.dev0/chromadb/test/property/test_collections.py +0 -257
- chromadb-client-0.4.24.dev0/chromadb/test/property/test_collections_with_database_tenant.py +0 -102
- chromadb-client-0.4.24.dev0/chromadb/test/property/test_embeddings.py +0 -464
- chromadb-client-0.4.24.dev0/chromadb/test/property/test_filtering.py +0 -394
- chromadb-client-0.4.24.dev0/chromadb/test/property/test_persist.py +0 -227
- chromadb-client-0.4.24.dev0/chromadb/test/property/test_segment_manager.py +0 -128
- chromadb-client-0.4.24.dev0/chromadb/test/quota/test_static_quota_enforcer.py +0 -78
- chromadb-client-0.4.24.dev0/chromadb/test/segment/distributed/test_memberlist_provider.py +0 -112
- chromadb-client-0.4.24.dev0/chromadb/test/segment/test_metadata.py +0 -688
- chromadb-client-0.4.24.dev0/chromadb/test/segment/test_vector.py +0 -676
- chromadb-client-0.4.24.dev0/chromadb/test/test_api.py +0 -1501
- chromadb-client-0.4.24.dev0/chromadb/test/test_client.py +0 -72
- chromadb-client-0.4.24.dev0/chromadb/test/utils/test_messagid.py +0 -93
- chromadb-client-0.4.24.dev0/chromadb/types.py +0 -179
- chromadb-client-0.4.24.dev0/chromadb/utils/batch_utils.py +0 -34
- chromadb-client-0.4.24.dev0/chromadb/utils/data_loaders.py +0 -24
- chromadb-client-0.4.24.dev0/chromadb/utils/directory.py +0 -21
- chromadb-client-0.4.24.dev0/chromadb/utils/embedding_functions.py +0 -827
- chromadb-client-0.4.24.dev0/chromadb/utils/messageid.py +0 -80
- chromadb-client-0.4.24.dev0/chromadb_client.egg-info/PKG-INFO +0 -66
- chromadb-client-0.4.24.dev0/chromadb_client.egg-info/SOURCES.txt +0 -527
- chromadb-client-0.4.24.dev0/chromadb_client.egg-info/requires.txt +0 -12
- chromadb-client-0.4.24.dev0/clients/js/DEVELOP.md +0 -67
- chromadb-client-0.4.24.dev0/clients/js/README.md +0 -43
- chromadb-client-0.4.24.dev0/clients/js/examples/browser/README.md +0 -16
- chromadb-client-0.4.24.dev0/clients/js/examples/browser/app.ts +0 -53
- chromadb-client-0.4.24.dev0/clients/js/examples/browser/index.html +0 -35
- chromadb-client-0.4.24.dev0/clients/js/examples/browser/package.json +0 -19
- chromadb-client-0.4.24.dev0/clients/js/examples/browser/yarn.lock +0 -1476
- chromadb-client-0.4.24.dev0/clients/js/examples/node/app.js +0 -52
- chromadb-client-0.4.24.dev0/clients/js/package.json +0 -94
- chromadb-client-0.4.24.dev0/clients/js/src/AdminClient.ts +0 -272
- chromadb-client-0.4.24.dev0/clients/js/src/ChromaClient.ts +0 -327
- chromadb-client-0.4.24.dev0/clients/js/src/CloudClient.ts +0 -46
- chromadb-client-0.4.24.dev0/clients/js/src/Collection.ts +0 -540
- chromadb-client-0.4.24.dev0/clients/js/src/auth.ts +0 -321
- chromadb-client-0.4.24.dev0/clients/js/src/embeddings/CohereEmbeddingFunction.ts +0 -122
- chromadb-client-0.4.24.dev0/clients/js/src/embeddings/DefaultEmbeddingFunction.ts +0 -99
- chromadb-client-0.4.24.dev0/clients/js/src/embeddings/GoogleGeminiEmbeddingFunction.ts +0 -69
- chromadb-client-0.4.24.dev0/clients/js/src/embeddings/HuggingFaceEmbeddingServerFunction.ts +0 -31
- chromadb-client-0.4.24.dev0/clients/js/src/embeddings/IEmbeddingFunction.ts +0 -3
- chromadb-client-0.4.24.dev0/clients/js/src/embeddings/JinaEmbeddingFunction.ts +0 -46
- chromadb-client-0.4.24.dev0/clients/js/src/embeddings/OpenAIEmbeddingFunction.ts +0 -151
- chromadb-client-0.4.24.dev0/clients/js/src/embeddings/TransformersEmbeddingFunction.ts +0 -99
- chromadb-client-0.4.24.dev0/clients/js/src/generated/README.md +0 -38
- chromadb-client-0.4.24.dev0/clients/js/src/generated/api.ts +0 -1748
- chromadb-client-0.4.24.dev0/clients/js/src/generated/configuration.ts +0 -66
- chromadb-client-0.4.24.dev0/clients/js/src/generated/models.ts +0 -305
- chromadb-client-0.4.24.dev0/clients/js/src/generated/runtime.ts +0 -77
- chromadb-client-0.4.24.dev0/clients/js/src/index.ts +0 -45
- chromadb-client-0.4.24.dev0/clients/js/src/types.ts +0 -156
- chromadb-client-0.4.24.dev0/clients/js/src/utils.ts +0 -99
- chromadb-client-0.4.24.dev0/clients/js/test/add.collections.test.ts +0 -116
- chromadb-client-0.4.24.dev0/clients/js/test/admin.test.ts +0 -50
- chromadb-client-0.4.24.dev0/clients/js/test/auth.basic.test.ts +0 -33
- chromadb-client-0.4.24.dev0/clients/js/test/auth.token.test.ts +0 -70
- chromadb-client-0.4.24.dev0/clients/js/test/client.test.ts +0 -195
- chromadb-client-0.4.24.dev0/clients/js/test/collection.client.test.ts +0 -85
- chromadb-client-0.4.24.dev0/clients/js/test/collection.test.ts +0 -69
- chromadb-client-0.4.24.dev0/clients/js/test/delete.collection.test.ts +0 -19
- chromadb-client-0.4.24.dev0/clients/js/test/get.collection.test.ts +0 -64
- chromadb-client-0.4.24.dev0/clients/js/test/initClientWithAuth.ts +0 -16
- chromadb-client-0.4.24.dev0/clients/js/test/peek.collection.test.ts +0 -14
- chromadb-client-0.4.24.dev0/clients/js/test/query.collection.test.ts +0 -156
- chromadb-client-0.4.24.dev0/clients/js/test/update.collection.test.ts +0 -67
- chromadb-client-0.4.24.dev0/clients/js/test/upsert.collections.test.ts +0 -27
- chromadb-client-0.4.24.dev0/clients/js/tsconfig.json +0 -18
- chromadb-client-0.4.24.dev0/clients/js/tsup.config.ts +0 -32
- chromadb-client-0.4.24.dev0/clients/python/integration-test.sh +0 -31
- chromadb-client-0.4.24.dev0/clients/python/pyproject.toml +0 -52
- chromadb-client-0.4.24.dev0/clients/python/requirements.txt +0 -12
- chromadb-client-0.4.24.dev0/docker-compose.test-auth.yml +0 -31
- chromadb-client-0.4.24.dev0/docker-compose.test.yml +0 -26
- chromadb-client-0.4.24.dev0/docker-compose.yml +0 -39
- chromadb-client-0.4.24.dev0/docs/CIP_2_Auth_Providers_Proposal.md +0 -190
- chromadb-client-0.4.24.dev0/examples/advanced/hadrware-optimized-image.md +0 -10
- chromadb-client-0.4.24.dev0/examples/basic_functionality/authz/README.md +0 -155
- chromadb-client-0.4.24.dev0/examples/basic_functionality/authz/authz.ipynb +0 -95
- chromadb-client-0.4.24.dev0/examples/basic_functionality/authz/authz.yaml +0 -113
- chromadb-client-0.4.24.dev0/examples/basic_functionality/client_auth.ipynb +0 -394
- chromadb-client-0.4.24.dev0/examples/chat_with_your_documents/main.py +0 -142
- chromadb-client-0.4.24.dev0/examples/deployments/aws-terraform/startup.sh +0 -53
- chromadb-client-0.4.24.dev0/examples/deployments/common/startup.sh +0 -53
- chromadb-client-0.4.24.dev0/examples/deployments/google-cloud-compute/startup.sh +0 -53
- chromadb-client-0.4.24.dev0/examples/deployments/render-terraform/chroma.tf +0 -88
- chromadb-client-0.4.24.dev0/examples/gemini/load_data.py +0 -106
- chromadb-client-0.4.24.dev0/examples/gemini/main.py +0 -143
- chromadb-client-0.4.24.dev0/examples/observability/docker-compose.local-observability.yml +0 -52
- chromadb-client-0.4.24.dev0/examples/server_side_embeddings/huggingface/docker-compose.yml +0 -48
- chromadb-client-0.4.24.dev0/go/coordinator/Dockerfile +0 -33
- chromadb-client-0.4.24.dev0/go/coordinator/Dockerfile.migration +0 -4
- chromadb-client-0.4.24.dev0/go/coordinator/Makefile +0 -17
- chromadb-client-0.4.24.dev0/go/coordinator/atlas.hcl +0 -24
- chromadb-client-0.4.24.dev0/go/coordinator/cmd/coordinator/cmd.go +0 -65
- chromadb-client-0.4.24.dev0/go/coordinator/cmd/coordinator/main.go +0 -36
- chromadb-client-0.4.24.dev0/go/coordinator/cmd/logservice/cmd.go +0 -46
- chromadb-client-0.4.24.dev0/go/coordinator/cmd/logservice/main.go +0 -36
- chromadb-client-0.4.24.dev0/go/coordinator/go.mod +0 -113
- chromadb-client-0.4.24.dev0/go/coordinator/go.sum +0 -426
- chromadb-client-0.4.24.dev0/go/coordinator/internal/common/errors.go +0 -38
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/apis.go +0 -187
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/apis_test.go +0 -965
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/assignment_policy.go +0 -77
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/coordinator.go +0 -76
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/grpc/collection_service.go +0 -224
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/grpc/collection_service_test.go +0 -125
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/grpc/proto_model_convert.go +0 -227
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/grpc/proto_model_convert_test.go +0 -201
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/grpc/segment_service.go +0 -151
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/grpc/server.go +0 -218
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/grpc/tenant_database_service.go +0 -91
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/meta.go +0 -441
- chromadb-client-0.4.24.dev0/go/coordinator/internal/coordinator/meta_test.go +0 -94
- chromadb-client-0.4.24.dev0/go/coordinator/internal/grpcutils/service.go +0 -102
- chromadb-client-0.4.24.dev0/go/coordinator/internal/logservice/apis.go +0 -11
- chromadb-client-0.4.24.dev0/go/coordinator/internal/logservice/grpc/server.go +0 -104
- chromadb-client-0.4.24.dev0/go/coordinator/internal/logservice/recordlog.go +0 -33
- chromadb-client-0.4.24.dev0/go/coordinator/internal/memberlist_manager/memberlist_manager.go +0 -119
- chromadb-client-0.4.24.dev0/go/coordinator/internal/memberlist_manager/memberlist_manager_test.go +0 -209
- chromadb-client-0.4.24.dev0/go/coordinator/internal/memberlist_manager/memberlist_store.go +0 -93
- chromadb-client-0.4.24.dev0/go/coordinator/internal/memberlist_manager/node_watcher.go +0 -188
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/catalog.go +0 -29
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/coordinator/memory_catalog.go +0 -370
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/coordinator/memory_catalog_test.go +0 -138
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/coordinator/model_db_convert.go +0 -181
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/coordinator/model_db_convert_test.go +0 -158
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/coordinator/table_catalog.go +0 -579
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/coordinator/table_catalog_test.go +0 -136
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/collection.go +0 -160
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/collection_metadata.go +0 -26
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/collection_test.go +0 -95
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/common.go +0 -46
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/database.go +0 -46
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/notification.go +0 -42
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/record_log.go +0 -9
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/segment.go +0 -187
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/segment_metadata.go +0 -35
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/segment_test.go +0 -89
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dao/tenant.go +0 -38
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbcore/core.go +0 -171
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/collection.go +0 -39
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/collection_metadata.go +0 -29
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/common.go +0 -24
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/database.go +0 -29
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/mocks/ICollectionDb.go +0 -109
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/mocks/ICollectionMetadataDb.go +0 -69
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/mocks/IDatabaseDb.go +0 -107
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/mocks/IMetaDomain.go +0 -156
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/mocks/INotificationDb.go +0 -121
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/mocks/ISegmentDb.go +0 -111
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/mocks/ISegmentMetadataDb.go +0 -83
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/mocks/ITenantDb.go +0 -107
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/record_log.go +0 -16
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/segment.go +0 -49
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/segment_metadata.go +0 -30
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/db/dbmodel/tenant.go +0 -27
- chromadb-client-0.4.24.dev0/go/coordinator/internal/metastore/mocks/Catalog.go +0 -204
- chromadb-client-0.4.24.dev0/go/coordinator/internal/model/collection.go +0 -61
- chromadb-client-0.4.24.dev0/go/coordinator/internal/model/collection_metadata.go +0 -92
- chromadb-client-0.4.24.dev0/go/coordinator/internal/model/database.go +0 -24
- chromadb-client-0.4.24.dev0/go/coordinator/internal/model/segment.go +0 -66
- chromadb-client-0.4.24.dev0/go/coordinator/internal/model/segment_metadata.go +0 -57
- chromadb-client-0.4.24.dev0/go/coordinator/internal/model/tenant.go +0 -17
- chromadb-client-0.4.24.dev0/go/coordinator/internal/notification/database_notification_store.go +0 -95
- chromadb-client-0.4.24.dev0/go/coordinator/internal/notification/database_notification_store_test.go +0 -192
- chromadb-client-0.4.24.dev0/go/coordinator/internal/notification/memory_notification_store.go +0 -65
- chromadb-client-0.4.24.dev0/go/coordinator/internal/notification/memory_notification_store_test.go +0 -145
- chromadb-client-0.4.24.dev0/go/coordinator/internal/notification/notification_processor.go +0 -138
- chromadb-client-0.4.24.dev0/go/coordinator/internal/notification/notification_processor_test.go +0 -139
- chromadb-client-0.4.24.dev0/go/coordinator/internal/notification/notification_store.go +0 -14
- chromadb-client-0.4.24.dev0/go/coordinator/internal/notification/notifier.go +0 -94
- chromadb-client-0.4.24.dev0/go/coordinator/internal/proto/coordinatorpb/chroma.pb.go +0 -1725
- chromadb-client-0.4.24.dev0/go/coordinator/internal/proto/coordinatorpb/chroma_grpc.pb.go +0 -141
- chromadb-client-0.4.24.dev0/go/coordinator/internal/proto/coordinatorpb/coordinator.pb.go +0 -1865
- chromadb-client-0.4.24.dev0/go/coordinator/internal/proto/coordinatorpb/coordinator_grpc.pb.go +0 -538
- chromadb-client-0.4.24.dev0/go/coordinator/internal/proto/logservicepb/logservice.pb.go +0 -67
- chromadb-client-0.4.24.dev0/go/coordinator/internal/proto/logservicepb/logservice_grpc.pb.go +0 -65
- chromadb-client-0.4.24.dev0/go/coordinator/internal/utils/pulsar_admin.go +0 -44
- chromadb-client-0.4.24.dev0/go/coordinator/migrations/20240216211350.sql +0 -90
- chromadb-client-0.4.24.dev0/go/coordinator/migrations/atlas.sum +0 -2
- chromadb-client-0.4.24.dev0/idl/chromadb/proto/chroma.proto +0 -136
- chromadb-client-0.4.24.dev0/idl/chromadb/proto/coordinator.proto +0 -144
- chromadb-client-0.4.24.dev0/idl/chromadb/proto/logservice.proto +0 -8
- chromadb-client-0.4.24.dev0/idl/makefile +0 -23
- chromadb-client-0.4.24.dev0/k8s/cr/worker_memberlist_cr.yaml +0 -48
- chromadb-client-0.4.24.dev0/k8s/crd/memberlist_crd.yaml +0 -36
- chromadb-client-0.4.24.dev0/k8s/deployment/kubernetes.yaml +0 -335
- chromadb-client-0.4.24.dev0/k8s/deployment/segment-server.yaml +0 -87
- chromadb-client-0.4.24.dev0/k8s/dev/coordinator.yaml +0 -42
- chromadb-client-0.4.24.dev0/k8s/dev/logservice.yaml +0 -39
- chromadb-client-0.4.24.dev0/k8s/dev/migration.yaml +0 -22
- chromadb-client-0.4.24.dev0/k8s/dev/postgres.yaml +0 -41
- chromadb-client-0.4.24.dev0/k8s/dev/pulsar.yaml +0 -45
- chromadb-client-0.4.24.dev0/k8s/dev/server.yaml +0 -52
- chromadb-client-0.4.24.dev0/k8s/dev/setup.yaml +0 -100
- chromadb-client-0.4.24.dev0/k8s/dev/worker.yaml +0 -40
- chromadb-client-0.4.24.dev0/k8s/test/coordinator_service.yaml +0 -13
- chromadb-client-0.4.24.dev0/k8s/test/minio.yaml +0 -52
- chromadb-client-0.4.24.dev0/k8s/test/pulsar_service.yaml +0 -20
- chromadb-client-0.4.24.dev0/k8s/test/segment_server_service.yml +0 -13
- chromadb-client-0.4.24.dev0/pull_request_template.md +0 -15
- chromadb-client-0.4.24.dev0/pyproject.toml +0 -52
- chromadb-client-0.4.24.dev0/requirements.txt +0 -28
- chromadb-client-0.4.24.dev0/requirements_dev.txt +0 -13
- chromadb-client-0.4.24.dev0/rust/worker/Cargo.toml +0 -43
- chromadb-client-0.4.24.dev0/rust/worker/Dockerfile +0 -21
- chromadb-client-0.4.24.dev0/rust/worker/README +0 -7
- chromadb-client-0.4.24.dev0/rust/worker/bindings.cpp +0 -203
- chromadb-client-0.4.24.dev0/rust/worker/build.rs +0 -36
- chromadb-client-0.4.24.dev0/rust/worker/chroma_config.yaml +0 -31
- chromadb-client-0.4.24.dev0/rust/worker/src/assignment/assignment_policy.rs +0 -101
- chromadb-client-0.4.24.dev0/rust/worker/src/assignment/mod.rs +0 -3
- chromadb-client-0.4.24.dev0/rust/worker/src/bin/worker.rs +0 -6
- chromadb-client-0.4.24.dev0/rust/worker/src/blockstore/mod.rs +0 -2
- chromadb-client-0.4.24.dev0/rust/worker/src/blockstore/positional_posting_list_value.rs +0 -122
- chromadb-client-0.4.24.dev0/rust/worker/src/blockstore/types.rs +0 -478
- chromadb-client-0.4.24.dev0/rust/worker/src/config.rs +0 -320
- chromadb-client-0.4.24.dev0/rust/worker/src/errors.rs +0 -46
- chromadb-client-0.4.24.dev0/rust/worker/src/index/hnsw.rs +0 -560
- chromadb-client-0.4.24.dev0/rust/worker/src/index/mod.rs +0 -7
- chromadb-client-0.4.24.dev0/rust/worker/src/index/types.rs +0 -135
- chromadb-client-0.4.24.dev0/rust/worker/src/ingest/config.rs +0 -6
- chromadb-client-0.4.24.dev0/rust/worker/src/ingest/ingest.rs +0 -417
- chromadb-client-0.4.24.dev0/rust/worker/src/ingest/message_id.rs +0 -48
- chromadb-client-0.4.24.dev0/rust/worker/src/ingest/mod.rs +0 -8
- chromadb-client-0.4.24.dev0/rust/worker/src/ingest/scheduler.rs +0 -212
- chromadb-client-0.4.24.dev0/rust/worker/src/lib.rs +0 -104
- chromadb-client-0.4.24.dev0/rust/worker/src/memberlist/config.rs +0 -27
- chromadb-client-0.4.24.dev0/rust/worker/src/memberlist/memberlist_provider.rs +0 -268
- chromadb-client-0.4.24.dev0/rust/worker/src/segment/distributed_hnsw_segment.rs +0 -136
- chromadb-client-0.4.24.dev0/rust/worker/src/segment/mod.rs +0 -7
- chromadb-client-0.4.24.dev0/rust/worker/src/segment/segment_ingestor.rs +0 -48
- chromadb-client-0.4.24.dev0/rust/worker/src/segment/segment_manager.rs +0 -252
- chromadb-client-0.4.24.dev0/rust/worker/src/server.rs +0 -188
- chromadb-client-0.4.24.dev0/rust/worker/src/storage/config.rs +0 -20
- chromadb-client-0.4.24.dev0/rust/worker/src/storage/mod.rs +0 -9
- chromadb-client-0.4.24.dev0/rust/worker/src/storage/s3.rs +0 -216
- chromadb-client-0.4.24.dev0/rust/worker/src/sysdb/mod.rs +0 -2
- chromadb-client-0.4.24.dev0/rust/worker/src/sysdb/sysdb.rs +0 -259
- chromadb-client-0.4.24.dev0/rust/worker/src/system/executor.rs +0 -79
- chromadb-client-0.4.24.dev0/rust/worker/src/system/mod.rs +0 -9
- chromadb-client-0.4.24.dev0/rust/worker/src/system/sender.rs +0 -169
- chromadb-client-0.4.24.dev0/rust/worker/src/system/system.rs +0 -115
- chromadb-client-0.4.24.dev0/rust/worker/src/system/types.rs +0 -204
- chromadb-client-0.4.24.dev0/rust/worker/src/types/collection.rs +0 -88
- chromadb-client-0.4.24.dev0/rust/worker/src/types/embedding_record.rs +0 -281
- chromadb-client-0.4.24.dev0/rust/worker/src/types/metadata.rs +0 -262
- chromadb-client-0.4.24.dev0/rust/worker/src/types/mod.rs +0 -19
- chromadb-client-0.4.24.dev0/rust/worker/src/types/operation.rs +0 -73
- chromadb-client-0.4.24.dev0/rust/worker/src/types/scalar_encoding.rs +0 -66
- chromadb-client-0.4.24.dev0/rust/worker/src/types/segment.rs +0 -129
- chromadb-client-0.4.24.dev0/rust/worker/src/types/segment_scope.rs +0 -70
- chromadb-client-0.4.24.dev0/rust/worker/src/types/types.rs +0 -36
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/.dockerignore +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/.github/ISSUE_TEMPLATE/bug_report.yaml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/.github/ISSUE_TEMPLATE/feature_request.yaml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/.github/ISSUE_TEMPLATE/installation_trouble.yaml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/.github/actions/bandit-scan/Dockerfile +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/.github/actions/bandit-scan/action.yaml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/.github/actions/bandit-scan/entrypoint.sh +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/Cargo.toml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/DEVELOP.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/LICENSE +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/RELEASE_PROCESS.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/bandit.yaml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/bin/docker_entrypoint.sh +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/bin/generate_cloudformation.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/bin/templates/docker-compose.yml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/bin/test-package.sh +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/bin/test-remote +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/bin/test.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/bin/version +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/bin/windows_upgrade_sqlite.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/app.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/cli/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/cli/utils.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/db/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/db/base.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/db/impl/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/db/impl/sqlite_pool.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/errors.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/experimental/density_relevance.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/is_thin_client.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/log_config.yml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/migrations/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/migrations/embeddings_queue/00001-embeddings.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/migrations/metadb/00001-embedding-metadata.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/migrations/metadb/00002-embedding-metadata.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/migrations/metadb/00003-full-text-tokenize.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/migrations/sysdb/00001-collections.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/migrations/sysdb/00002-segments.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/migrations/sysdb/00003-collection-dimension.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/migrations/sysdb/00004-tenants-databases.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/proto/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/py.typed +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/segment/distributed/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/segment/impl/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/segment/impl/manager/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/segment/impl/manager/cache/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/segment/impl/vector/hnsw_params.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/server/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/server/fastapi/types.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/telemetry/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/telemetry/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/telemetry/opentelemetry/fastapi.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/telemetry/product/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/telemetry/product/posthog.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/api/test_types.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/data_loader/test_data_loader.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/db/migrations/00001-migration-1.psql.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/db/migrations/00001-migration-1.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/db/migrations/00002-migration-2.psql.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/db/migrations/00002-migration-2.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/db/migrations/00003-migration-3.psql.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/db/migrations/00003-migration-3.sqlite.sql +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/db/migrations/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/db/test_base.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/db/test_migrations.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/ef/test_default_ef.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/ef/test_multimodal_ef.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/property/test_client_url.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/property/test_cross_version_persist.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/segment/distributed/test_rendezvous_hash.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/stress/test_many_collections.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/test_chroma.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/test_cli.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/test_config.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/test/test_multithreaded.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/utils/__init__.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/utils/delete_file.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/utils/distance_functions.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/utils/lru_cache.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/utils/read_write_lock.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb/utils/rendezvous_hash.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb_client.egg-info/dependency_links.txt +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/chromadb_client.egg-info/top_level.txt +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/.gitignore +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/.prettierignore +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/.prettierrc.json +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/LICENSE +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/config.yml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/examples/node/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/examples/node/package.json +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/examples/node/yarn.lock +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/genapi.sh +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/jest.config.ts +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/openapitools.json +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/src/generated/index.ts +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/test/data.ts +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/test/initAdminClient.ts +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/js/test/initClient.ts +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/python/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/python/build_python_thin_client.sh +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/python/is_thin_client.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/clients/python/requirements_dev.txt +0 -0
- /chromadb-client-0.4.24.dev0/examples/deployments/google-cloud-compute/main.tf → /chromadb_client-0.5.3.dev0/compose-env.linux +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/docker-compose.server.example.yml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/docs/cip/CIP-01022024_SSL_Verify_Client_Config.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/docs/cip/CIP-10112023_Authorization.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/docs/cip/CIP-1_Allow_Filtering_for_Collections.md +0 -0
- {chromadb-client-0.4.24.dev0/docs → chromadb_client-0.5.3.dev0/docs/cip}/CIP_4_In_Nin_Metadata_Filters.md +0 -0
- {chromadb-client-0.4.24.dev0/docs → chromadb_client-0.5.3.dev0/docs/cip}/CIP_5_Large_Batch_Handling_Improvements.md +0 -0
- {chromadb-client-0.4.24.dev0/docs → chromadb_client-0.5.3.dev0/docs/cip}/CIP_6_OpenTelemetry_Monitoring.md +0 -0
- {chromadb-client-0.4.24.dev0/docs → chromadb_client-0.5.3.dev0/docs/cip}/CIP_Chroma_Improvment_Proposals.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/docs/cip/assets/CIP-01022024-test_self_signed.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/docs/cip/assets/CIP-10112023_Authorization_Workflow.png +0 -0
- {chromadb-client-0.4.24.dev0/docs → chromadb_client-0.5.3.dev0/docs/cip}/assets/cip-2-arch.png +0 -0
- {chromadb-client-0.4.24.dev0/docs → chromadb_client-0.5.3.dev0/docs/cip}/assets/cip-2-client-side-wf.png +0 -0
- {chromadb-client-0.4.24.dev0/docs → chromadb_client-0.5.3.dev0/docs/cip}/assets/cip-2-seq.png +0 -0
- {chromadb-client-0.4.24.dev0/docs → chromadb_client-0.5.3.dev0/docs/cip}/assets/cip-2-server-side-wf.png +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/basic_functionality/alternative_embeddings.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/basic_functionality/assets/auh-sequence.png +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/basic_functionality/assets/auth-architecture.png +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/basic_functionality/in_not_in_filtering.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/basic_functionality/local_persistence.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/basic_functionality/start_here.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/basic_functionality/test_get_collection_by_id.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/basic_functionality/where_filtering.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/chat_with_your_documents/README.md +0 -0
- {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
- {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
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/chat_with_your_documents/load_data.py +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/chat_with_your_documents/requirements.txt +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/aws-terraform/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/aws-terraform/chroma.tf +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/aws-terraform/variables.tf +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/do-terraform/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/do-terraform/chroma.tf +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/do-terraform/variables.tf +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/google-cloud-compute/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/google-cloud-compute/chroma.tf +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/google-cloud-compute/variables.tf +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/render-terraform/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/render-terraform/sqlite_version.patch +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/deployments/render-terraform/variables.tf +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/gemini/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/gemini/documents/state_of_the_union_2022.txt +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/gemini/documents/state_of_the_union_2023.txt +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/gemini/requirements.txt +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/multimodal/multimodal_retrieval.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/observability/README.md +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/observability/otel-collector-config.yaml +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/server_side_embeddings/huggingface/test.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/use_with/cohere/cohere_js.js +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/use_with/cohere/cohere_python.ipynb +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/examples/use_with/cohere/package.json +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator → chromadb_client-0.5.3.dev0/go}/cmd/flag/flag.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/common/component.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/common/constants.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/grpcutils/config.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/grpcutils/config_test.go +0 -0
- {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
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/metastore/db/dbmodel/notification.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/model/notification.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/types/types.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/utils/integration.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/utils/kubernetes.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/utils/log.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/utils/rendezvous_hash.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/utils/rendezvous_hash_test.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/utils/run.go +0 -0
- {chromadb-client-0.4.24.dev0/go/coordinator/internal → chromadb_client-0.5.3.dev0/go/pkg}/utils/signal.go +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/k8s/WARNING.md +0 -0
- /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
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/rust/worker/.gitignore +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/rust/worker/src/assignment/config.rs +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/rust/worker/src/assignment/rendezvous_hash.rs +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/rust/worker/src/index/utils.rs +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/rust/worker/src/memberlist/mod.rs +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/rust/worker/src/segment/config.rs +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/rust/worker/src/sysdb/config.rs +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/setup.cfg +0 -0
- {chromadb-client-0.4.24.dev0 → chromadb_client-0.5.3.dev0}/yarn.lock +0 -0
|
@@ -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,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,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
|