chromadb-client 0.5.3.dev0__tar.gz → 0.5.5.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- chromadb_client-0.5.5.dev0/.github/actions/rust/action.yaml +16 -0
- chromadb_client-0.5.5.dev0/.github/workflows/_go-tests.yml +46 -0
- chromadb_client-0.5.5.dev0/.github/workflows/_javascript-client-tests.yml +13 -0
- chromadb_client-0.5.5.dev0/.github/workflows/_python-tests.yml +181 -0
- chromadb_client-0.5.5.dev0/.github/workflows/_rust-tests.yml +25 -0
- chromadb_client-0.5.5.dev0/.github/workflows/nightly-tests.yml +48 -0
- chromadb_client-0.5.5.dev0/.github/workflows/pr.yml +161 -0
- chromadb_client-0.5.5.dev0/.github/workflows/release-chromadb.yml +281 -0
- chromadb_client-0.5.5.dev0/.github/workflows/release-javascript-client.yml +54 -0
- chromadb_client-0.5.5.dev0/.pre-commit-config.yaml +62 -0
- chromadb_client-0.5.5.dev0/Cargo.lock +4831 -0
- chromadb_client-0.5.5.dev0/PKG-INFO +66 -0
- chromadb_client-0.5.5.dev0/Tiltfile +147 -0
- chromadb_client-0.5.5.dev0/bin/get-logs.sh +44 -0
- chromadb_client-0.5.5.dev0/bin/test-package/install.sh +24 -0
- chromadb_client-0.5.5.dev0/bin/test-package/test-package.sh +8 -0
- chromadb_client-0.5.5.dev0/bin/test-package/test-thin-client-package.sh +8 -0
- chromadb_client-0.5.5.dev0/bin/windows_upgrade_sqlite.py +20 -0
- chromadb_client-0.5.5.dev0/chromadb/__init__.py +343 -0
- chromadb_client-0.5.5.dev0/chromadb/api/__init__.py +596 -0
- chromadb_client-0.5.5.dev0/chromadb/api/async_api.py +587 -0
- chromadb_client-0.5.5.dev0/chromadb/api/async_client.py +440 -0
- chromadb_client-0.5.5.dev0/chromadb/api/async_fastapi.py +551 -0
- chromadb_client-0.5.5.dev0/chromadb/api/base_http_client.py +97 -0
- chromadb_client-0.5.5.dev0/chromadb/api/client.py +429 -0
- chromadb_client-0.5.5.dev0/chromadb/api/configuration.py +361 -0
- chromadb_client-0.5.5.dev0/chromadb/api/fastapi.py +526 -0
- chromadb_client-0.5.5.dev0/chromadb/api/models/Collection.py +332 -0
- chromadb_client-0.5.5.dev0/chromadb/api/models/CollectionCommon.py +568 -0
- chromadb_client-0.5.5.dev0/chromadb/api/segment.py +921 -0
- chromadb_client-0.5.5.dev0/chromadb/api/types.py +543 -0
- chromadb_client-0.5.5.dev0/chromadb/auth/__init__.py +235 -0
- chromadb_client-0.5.5.dev0/chromadb/auth/basic_authn/__init__.py +146 -0
- chromadb_client-0.5.5.dev0/chromadb/auth/simple_rbac_authz/__init__.py +75 -0
- chromadb_client-0.5.5.dev0/chromadb/auth/token_authn/__init__.py +235 -0
- chromadb_client-0.5.5.dev0/chromadb/db/impl/grpc/client.py +323 -0
- chromadb_client-0.5.5.dev0/chromadb/db/impl/grpc/server.py +451 -0
- chromadb_client-0.5.5.dev0/chromadb/db/mixins/embeddings_queue.py +393 -0
- chromadb_client-0.5.5.dev0/chromadb/db/mixins/sysdb.py +804 -0
- chromadb_client-0.5.5.dev0/chromadb/db/system.py +136 -0
- chromadb_client-0.5.5.dev0/chromadb/errors.py +101 -0
- chromadb_client-0.5.5.dev0/chromadb/migrations/sysdb/00007-collection-config.sqlite.sql +2 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/chroma_pb2.py +125 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/chroma_pb2.pyi +427 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/chroma_pb2_grpc.py +272 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/convert.py +298 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/coordinator_pb2.py +99 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/coordinator_pb2.pyi +303 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/coordinator_pb2_grpc.py +748 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/logservice_pb2.py +48 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/logservice_pb2.pyi +81 -0
- chromadb_client-0.5.5.dev0/chromadb/proto/logservice_pb2_grpc.py +231 -0
- chromadb_client-0.5.5.dev0/chromadb/segment/impl/distributed/segment_directory.py +271 -0
- chromadb_client-0.5.5.dev0/chromadb/segment/impl/manager/distributed.py +155 -0
- chromadb_client-0.5.5.dev0/chromadb/segment/impl/manager/local.py +266 -0
- chromadb_client-0.5.5.dev0/chromadb/segment/impl/metadata/sqlite.py +762 -0
- chromadb_client-0.5.5.dev0/chromadb/segment/impl/vector/batch.py +112 -0
- chromadb_client-0.5.5.dev0/chromadb/segment/impl/vector/brute_force_index.py +151 -0
- chromadb_client-0.5.5.dev0/chromadb/segment/impl/vector/local_hnsw.py +324 -0
- chromadb_client-0.5.5.dev0/chromadb/segment/impl/vector/local_persistent_hnsw.py +462 -0
- chromadb_client-0.5.5.dev0/chromadb/serde.py +51 -0
- chromadb_client-0.5.5.dev0/chromadb/server/fastapi/__init__.py +964 -0
- chromadb_client-0.5.5.dev0/chromadb/server/fastapi/types.py +78 -0
- chromadb_client-0.5.5.dev0/chromadb/telemetry/product/events.py +252 -0
- chromadb_client-0.5.5.dev0/chromadb/test/auth/rbac_test_executors.py +241 -0
- chromadb_client-0.5.5.dev0/chromadb/test/auth/test_base_class_behavior.py +106 -0
- chromadb_client-0.5.5.dev0/chromadb/test/configurations/test_configurations.py +78 -0
- chromadb_client-0.5.5.dev0/chromadb/test/conftest.py +852 -0
- chromadb_client-0.5.5.dev0/chromadb/test/data_loader/test_data_loader.py +119 -0
- chromadb_client-0.5.5.dev0/chromadb/test/db/test_system.py +781 -0
- chromadb_client-0.5.5.dev0/chromadb/test/distributed/test_sanity.py +148 -0
- chromadb_client-0.5.5.dev0/chromadb/test/ef/test_default_ef.py +93 -0
- chromadb_client-0.5.5.dev0/chromadb/test/ef/test_ef.py +53 -0
- chromadb_client-0.5.5.dev0/chromadb/test/ef/test_ollama_ef.py +33 -0
- chromadb_client-0.5.5.dev0/chromadb/test/ingest/test_producer_consumer.py +371 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/invariants.py +288 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/strategies.py +681 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/test_add.py +289 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/test_collections.py +345 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/test_collections_with_database_tenant.py +152 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/test_collections_with_database_tenant_overwrite.py +214 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/test_cross_version_persist.py +337 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/test_embeddings.py +823 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/test_filtering.py +440 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/test_persist.py +241 -0
- chromadb_client-0.5.5.dev0/chromadb/test/property/test_segment_manager.py +137 -0
- chromadb_client-0.5.5.dev0/chromadb/test/stress/test_many_collections.py +37 -0
- chromadb_client-0.5.5.dev0/chromadb/test/test_api.py +1615 -0
- chromadb_client-0.5.5.dev0/chromadb/test/test_logservice.py +178 -0
- chromadb_client-0.5.5.dev0/chromadb/test/test_multithreaded.py +225 -0
- chromadb_client-0.5.5.dev0/chromadb/test/utils/wait_for_version_increase.py +29 -0
- chromadb_client-0.5.5.dev0/chromadb/types.py +268 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/__init__.py +62 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/amazon_bedrock_embedding_function.py +55 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/chroma_langchain_embedding_function.py +69 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/cohere_embedding_function.py +27 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/google_embedding_function.py +110 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/huggingface_embedding_function.py +90 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/instructor_embedding_function.py +33 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/jina_embedding_function.py +60 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/ollama_embedding_function.py +58 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/onnx_mini_lm_l6_v2.py +234 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/open_clip_embedding_function.py +77 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/openai_embedding_function.py +138 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/roboflow_embedding_function.py +87 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/sentence_transformer_embedding_function.py +51 -0
- chromadb_client-0.5.5.dev0/chromadb/utils/embedding_functions/text2vec_embedding_function.py +22 -0
- chromadb_client-0.5.5.dev0/chromadb_client.egg-info/PKG-INFO +66 -0
- chromadb_client-0.5.5.dev0/chromadb_client.egg-info/SOURCES.txt +897 -0
- chromadb_client-0.5.5.dev0/chromadb_client.egg-info/requires.txt +12 -0
- chromadb_client-0.5.5.dev0/clients/js/src/ChromaClient.ts +349 -0
- chromadb_client-0.5.5.dev0/clients/js/src/generated/api.ts +2548 -0
- chromadb_client-0.5.5.dev0/clients/js/src/generated/models.ts +212 -0
- chromadb_client-0.5.5.dev0/clients/js/src/types.ts +164 -0
- chromadb_client-0.5.5.dev0/clients/js/test/collection.client.test.ts +114 -0
- chromadb_client-0.5.5.dev0/clients/python/pyproject.toml +52 -0
- chromadb_client-0.5.5.dev0/clients/python/requirements.txt +12 -0
- chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/components/layout/TopNav.tsx +42 -0
- chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/_app.tsx +256 -0
- chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/deployment/migration.md +286 -0
- chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/getting-started.md +291 -0
- chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face-server.md +61 -0
- chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face.md +30 -0
- chromadb_client-0.5.5.dev0/docs/docs.trychroma.com/pages/integrations/jinaai.md +46 -0
- chromadb_client-0.5.5.dev0/go/cmd/coordinator/cmd.go +68 -0
- chromadb_client-0.5.5.dev0/go/database/log/db/copyfrom.go +45 -0
- chromadb_client-0.5.5.dev0/go/database/log/db/db.go +33 -0
- chromadb_client-0.5.5.dev0/go/database/log/db/models.go +18 -0
- chromadb_client-0.5.5.dev0/go/database/log/db/queries.sql.go +171 -0
- chromadb_client-0.5.5.dev0/go/database/log/queries/queries.sql +35 -0
- chromadb_client-0.5.5.dev0/go/database/log/schema/collection.sql +8 -0
- chromadb_client-0.5.5.dev0/go/go.sum +939 -0
- chromadb_client-0.5.5.dev0/go/migrations/20240621171854.sql +2 -0
- chromadb_client-0.5.5.dev0/go/migrations/atlas.sum +8 -0
- chromadb_client-0.5.5.dev0/go/pkg/coordinator/apis.go +170 -0
- chromadb_client-0.5.5.dev0/go/pkg/coordinator/apis_test.go +882 -0
- chromadb_client-0.5.5.dev0/go/pkg/coordinator/grpc/collection_service.go +284 -0
- chromadb_client-0.5.5.dev0/go/pkg/coordinator/grpc/proto_model_convert.go +249 -0
- chromadb_client-0.5.5.dev0/go/pkg/log/repository/log.go +122 -0
- chromadb_client-0.5.5.dev0/go/pkg/log/server/property_test.go +468 -0
- chromadb_client-0.5.5.dev0/go/pkg/log/server/server.go +112 -0
- chromadb_client-0.5.5.dev0/go/pkg/metastore/catalog.go +34 -0
- chromadb_client-0.5.5.dev0/go/pkg/metastore/coordinator/model_db_convert.go +190 -0
- chromadb_client-0.5.5.dev0/go/pkg/metastore/coordinator/model_db_convert_test.go +155 -0
- chromadb_client-0.5.5.dev0/go/pkg/metastore/coordinator/table_catalog.go +654 -0
- chromadb_client-0.5.5.dev0/go/pkg/metastore/coordinator/table_catalog_test.go +139 -0
- chromadb_client-0.5.5.dev0/go/pkg/metastore/db/dao/collection.go +202 -0
- chromadb_client-0.5.5.dev0/go/pkg/metastore/db/dao/collection_test.go +156 -0
- chromadb_client-0.5.5.dev0/go/pkg/metastore/db/dao/test_utils.go +188 -0
- chromadb_client-0.5.5.dev0/go/pkg/metastore/db/dbmodel/collection.go +42 -0
- chromadb_client-0.5.5.dev0/go/pkg/model/collection.go +72 -0
- chromadb_client-0.5.5.dev0/go/pkg/proto/coordinatorpb/chroma.pb.go +3834 -0
- chromadb_client-0.5.5.dev0/go/pkg/proto/coordinatorpb/chroma_grpc.pb.go +277 -0
- chromadb_client-0.5.5.dev0/go/pkg/proto/coordinatorpb/coordinator.pb.go +2930 -0
- chromadb_client-0.5.5.dev0/go/pkg/proto/coordinatorpb/coordinator_grpc.pb.go +681 -0
- chromadb_client-0.5.5.dev0/go/pkg/proto/logservicepb/logservice.pb.go +844 -0
- chromadb_client-0.5.5.dev0/go/pkg/proto/logservicepb/logservice_grpc.pb.go +224 -0
- chromadb_client-0.5.5.dev0/idl/chromadb/proto/chroma.proto +321 -0
- chromadb_client-0.5.5.dev0/idl/chromadb/proto/coordinator.proto +211 -0
- chromadb_client-0.5.5.dev0/idl/chromadb/proto/debug.proto +14 -0
- chromadb_client-0.5.5.dev0/idl/chromadb/proto/logservice.proto +66 -0
- chromadb_client-0.5.5.dev0/k8s/distributed-chroma/Chart.yaml +30 -0
- chromadb_client-0.5.5.dev0/k8s/distributed-chroma/templates/log-migration.yaml +29 -0
- chromadb_client-0.5.5.dev0/k8s/distributed-chroma/templates/sysdb-migration.yaml +32 -0
- chromadb_client-0.5.5.dev0/k8s/test/jaeger.yaml +47 -0
- chromadb_client-0.5.5.dev0/pyproject.toml +52 -0
- chromadb_client-0.5.5.dev0/requirements.txt +27 -0
- chromadb_client-0.5.5.dev0/requirements_dev.txt +13 -0
- chromadb_client-0.5.5.dev0/rust/worker/Cargo.toml +71 -0
- chromadb_client-0.5.5.dev0/rust/worker/Dockerfile +61 -0
- chromadb_client-0.5.5.dev0/rust/worker/README.md +15 -0
- chromadb_client-0.5.5.dev0/rust/worker/build.rs +44 -0
- chromadb_client-0.5.5.dev0/rust/worker/chroma_config.yaml +87 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/block/delta.rs +442 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/block/delta_storage.rs +957 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/block/types.rs +683 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/blockfile.rs +1280 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/concurrency_test.rs +69 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/config.rs +16 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/flusher.rs +54 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/mod.rs +8 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/provider.rs +441 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/arrow/sparse_index.rs +603 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/config.rs +7 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/memory/provider.rs +131 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/mod.rs +9 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/positional_posting_list_value.rs +268 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/blockstore/provider.rs +137 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/compactor/compaction_manager.rs +517 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/compactor/config.rs +9 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/compactor/scheduler.rs +491 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/config.rs +608 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/errors.rs +54 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/dispatcher.rs +335 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operator.rs +290 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/brute_force_knn.rs +548 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/count_records.rs +442 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/flush_s3.rs +144 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/get_vectors_operator.rs +179 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/hnsw_knn.rs +236 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/merge_knn_results.rs +253 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/merge_metadata_results.rs +1022 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/metadata_filtering.rs +1357 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/normalize_vectors.rs +89 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/partition.rs +228 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/pull_log.rs +258 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/register.rs +286 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/operators/write_segments.rs +198 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/common.rs +180 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/compact.rs +706 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/get_vectors.rs +329 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/hnsw.rs +771 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/orchestration/metadata.rs +820 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/execution/worker_thread.rs +67 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/index/fulltext/types.rs +1242 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/index/metadata/types.rs +1647 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/lib.rs +168 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/log/config.rs +14 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/log/log.rs +446 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/memberlist/memberlist_provider.rs +279 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/segment/distributed_hnsw_segment.rs +357 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/segment/metadata_segment.rs +2843 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/segment/record_segment.rs +814 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/segment/types.rs +2109 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/server.rs +620 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/storage/config.rs +44 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/storage/s3.rs +333 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/sysdb/config.rs +14 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/sysdb/sysdb.rs +471 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/sysdb/test_sysdb.rs +217 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/system/executor.rs +98 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/system/mod.rs +12 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/system/receiver.rs +82 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/system/scheduler.rs +207 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/system/system.rs +210 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/system/types.rs +388 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/system/wrapped_message.rs +115 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/tracing/opentelemetry_config.rs +76 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/types/collection.rs +92 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/types/operation.rs +94 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/types/segment.rs +170 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/utils/mod.rs +5 -0
- chromadb_client-0.5.5.dev0/rust/worker/src/utils/panic.rs +13 -0
- chromadb_client-0.5.3.dev0/.github/actions/rust/action.yaml +0 -12
- chromadb_client-0.5.3.dev0/.github/workflows/_go-tests.yml +0 -46
- chromadb_client-0.5.3.dev0/.github/workflows/_javascript-client-tests.yml +0 -13
- chromadb_client-0.5.3.dev0/.github/workflows/_python-tests.yml +0 -166
- chromadb_client-0.5.3.dev0/.github/workflows/_rust-tests.yml +0 -25
- chromadb_client-0.5.3.dev0/.github/workflows/pr.yml +0 -132
- chromadb_client-0.5.3.dev0/.github/workflows/release-chromadb.yml +0 -278
- chromadb_client-0.5.3.dev0/.github/workflows/release-javascript-client.yml +0 -44
- chromadb_client-0.5.3.dev0/.pre-commit-config.yaml +0 -63
- chromadb_client-0.5.3.dev0/Cargo.lock +0 -4746
- chromadb_client-0.5.3.dev0/PKG-INFO +0 -66
- chromadb_client-0.5.3.dev0/Tiltfile +0 -146
- chromadb_client-0.5.3.dev0/bin/test-package.sh +0 -24
- chromadb_client-0.5.3.dev0/bin/windows_upgrade_sqlite.py +0 -20
- chromadb_client-0.5.3.dev0/chromadb/__init__.py +0 -343
- chromadb_client-0.5.3.dev0/chromadb/api/__init__.py +0 -602
- chromadb_client-0.5.3.dev0/chromadb/api/async_api.py +0 -595
- chromadb_client-0.5.3.dev0/chromadb/api/async_client.py +0 -416
- chromadb_client-0.5.3.dev0/chromadb/api/async_fastapi.py +0 -634
- chromadb_client-0.5.3.dev0/chromadb/api/base_http_client.py +0 -59
- chromadb_client-0.5.3.dev0/chromadb/api/client.py +0 -409
- chromadb_client-0.5.3.dev0/chromadb/api/fastapi.py +0 -613
- chromadb_client-0.5.3.dev0/chromadb/api/models/Collection.py +0 -332
- chromadb_client-0.5.3.dev0/chromadb/api/models/CollectionCommon.py +0 -558
- chromadb_client-0.5.3.dev0/chromadb/api/segment.py +0 -941
- chromadb_client-0.5.3.dev0/chromadb/api/types.py +0 -527
- chromadb_client-0.5.3.dev0/chromadb/auth/__init__.py +0 -236
- chromadb_client-0.5.3.dev0/chromadb/auth/basic_authn/__init__.py +0 -144
- chromadb_client-0.5.3.dev0/chromadb/auth/simple_rbac_authz/__init__.py +0 -79
- chromadb_client-0.5.3.dev0/chromadb/auth/token_authn/__init__.py +0 -235
- chromadb_client-0.5.3.dev0/chromadb/db/impl/grpc/client.py +0 -320
- chromadb_client-0.5.3.dev0/chromadb/db/impl/grpc/server.py +0 -445
- chromadb_client-0.5.3.dev0/chromadb/db/mixins/embeddings_queue.py +0 -393
- chromadb_client-0.5.3.dev0/chromadb/db/mixins/sysdb.py +0 -740
- chromadb_client-0.5.3.dev0/chromadb/db/system.py +0 -134
- chromadb_client-0.5.3.dev0/chromadb/errors.py +0 -86
- chromadb_client-0.5.3.dev0/chromadb/proto/chroma_pb2.py +0 -125
- chromadb_client-0.5.3.dev0/chromadb/proto/chroma_pb2.pyi +0 -425
- chromadb_client-0.5.3.dev0/chromadb/proto/chroma_pb2_grpc.py +0 -270
- chromadb_client-0.5.3.dev0/chromadb/proto/convert.py +0 -293
- chromadb_client-0.5.3.dev0/chromadb/proto/coordinator_pb2.py +0 -99
- chromadb_client-0.5.3.dev0/chromadb/proto/coordinator_pb2.pyi +0 -301
- chromadb_client-0.5.3.dev0/chromadb/proto/coordinator_pb2_grpc.py +0 -747
- chromadb_client-0.5.3.dev0/chromadb/proto/logservice_pb2.py +0 -48
- chromadb_client-0.5.3.dev0/chromadb/proto/logservice_pb2.pyi +0 -79
- chromadb_client-0.5.3.dev0/chromadb/proto/logservice_pb2_grpc.py +0 -230
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/distributed/segment_directory.py +0 -251
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/manager/distributed.py +0 -155
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/manager/local.py +0 -266
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/metadata/sqlite.py +0 -767
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/batch.py +0 -118
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/brute_force_index.py +0 -151
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/local_hnsw.py +0 -325
- chromadb_client-0.5.3.dev0/chromadb/segment/impl/vector/local_persistent_hnsw.py +0 -464
- chromadb_client-0.5.3.dev0/chromadb/server/fastapi/__init__.py +0 -946
- chromadb_client-0.5.3.dev0/chromadb/server/fastapi/types.py +0 -71
- chromadb_client-0.5.3.dev0/chromadb/telemetry/product/events.py +0 -252
- chromadb_client-0.5.3.dev0/chromadb/test/auth/rbac_test_executors.py +0 -290
- chromadb_client-0.5.3.dev0/chromadb/test/auth/test_base_class_behavior.py +0 -107
- chromadb_client-0.5.3.dev0/chromadb/test/conftest.py +0 -855
- chromadb_client-0.5.3.dev0/chromadb/test/data_loader/test_data_loader.py +0 -119
- chromadb_client-0.5.3.dev0/chromadb/test/db/test_system.py +0 -749
- chromadb_client-0.5.3.dev0/chromadb/test/distributed/test_sanity.py +0 -155
- chromadb_client-0.5.3.dev0/chromadb/test/ef/test_default_ef.py +0 -90
- chromadb_client-0.5.3.dev0/chromadb/test/ef/test_ollama_ef.py +0 -34
- chromadb_client-0.5.3.dev0/chromadb/test/ingest/test_producer_consumer.py +0 -373
- chromadb_client-0.5.3.dev0/chromadb/test/property/invariants.py +0 -294
- chromadb_client-0.5.3.dev0/chromadb/test/property/strategies.py +0 -612
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_add.py +0 -215
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_collections.py +0 -343
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_collections_with_database_tenant.py +0 -152
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_collections_with_database_tenant_overwrite.py +0 -214
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_cross_version_persist.py +0 -326
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_embeddings.py +0 -469
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_filtering.py +0 -402
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_persist.py +0 -244
- chromadb_client-0.5.3.dev0/chromadb/test/property/test_segment_manager.py +0 -134
- chromadb_client-0.5.3.dev0/chromadb/test/stress/test_many_collections.py +0 -37
- chromadb_client-0.5.3.dev0/chromadb/test/test_api.py +0 -1632
- chromadb_client-0.5.3.dev0/chromadb/test/test_logservice.py +0 -176
- chromadb_client-0.5.3.dev0/chromadb/test/test_multithreaded.py +0 -223
- chromadb_client-0.5.3.dev0/chromadb/test/utils/wait_for_version_increase.py +0 -22
- chromadb_client-0.5.3.dev0/chromadb/types.py +0 -161
- chromadb_client-0.5.3.dev0/chromadb/utils/embedding_functions.py +0 -1029
- chromadb_client-0.5.3.dev0/chromadb_client.egg-info/PKG-INFO +0 -66
- chromadb_client-0.5.3.dev0/chromadb_client.egg-info/SOURCES.txt +0 -869
- chromadb_client-0.5.3.dev0/chromadb_client.egg-info/requires.txt +0 -12
- chromadb_client-0.5.3.dev0/clients/js/src/ChromaClient.ts +0 -347
- chromadb_client-0.5.3.dev0/clients/js/src/generated/api.ts +0 -2548
- chromadb_client-0.5.3.dev0/clients/js/src/generated/models.ts +0 -290
- chromadb_client-0.5.3.dev0/clients/js/src/types.ts +0 -163
- chromadb_client-0.5.3.dev0/clients/js/test/collection.client.test.ts +0 -104
- chromadb_client-0.5.3.dev0/clients/python/pyproject.toml +0 -52
- chromadb_client-0.5.3.dev0/clients/python/requirements.txt +0 -12
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/components/layout/TopNav.tsx +0 -42
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/_app.tsx +0 -257
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/deployment/migration.md +0 -286
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/getting-started.md +0 -291
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face-server.md +0 -63
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/hugging-face.md +0 -32
- chromadb_client-0.5.3.dev0/docs/docs.trychroma.com/pages/integrations/jinaai.md +0 -48
- chromadb_client-0.5.3.dev0/go/cmd/coordinator/cmd.go +0 -68
- chromadb_client-0.5.3.dev0/go/database/log/db/copyfrom.go +0 -45
- chromadb_client-0.5.3.dev0/go/database/log/db/db.go +0 -33
- chromadb_client-0.5.3.dev0/go/database/log/db/models.go +0 -20
- chromadb_client-0.5.3.dev0/go/database/log/db/queries.sql.go +0 -170
- chromadb_client-0.5.3.dev0/go/database/log/queries/queries.sql +0 -34
- chromadb_client-0.5.3.dev0/go/database/log/schema/collection.sql +0 -8
- chromadb_client-0.5.3.dev0/go/go.sum +0 -937
- chromadb_client-0.5.3.dev0/go/migrations/atlas.sum +0 -7
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/apis.go +0 -170
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/apis_test.go +0 -865
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/collection_service.go +0 -281
- chromadb_client-0.5.3.dev0/go/pkg/coordinator/grpc/proto_model_convert.go +0 -247
- chromadb_client-0.5.3.dev0/go/pkg/log/repository/log.go +0 -104
- chromadb_client-0.5.3.dev0/go/pkg/log/server/property_test.go +0 -190
- chromadb_client-0.5.3.dev0/go/pkg/log/server/server.go +0 -111
- chromadb_client-0.5.3.dev0/go/pkg/metastore/catalog.go +0 -34
- chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/model_db_convert.go +0 -189
- chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/model_db_convert_test.go +0 -152
- chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/table_catalog.go +0 -650
- chromadb_client-0.5.3.dev0/go/pkg/metastore/coordinator/table_catalog_test.go +0 -136
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/collection.go +0 -200
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/collection_test.go +0 -156
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dao/test_utils.go +0 -186
- chromadb_client-0.5.3.dev0/go/pkg/metastore/db/dbmodel/collection.go +0 -41
- chromadb_client-0.5.3.dev0/go/pkg/model/collection.go +0 -70
- chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/chroma.pb.go +0 -3819
- chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/chroma_grpc.pb.go +0 -277
- chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/coordinator.pb.go +0 -2919
- chromadb_client-0.5.3.dev0/go/pkg/proto/coordinatorpb/coordinator_grpc.pb.go +0 -681
- chromadb_client-0.5.3.dev0/go/pkg/proto/logservicepb/logservice.pb.go +0 -830
- chromadb_client-0.5.3.dev0/go/pkg/proto/logservicepb/logservice_grpc.pb.go +0 -224
- chromadb_client-0.5.3.dev0/idl/chromadb/proto/chroma.proto +0 -320
- chromadb_client-0.5.3.dev0/idl/chromadb/proto/coordinator.proto +0 -210
- chromadb_client-0.5.3.dev0/idl/chromadb/proto/logservice.proto +0 -64
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/Chart.yaml +0 -30
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/log-migration.yaml +0 -29
- chromadb_client-0.5.3.dev0/k8s/distributed-chroma/templates/sysdb-migration.yaml +0 -32
- chromadb_client-0.5.3.dev0/k8s/test/jaeger.yaml +0 -47
- chromadb_client-0.5.3.dev0/pyproject.toml +0 -52
- chromadb_client-0.5.3.dev0/requirements.txt +0 -28
- chromadb_client-0.5.3.dev0/requirements_dev.txt +0 -14
- chromadb_client-0.5.3.dev0/rust/worker/Cargo.toml +0 -65
- chromadb_client-0.5.3.dev0/rust/worker/Dockerfile +0 -61
- chromadb_client-0.5.3.dev0/rust/worker/README.md +0 -15
- chromadb_client-0.5.3.dev0/rust/worker/build.rs +0 -40
- chromadb_client-0.5.3.dev0/rust/worker/chroma_config.yaml +0 -68
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/delta.rs +0 -400
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/delta_storage.rs +0 -924
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/block/types.rs +0 -398
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/blockfile.rs +0 -1170
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/concurrency_test.rs +0 -68
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/flusher.rs +0 -52
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/mod.rs +0 -7
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/provider.rs +0 -390
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/arrow/sparse_index.rs +0 -561
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/memory/provider.rs +0 -131
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/mod.rs +0 -8
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/positional_posting_list_value.rs +0 -271
- chromadb_client-0.5.3.dev0/rust/worker/src/blockstore/provider.rs +0 -105
- chromadb_client-0.5.3.dev0/rust/worker/src/compactor/compaction_manager.rs +0 -508
- chromadb_client-0.5.3.dev0/rust/worker/src/compactor/config.rs +0 -8
- chromadb_client-0.5.3.dev0/rust/worker/src/compactor/scheduler.rs +0 -483
- chromadb_client-0.5.3.dev0/rust/worker/src/config.rs +0 -516
- chromadb_client-0.5.3.dev0/rust/worker/src/errors.rs +0 -48
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/dispatcher.rs +0 -327
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operator.rs +0 -106
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/brute_force_knn.rs +0 -547
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/count_records.rs +0 -434
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/flush_s3.rs +0 -140
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/get_vectors_operator.rs +0 -231
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/hnsw_knn.rs +0 -198
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/merge_knn_results.rs +0 -249
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/merge_metadata_results.rs +0 -1015
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/metadata_filtering.rs +0 -1347
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/normalize_vectors.rs +0 -85
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/partition.rs +0 -224
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/pull_log.rs +0 -253
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/register.rs +0 -282
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/operators/write_segments.rs +0 -188
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/common.rs +0 -150
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/compact.rs +0 -669
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/get_vectors.rs +0 -322
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/hnsw.rs +0 -793
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/orchestration/metadata.rs +0 -843
- chromadb_client-0.5.3.dev0/rust/worker/src/execution/worker_thread.rs +0 -62
- chromadb_client-0.5.3.dev0/rust/worker/src/index/fulltext/types.rs +0 -1234
- chromadb_client-0.5.3.dev0/rust/worker/src/index/metadata/types.rs +0 -1647
- chromadb_client-0.5.3.dev0/rust/worker/src/lib.rs +0 -168
- chromadb_client-0.5.3.dev0/rust/worker/src/log/config.rs +0 -12
- chromadb_client-0.5.3.dev0/rust/worker/src/log/log.rs +0 -430
- chromadb_client-0.5.3.dev0/rust/worker/src/memberlist/memberlist_provider.rs +0 -277
- chromadb_client-0.5.3.dev0/rust/worker/src/segment/distributed_hnsw_segment.rs +0 -382
- chromadb_client-0.5.3.dev0/rust/worker/src/segment/metadata_segment.rs +0 -1937
- chromadb_client-0.5.3.dev0/rust/worker/src/segment/record_segment.rs +0 -796
- chromadb_client-0.5.3.dev0/rust/worker/src/segment/types.rs +0 -1094
- chromadb_client-0.5.3.dev0/rust/worker/src/server.rs +0 -524
- chromadb_client-0.5.3.dev0/rust/worker/src/storage/config.rs +0 -43
- chromadb_client-0.5.3.dev0/rust/worker/src/storage/s3.rs +0 -317
- chromadb_client-0.5.3.dev0/rust/worker/src/sysdb/config.rs +0 -12
- chromadb_client-0.5.3.dev0/rust/worker/src/sysdb/sysdb.rs +0 -440
- chromadb_client-0.5.3.dev0/rust/worker/src/sysdb/test_sysdb.rs +0 -224
- chromadb_client-0.5.3.dev0/rust/worker/src/system/executor.rs +0 -100
- chromadb_client-0.5.3.dev0/rust/worker/src/system/mod.rs +0 -10
- chromadb_client-0.5.3.dev0/rust/worker/src/system/scheduler.rs +0 -215
- chromadb_client-0.5.3.dev0/rust/worker/src/system/sender.rs +0 -202
- chromadb_client-0.5.3.dev0/rust/worker/src/system/system.rs +0 -126
- chromadb_client-0.5.3.dev0/rust/worker/src/system/types.rs +0 -213
- chromadb_client-0.5.3.dev0/rust/worker/src/tracing/opentelemetry_config.rs +0 -52
- chromadb_client-0.5.3.dev0/rust/worker/src/types/collection.rs +0 -90
- chromadb_client-0.5.3.dev0/rust/worker/src/types/operation.rs +0 -73
- chromadb_client-0.5.3.dev0/rust/worker/src/types/segment.rs +0 -156
- chromadb_client-0.5.3.dev0/rust/worker/src/utils/mod.rs +0 -3
- chromadb_client-0.5.3.dev0/rust/worker/test.arrow +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.dockerignore +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.gitattributes +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/DEVELOP.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/ISSUE_TEMPLATE/bug_report.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/ISSUE_TEMPLATE/feature_request.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/ISSUE_TEMPLATE/installation_trouble.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/bandit-scan/Dockerfile +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/bandit-scan/action.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/bandit-scan/entrypoint.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/docker/action.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/go/action.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/python/action.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/actions/tilt/action.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/_python-vulnerability-scan.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/pr-review-checklist.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/release-dev-javascript-client.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/release-helm-chart.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.github/workflows/release-hosted.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.gitignore +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/.vscode/settings.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/Cargo.toml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/DEVELOP.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/Dockerfile +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/Dockerfile.windows +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/LICENSE +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/RELEASE_PROCESS.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bandit.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/cluster-test.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/docker_entrypoint.ps1 +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/docker_entrypoint.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/generate_cloudformation.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/python-integration-test +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/templates/docker-compose.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/test-remote +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/test.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/ts-integration-test +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/bin/version +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/api/models/AsyncCollection.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/api/shared_system_client.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/app.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/cli/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/cli/cli.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/cli/utils.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/config.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/base.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/impl/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/impl/sqlite.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/impl/sqlite_pool.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/db/migrations.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/experimental/density_relevance.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/ingest/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/ingest/impl/utils.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/is_thin_client.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/log_config.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/logservice/logservice.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/embeddings_queue/00001-embeddings.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/metadb/00001-embedding-metadata.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/metadb/00002-embedding-metadata.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/metadb/00003-full-text-tokenize.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00001-collections.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00002-segments.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00003-collection-dimension.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00004-tenants-databases.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00005-remove-topic.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/migrations/sysdb/00006-collection-segment-metadata.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/proto/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/py.typed +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/quota/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/quota/test_provider.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/rate_limiting/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/rate_limiting/test_provider.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/distributed/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/manager/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/manager/cache/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/manager/cache/cache.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/metadata/grpc_segment.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/vector/grpc_segment.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/segment/impl/vector/hnsw_params.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/server/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/opentelemetry/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/opentelemetry/fastapi.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/opentelemetry/grpc.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/product/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/telemetry/product/posthog.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/api/test_types.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/auth/strategies.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/auth/test_basic_authn.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/auth/test_simple_rbac_authz.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/auth/test_token_authn.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/create_http_client_with_basic_auth.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/test_cloud_client.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/test_create_http_client.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/test_database_tenant.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/client/test_multiple_clients_concurrency.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00001-migration-1.psql.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00001-migration-1.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00002-migration-2.psql.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00002-migration-2.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00003-migration-3.psql.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/00003-migration-3.sqlite.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/migrations/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/test_base.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/test_hash.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/db/test_migrations.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/distributed/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/ef/test_multimodal_ef.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/openssl.cnf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/property/test_client_url.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/quota/test_static_quota_enforcer.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/rate_limiting/test_rate_limiting.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/distributed/test_memberlist_provider.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/distributed/test_protobuf_translation.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/distributed/test_rendezvous_hash.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/test_metadata.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/segment/test_vector.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/test_chroma.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/test_cli.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/test_client.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/test_config.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/test/utils/test_messagid.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/__init__.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/async_to_sync.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/batch_utils.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/data_loaders.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/delete_file.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/directory.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/distance_functions.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/fastapi.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/lru_cache.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/messageid.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/read_write_lock.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb/utils/rendezvous_hash.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb_client.egg-info/dependency_links.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/chromadb_client.egg-info/top_level.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/.gitignore +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/.prettierignore +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/.prettierrc.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/DEVELOP.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/LICENSE +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/config.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/app.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/index.html +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/index.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/package.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/pnpm-lock.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/browser/vite.config.mjs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/node/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/node/app.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/node/package.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/examples/node/yarn.lock +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/genapi.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/jest.config.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/openapitools.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/package.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/AdminClient.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/ChromaFetch.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/CloudClient.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/Collection.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/Errors.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/auth.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/CohereEmbeddingFunction.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/DefaultEmbeddingFunction.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/GoogleGeminiEmbeddingFunction.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/HuggingFaceEmbeddingServerFunction.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/IEmbeddingFunction.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/JinaEmbeddingFunction.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/OllamaEmbeddingFunction.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/OpenAIEmbeddingFunction.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/embeddings/TransformersEmbeddingFunction.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/generated/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/generated/configuration.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/generated/index.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/generated/runtime.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/index.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/src/utils.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/add.collections.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/admin.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/auth.basic.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/auth.token.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/client.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/collection.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/data.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/delete.collection.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/get.collection.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/initAdminClient.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/initClient.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/initClientWithAuth.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/offline.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/peek.collection.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/query.collection.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/update.collection.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/test/upsert.collections.test.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/tsconfig.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/js/tsup.config.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/build_python_thin_client.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/integration-test.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/is_thin_client.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/clients/python/requirements_dev.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/compose-env.linux +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/compose-env.windows +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docker-compose.server.example.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docker-compose.test-auth.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docker-compose.test.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docker-compose.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP-01022024_SSL_Verify_Client_Config.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP-10112023_Authorization.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP-1_Allow_Filtering_for_Collections.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_2_Auth_Providers_Proposal.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_4_In_Nin_Metadata_Filters.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_5_Large_Batch_Handling_Improvements.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_6_OpenTelemetry_Monitoring.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/CIP_Chroma_Improvment_Proposals.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/CIP-01022024-test_self_signed.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/CIP-10112023_Authorization_Workflow.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/cip-2-arch.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/cip-2-client-side-wf.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/cip-2-seq.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/cip/assets/cip-2-server-side-wf.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/.env.local +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/.gitignore +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/CodeBlock.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/CopyToClipboardButton.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/layout/SideNav.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/layout/TableOfContents.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/layout/state.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/AppLink.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/CodeTab.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/CodeTabs.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Heading.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Math.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Note.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/SpecialTable.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Tab.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/Tabs.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/markdoc/misc.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/alert.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/breadcrumb.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/button.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/dropdown-menu.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/icons.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/menubar.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/scroll-area.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/select.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/tabs.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/toast.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/toaster.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/toggle-theme.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/tooltip.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components/ui/use-toast.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/components.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/lib/utils.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/functions.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/nodes/fence.markdoc.tsx +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/nodes/heading.markdoc.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/nodes/index.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/nodes/link.markdoc.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/partials/header.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/codetabs.markdoc.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/index.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/note.markdoc.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/special_table.markdoc.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/markdoc/tags/tabs.markdoc.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/next-env.d.ts +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/next.config.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/package.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/_sidenav.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/about.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/_sidenav.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/apikeys.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/index.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/performance.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/cloud/teams.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/community.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/contributing.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/_sidenav.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/auth.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/aws.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/azure.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/docker.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/encryption.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/gcp.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/in-memory.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/index.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/kubernetes.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/logging.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/observability.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/performance.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/persistent-client.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/deployment/security.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/docs/index.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/_sidenav.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/agents.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/code.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/documents.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/fastapi.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/index.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/nextjs.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/examples/rails.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/_sidenav.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/adding.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/deleting.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/documents.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/embedding.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/embeddings.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/index.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/indexes.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/loading.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/metadatas.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/multimodal.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/querying.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/splitting.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/guides/updating.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/index.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/_sidenav.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/braintrust.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/cohere.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/google-gemini.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/haystack.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/index.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/instructor.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/langchain.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/llamaindex.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/ollama.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/openai.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/openlit.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/openllmetry.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/roboflow.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/integrations/streamlit.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/_sidenav.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/architecture.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/cheatsheet.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/cli.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/docs.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/index.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/js-client.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/js-collection.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/openapi.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/py-client.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/reference/py-collection.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/roadmap.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/tabs.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/telemetry.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/pages/troubleshooting.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/postcss.config.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/favicon.ico +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/globals.css +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/after.gif +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/chroma-migrate.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/chroma.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/chroma.svg +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/favicon.ico +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/glitch.gif +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/hrm4.svg +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/openllmetry.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/pip.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_fast.svg +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_fast2.svg +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_feature.svg +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_free.svg +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_simple.svg +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/svg_simple2.svg +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/public/img/team.JPG +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/tailwind.config.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/tsconfig.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/docs/docs.trychroma.com/vercel.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/advanced/hadrware-optimized-image.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/alternative_embeddings.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/assets/auh-sequence.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/assets/auth-architecture.png +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/auth.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/authz/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/authz/authz.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/in_not_in_filtering.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/local_persistence.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/start_here.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/test_get_collection_by_id.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/basic_functionality/where_filtering.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/documents/state_of_the_union_2022.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/documents/state_of_the_union_2023.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/load_data.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/main.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/chat_with_your_documents/requirements.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/aws-terraform/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/aws-terraform/chroma.tf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/aws-terraform/startup.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/aws-terraform/variables.tf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/common/startup.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/do-terraform/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/do-terraform/chroma.tf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/do-terraform/variables.tf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/chroma.tf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/main.tf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/startup.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/google-cloud-compute/variables.tf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/render-terraform/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/render-terraform/chroma.tf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/render-terraform/sqlite_version.patch +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/render-terraform/variables.tf +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/systemd-service/chroma-cli.service +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/systemd-service/chroma-docker.service +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/deployments/systemd-service/systemd-service.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/documents/state_of_the_union_2022.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/documents/state_of_the_union_2023.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/load_data.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/main.py +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/gemini/requirements.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/multimodal/multimodal_retrieval.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/observability/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/observability/docker-compose.local-observability.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/observability/otel-collector-config.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/server_side_embeddings/huggingface/docker-compose.yml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/server_side_embeddings/huggingface/test.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/cohere/cohere_js.js +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/cohere/cohere_python.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/cohere/package.json +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/ollama.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/examples/use_with/roboflow/embeddings.ipynb +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/Dockerfile +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/Dockerfile.migration +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/Makefile +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/atlas.hcl +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/cmd/coordinator/main.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/cmd/flag/flag.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/cmd/logservice/main.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/atlas.hcl +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/migrations/20240404181827_initial.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/migrations/atlas.sum +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/schema/record_log.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/database/log/sqlc.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/go.mod +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240313233558.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240321194713.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240327075032.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240327172649.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240411201006.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/migrations/20240612201006.sql +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/Catalog.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/CollectionMetadataValueType.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/Component.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/DBTX.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/GrpcProvider.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/GrpcServer.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ICollectionDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ICollectionMetadataDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ICoordinator.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IDatabaseDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IMemberlistManager.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IMemberlistStore.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IMetaDomain.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/INotificationDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ISegmentDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ISegmentMetadataDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ITenantDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/ITransaction.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/IWatcher.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/LogServiceClient.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/LogServiceServer.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/NodeWatcherCallback.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/NotificationProcessor.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/NotificationStore.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/Notifier.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/SegmentMetadataValueType.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/SysDBClient.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/SysDBServer.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/UnsafeLogServiceServer.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/UnsafeSysDBServer.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/UnsafeVectorReaderServer.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/VectorReaderClient.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/VectorReaderServer.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/isUpdateCollectionRequest_MetadataUpdate.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/isUpdateMetadataValue_Value.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/isUpdateSegmentRequest_CollectionUpdate.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/mocks/isUpdateSegmentRequest_MetadataUpdate.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/common/component.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/common/constants.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/common/errors.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/coordinator.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/collection_service_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/proto_model_convert_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/segment_service.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/server.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/tenant_database_service.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/coordinator/grpc/tenant_database_service_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/grpcutils/config.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/grpcutils/config_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/grpcutils/response.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/grpcutils/service.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/log/configuration/config.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/log/purging/main.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/memberlist_manager/memberlist_manager.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/memberlist_manager/memberlist_manager_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/memberlist_manager/memberlist_store.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/memberlist_manager/node_watcher.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/collection_metadata.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/common.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/database.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/notification.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/segment.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/segment_metadata.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/segment_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/tenant.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dao/tenant_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbcore/core.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/collection_metadata.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/common.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/database.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ICollectionDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ICollectionMetadataDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/IDatabaseDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/IMetaDomain.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/INotificationDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ISegmentDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ISegmentMetadataDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ITenantDb.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/mocks/ITransaction.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/notification.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/segment.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/segment_metadata.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/db/dbmodel/tenant.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/metastore/mocks/Catalog.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/collection_metadata.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/database.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/notification.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/segment.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/segment_metadata.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/model/tenant.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/database_notification_store.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/database_notification_store_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/memory_notification_store.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/memory_notification_store_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/notification_processor.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/notification_processor_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/notification_store.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/notification/notifier.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/types/types.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/integration.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/kubernetes.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/log.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/rendezvous_hash.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/rendezvous_hash_test.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/run.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/pkg/utils/signal.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/script/migrate_up_test.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/shared/libs/db_utils.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/shared/libs/test_utils.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/go/shared/otel/main.go +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/idl/makefile +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/WARNING.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/.helmignore +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/crds/memberlist_crd.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/compaction-service-memberlist-cr.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/compaction-service.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/frontend-service.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/logservice.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/namespace.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/pod-watcher-role.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/query-service-memberlist-cr.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/query-service.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/templates/sysdb-service.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/distributed-chroma/values.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/README.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/jaeger-service.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/minio.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/postgres/Dockerfile +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/postgres/create-multiple-postgresql-databases.sh +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/postgres-service.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/postgres.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/k8s/test/test-memberlist-cr.yaml +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/pull_request_template.md +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/.dockerignore +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/.gitignore +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/bindings.cpp +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/proptest-regressions/blockstore/arrow/blockfile.txt +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/assignment/assignment_policy.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/assignment/config.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/assignment/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/assignment/rendezvous_hash.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/benches/distance_metrics.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/bin/compaction_service.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/bin/query_service.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/bool_key.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/data_record_value.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/f32_key.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/int32array_value.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/roaring_bitmap_value.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/str_key.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/str_value.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/u32_key.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/block/u32_value.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/arrow/types.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/key.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/memory/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/memory/reader_writer.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/memory/storage.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/blockstore/types.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/compactor/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/compactor/scheduler_policy.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/compactor/types.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/distance_avx.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/distance_neon.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/distance_sse.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/distance/types.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/config.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/data/data_chunk.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/data/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/operators/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/execution/orchestration/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/fulltext/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/fulltext/tokenizer.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/hnsw.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/hnsw_provider.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/metadata/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/types.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/index/utils.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/log/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/memberlist/config.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/memberlist/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/segment/config.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/segment/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/storage/local.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/storage/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/sysdb/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/tracing/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/tracing/util.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/flush.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/metadata.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/mod.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/record.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/scalar_encoding.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/segment_scope.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/tenant.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/types/types.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/rust/worker/src/utils/vec.rs +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/setup.cfg +0 -0
- {chromadb_client-0.5.3.dev0 → chromadb_client-0.5.5.dev0}/yarn.lock +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
name: Setup Rust
|
|
2
|
+
description: "This action sets up Rust"
|
|
3
|
+
runs:
|
|
4
|
+
using: "composite"
|
|
5
|
+
steps:
|
|
6
|
+
- name: Checkout chroma-hnswlib
|
|
7
|
+
uses: actions/checkout@v3
|
|
8
|
+
with:
|
|
9
|
+
repository: chroma-core/hnswlib
|
|
10
|
+
path: hnswlib
|
|
11
|
+
- name: Install Protoc
|
|
12
|
+
uses: arduino/setup-protoc@v2
|
|
13
|
+
- name: Cache
|
|
14
|
+
uses: Swatinem/rust-cache@v2
|
|
15
|
+
with:
|
|
16
|
+
workspaces: chroma/rust/worker
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
name: Go tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_call:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
test:
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
platform: [depot-ubuntu-22.04]
|
|
11
|
+
runs-on: ${{ matrix.platform }}
|
|
12
|
+
services:
|
|
13
|
+
postgres:
|
|
14
|
+
image: postgres
|
|
15
|
+
env:
|
|
16
|
+
POSTGRES_USER: chroma
|
|
17
|
+
POSTGRES_PASSWORD: chroma
|
|
18
|
+
POSTGRES_DB: chroma
|
|
19
|
+
options: >-
|
|
20
|
+
--health-cmd pg_isready
|
|
21
|
+
--health-interval 10s
|
|
22
|
+
--health-timeout 5s
|
|
23
|
+
--health-retries 5
|
|
24
|
+
ports:
|
|
25
|
+
- 5432:5432
|
|
26
|
+
steps:
|
|
27
|
+
- name: Checkout
|
|
28
|
+
uses: actions/checkout@v3
|
|
29
|
+
- name: Setup
|
|
30
|
+
uses: ./.github/actions/go
|
|
31
|
+
- name: Build and test
|
|
32
|
+
run: make test
|
|
33
|
+
env:
|
|
34
|
+
POSTGRES_HOST: localhost
|
|
35
|
+
POSTGRES_PORT: 5432
|
|
36
|
+
working-directory: go
|
|
37
|
+
|
|
38
|
+
cluster-test:
|
|
39
|
+
runs-on: "depot-ubuntu-22.04-16"
|
|
40
|
+
steps:
|
|
41
|
+
- name: Checkout
|
|
42
|
+
uses: actions/checkout@v3
|
|
43
|
+
- name: Setup
|
|
44
|
+
uses: ./.github/actions/go
|
|
45
|
+
- uses: ./.github/actions/tilt
|
|
46
|
+
- run: bin/cluster-test.sh bash -c 'cd go && go test -timeout 30s -run ^TestNodeWatcher$ github.com/chroma-core/chroma/go/pkg/memberlist_manager'
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
name: Chroma Python Base Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_call:
|
|
5
|
+
inputs:
|
|
6
|
+
python_versions:
|
|
7
|
+
description: 'Python versions to test (as json array)'
|
|
8
|
+
required: false
|
|
9
|
+
default: '["3.8"]'
|
|
10
|
+
type: string
|
|
11
|
+
property_testing_preset:
|
|
12
|
+
description: 'Property testing preset'
|
|
13
|
+
required: true
|
|
14
|
+
type: string
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
test:
|
|
18
|
+
timeout-minutes: 90
|
|
19
|
+
strategy:
|
|
20
|
+
fail-fast: false
|
|
21
|
+
matrix:
|
|
22
|
+
python: ${{fromJson(inputs.python_versions)}}
|
|
23
|
+
platform: [depot-ubuntu-22.04, windows-latest]
|
|
24
|
+
test-globs: ["--ignore-glob 'chromadb/test/property/*' --ignore-glob 'chromadb/test/stress/*' --ignore-glob 'chromadb/test/distributed/*' --ignore='chromadb/test/auth/test_simple_rbac_authz.py'",
|
|
25
|
+
"chromadb/test/auth/test_simple_rbac_authz.py",
|
|
26
|
+
"chromadb/test/property/test_add.py",
|
|
27
|
+
"chromadb/test/property/test_collections.py",
|
|
28
|
+
"chromadb/test/property/test_collections_with_database_tenant.py",
|
|
29
|
+
"chromadb/test/property/test_collections_with_database_tenant_overwrite.py",
|
|
30
|
+
"chromadb/test/property/test_cross_version_persist.py",
|
|
31
|
+
"chromadb/test/property/test_embeddings.py",
|
|
32
|
+
"chromadb/test/property/test_filtering.py",
|
|
33
|
+
"chromadb/test/property/test_persist.py"]
|
|
34
|
+
include:
|
|
35
|
+
- test-globs: "chromadb/test/property/test_embeddings.py"
|
|
36
|
+
parallelized: true
|
|
37
|
+
|
|
38
|
+
runs-on: ${{ matrix.platform }}
|
|
39
|
+
steps:
|
|
40
|
+
- uses: actions/checkout@v3
|
|
41
|
+
- name: Setup
|
|
42
|
+
uses: ./.github/actions/python
|
|
43
|
+
with:
|
|
44
|
+
python-version: ${{ matrix.python }}
|
|
45
|
+
- name: Test
|
|
46
|
+
run: python -m pytest ${{ matrix.parallelized && '-n auto' || '' }} ${{ matrix.test-globs }}
|
|
47
|
+
shell: bash
|
|
48
|
+
env:
|
|
49
|
+
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
|
|
50
|
+
|
|
51
|
+
# todo: break out stress integration tests
|
|
52
|
+
test-single-node-integration:
|
|
53
|
+
strategy:
|
|
54
|
+
fail-fast: false
|
|
55
|
+
matrix:
|
|
56
|
+
python: ${{fromJson(inputs.python_versions)}}
|
|
57
|
+
platform: [depot-ubuntu-22.04, windows-latest]
|
|
58
|
+
test-globs: ["--ignore-glob 'chromadb/test/property/*' --ignore='chromadb/test/test_cli.py' --ignore-glob 'chromadb/test/distributed/*' --ignore='chromadb/test/auth/test_simple_rbac_authz.py'",
|
|
59
|
+
"chromadb/test/property/test_add.py",
|
|
60
|
+
"chromadb/test/test_cli.py",
|
|
61
|
+
"chromadb/test/auth/test_simple_rbac_authz.py",
|
|
62
|
+
"chromadb/test/property/test_collections.py",
|
|
63
|
+
"chromadb/test/property/test_collections_with_database_tenant.py",
|
|
64
|
+
"chromadb/test/property/test_cross_version_persist.py",
|
|
65
|
+
"chromadb/test/property/test_embeddings.py",
|
|
66
|
+
"chromadb/test/property/test_filtering.py",
|
|
67
|
+
"chromadb/test/property/test_persist.py"]
|
|
68
|
+
include:
|
|
69
|
+
- platform: depot-ubuntu-22.04
|
|
70
|
+
env-file: compose-env.linux
|
|
71
|
+
- platform: windows-latest
|
|
72
|
+
env-file: compose-env.windows
|
|
73
|
+
runs-on: ${{ matrix.platform }}
|
|
74
|
+
steps:
|
|
75
|
+
- name: Checkout
|
|
76
|
+
uses: actions/checkout@v3
|
|
77
|
+
- name: Set up Python (${{ matrix.python }})
|
|
78
|
+
uses: ./.github/actions/python
|
|
79
|
+
- name: Integration Test
|
|
80
|
+
run: bin/python-integration-test ${{ matrix.test-globs }}
|
|
81
|
+
shell: bash
|
|
82
|
+
env:
|
|
83
|
+
ENV_FILE: ${{ matrix.env-file }}
|
|
84
|
+
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
|
|
85
|
+
|
|
86
|
+
test-cluster-integration:
|
|
87
|
+
strategy:
|
|
88
|
+
fail-fast: false
|
|
89
|
+
matrix:
|
|
90
|
+
python: ${{fromJson(inputs.python_versions)}}
|
|
91
|
+
platform: ["depot-ubuntu-22.04-16"]
|
|
92
|
+
test-globs: ["chromadb/test/db/test_system.py",
|
|
93
|
+
"chromadb/test/property/test_collections.py",
|
|
94
|
+
"chromadb/test/property/test_add.py",
|
|
95
|
+
"chromadb/test/property/test_filtering.py",
|
|
96
|
+
"chromadb/test/property/test_embeddings.py",
|
|
97
|
+
"chromadb/test/property/test_collections_with_database_tenant.py",
|
|
98
|
+
"chromadb/test/property/test_collections_with_database_tenant_overwrite.py",
|
|
99
|
+
"chromadb/test/ingest/test_producer_consumer.py",
|
|
100
|
+
"chromadb/test/segment/distributed/test_memberlist_provider.py",
|
|
101
|
+
"chromadb/test/test_logservice.py",
|
|
102
|
+
"chromadb/test/distributed/test_sanity.py"]
|
|
103
|
+
runs-on: ${{ matrix.platform }}
|
|
104
|
+
steps:
|
|
105
|
+
- uses: actions/checkout@v3
|
|
106
|
+
- uses: ./.github/actions/python
|
|
107
|
+
with:
|
|
108
|
+
python-version: ${{ matrix.python }}
|
|
109
|
+
- uses: ./.github/actions/tilt
|
|
110
|
+
- name: Test
|
|
111
|
+
run: bin/cluster-test.sh bash -c 'python -m pytest "${{ matrix.test-globs }}"'
|
|
112
|
+
shell: bash
|
|
113
|
+
env:
|
|
114
|
+
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
|
|
115
|
+
- name: Get logs of all services
|
|
116
|
+
id: get-logs
|
|
117
|
+
if: success() || failure()
|
|
118
|
+
run: |
|
|
119
|
+
bin/get-logs.sh "${{ matrix.test-globs }}"
|
|
120
|
+
# Output the logs zip file path as a job output
|
|
121
|
+
echo "logs_zip_path=$(pwd)/$(basename "${{ matrix.test-globs }}" .py)_logs.zip" >> $GITHUB_OUTPUT
|
|
122
|
+
shell: bash
|
|
123
|
+
- name: Upload logs as artifact
|
|
124
|
+
if: success() || failure()
|
|
125
|
+
uses: actions/upload-artifact@v2
|
|
126
|
+
with:
|
|
127
|
+
name: logs
|
|
128
|
+
path: ${{ steps.get-logs.outputs.logs_zip_path }}
|
|
129
|
+
|
|
130
|
+
test-thin-client:
|
|
131
|
+
strategy:
|
|
132
|
+
matrix:
|
|
133
|
+
python: ${{fromJson(inputs.python_versions)}}
|
|
134
|
+
platform: [depot-ubuntu-22.04] # # todo: should run on Windows, currently failing because Dockerfile doesn't build
|
|
135
|
+
runs-on: ${{ matrix.platform }}
|
|
136
|
+
steps:
|
|
137
|
+
- uses: actions/checkout@v3
|
|
138
|
+
- name: Setup
|
|
139
|
+
uses: ./.github/actions/python
|
|
140
|
+
with:
|
|
141
|
+
python-version: ${{ matrix.python }}
|
|
142
|
+
- name: Test
|
|
143
|
+
run: clients/python/integration-test.sh
|
|
144
|
+
shell: bash
|
|
145
|
+
env:
|
|
146
|
+
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
|
|
147
|
+
|
|
148
|
+
test-stress:
|
|
149
|
+
timeout-minutes: 90
|
|
150
|
+
strategy:
|
|
151
|
+
matrix:
|
|
152
|
+
python: ${{fromJson(inputs.python_versions)}}
|
|
153
|
+
platform: ['depot-ubuntu-22.04-16', '16core-64gb-windows-latest']
|
|
154
|
+
runs-on: ${{ matrix.platform }}
|
|
155
|
+
steps:
|
|
156
|
+
- uses: actions/checkout@v3
|
|
157
|
+
- uses: ./.github/actions/python
|
|
158
|
+
with:
|
|
159
|
+
python-version: ${{ matrix.python }}
|
|
160
|
+
- name: Test
|
|
161
|
+
run: python -m pytest chromadb/test/stress/
|
|
162
|
+
shell: bash
|
|
163
|
+
env:
|
|
164
|
+
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
|
|
165
|
+
|
|
166
|
+
test-single-node-integration-stress:
|
|
167
|
+
strategy:
|
|
168
|
+
matrix:
|
|
169
|
+
python: ${{fromJson(inputs.python_versions)}}
|
|
170
|
+
platform: [depot-ubuntu-22.04] # todo: should run on Windows, currently failing because Dockerfile doesn't build
|
|
171
|
+
runs-on: ${{ matrix.platform }}
|
|
172
|
+
steps:
|
|
173
|
+
- name: Checkout
|
|
174
|
+
uses: actions/checkout@v3
|
|
175
|
+
- name: Set up Python (${{ matrix.python }})
|
|
176
|
+
uses: ./.github/actions/python
|
|
177
|
+
- name: Integration Test
|
|
178
|
+
run: bin/python-integration-test chromadb/test/stress/
|
|
179
|
+
shell: bash
|
|
180
|
+
env:
|
|
181
|
+
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: Rust tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_call:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
test:
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
platform: [depot-ubuntu-22.04]
|
|
11
|
+
runs-on: ${{ matrix.platform }}
|
|
12
|
+
defaults:
|
|
13
|
+
run:
|
|
14
|
+
working-directory: chroma
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout
|
|
17
|
+
uses: actions/checkout@v3
|
|
18
|
+
with:
|
|
19
|
+
path: chroma
|
|
20
|
+
- name: Setup
|
|
21
|
+
uses: ./chroma/.github/actions/rust
|
|
22
|
+
- name: Build
|
|
23
|
+
run: cargo build --verbose
|
|
24
|
+
- name: Test
|
|
25
|
+
run: cargo test --verbose
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: Run (intensive) tests nightly
|
|
2
|
+
on:
|
|
3
|
+
schedule:
|
|
4
|
+
# 2:15 AM PDT, offseted by a few minutes because:
|
|
5
|
+
# "The schedule event can be delayed during periods of high loads of GitHub Actions workflow runs. High load times include the start of every hour. If the load is sufficiently high enough, some queued jobs may be dropped."
|
|
6
|
+
- cron: '15 9 * * *'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test-cluster:
|
|
10
|
+
strategy:
|
|
11
|
+
fail-fast: false
|
|
12
|
+
matrix:
|
|
13
|
+
test-globs: ["chromadb/test/property/test_collections.py",
|
|
14
|
+
"chromadb/test/property/test_add.py",
|
|
15
|
+
"chromadb/test/property/test_filtering.py",
|
|
16
|
+
"chromadb/test/property/test_embeddings.py"]
|
|
17
|
+
runs-on: "depot-ubuntu-22.04-8"
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v3
|
|
20
|
+
- uses: ./.github/actions/python
|
|
21
|
+
with:
|
|
22
|
+
python-version: "3.12"
|
|
23
|
+
- uses: ./.github/actions/tilt
|
|
24
|
+
- name: Test
|
|
25
|
+
run: bin/cluster-test.sh bash -c 'python -m pytest "${{ matrix.test-globs }}"'
|
|
26
|
+
shell: bash
|
|
27
|
+
env:
|
|
28
|
+
PROPERTY_TESTING_PRESET: slow
|
|
29
|
+
- name: Get logs of all services
|
|
30
|
+
id: get-logs
|
|
31
|
+
if: success() || failure()
|
|
32
|
+
run: |
|
|
33
|
+
bin/get-logs.sh "${{ matrix.test-globs }}"
|
|
34
|
+
# Output the logs zip file path as a job output
|
|
35
|
+
echo "logs_zip_path=$(pwd)/$(basename "${{ matrix.test-globs }}" .py)_logs.zip" >> $GITHUB_OUTPUT
|
|
36
|
+
shell: bash
|
|
37
|
+
- name: Upload logs as artifact
|
|
38
|
+
if: success() || failure()
|
|
39
|
+
uses: actions/upload-artifact@v2
|
|
40
|
+
with:
|
|
41
|
+
name: logs
|
|
42
|
+
path: ${{ steps.get-logs.outputs.logs_zip_path }}
|
|
43
|
+
- name: Send PagerDuty alert on failure
|
|
44
|
+
if: ${{ failure() }}
|
|
45
|
+
uses: Entle/action-pagerduty-alert@0.2.0
|
|
46
|
+
with:
|
|
47
|
+
pagerduty-integration-key: '${{ secrets.PAGERDUTY_INTEGRATION_KEY }}'
|
|
48
|
+
pagerduty-dedup-key: distributed-test-failed-${{ matrix.test-globs}}
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
name: PR checks
|
|
2
|
+
on:
|
|
3
|
+
pull_request:
|
|
4
|
+
branches:
|
|
5
|
+
- main
|
|
6
|
+
- '**'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
# GitHub only provides a way to do path filtering at the workflow level rather than the job level.
|
|
10
|
+
# This allows us to selectively run jobs based on changed paths.
|
|
11
|
+
paths-filter:
|
|
12
|
+
name: Get changed paths
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
outputs:
|
|
15
|
+
outside-docs: ${{ steps.changes.outputs.outside-docs }}
|
|
16
|
+
docs: ${{ steps.changes.outputs.docs }}
|
|
17
|
+
steps:
|
|
18
|
+
- name: Get changed paths
|
|
19
|
+
id: changes
|
|
20
|
+
uses: dorny/paths-filter@v3
|
|
21
|
+
with:
|
|
22
|
+
predicate-quantifier: 'every'
|
|
23
|
+
filters: |
|
|
24
|
+
outside-docs:
|
|
25
|
+
- '!docs/**'
|
|
26
|
+
docs:
|
|
27
|
+
- 'docs/**'
|
|
28
|
+
|
|
29
|
+
deploy-docs-preview:
|
|
30
|
+
name: Deploy preview of docs
|
|
31
|
+
needs: paths-filter
|
|
32
|
+
if: needs.paths-filter.outputs.docs == 'true'
|
|
33
|
+
runs-on: depot-ubuntu-22.04-small
|
|
34
|
+
environment:
|
|
35
|
+
name: Preview
|
|
36
|
+
url: ${{ steps.deploy.outputs.url }}
|
|
37
|
+
steps:
|
|
38
|
+
- name: Checkout
|
|
39
|
+
uses: actions/checkout@v3
|
|
40
|
+
with:
|
|
41
|
+
fetch-depth: 0
|
|
42
|
+
- uses: actions/setup-node@v3
|
|
43
|
+
with:
|
|
44
|
+
node-version: "18.x"
|
|
45
|
+
registry-url: "https://registry.npmjs.org"
|
|
46
|
+
- name: Install vercel
|
|
47
|
+
run: npm install -g vercel
|
|
48
|
+
- name: Deploy
|
|
49
|
+
id: deploy
|
|
50
|
+
run: echo "url=$(vercel deploy --token ${{ secrets.VERCEL_TOKEN }})" >> $GITHUB_OUTPUT
|
|
51
|
+
env:
|
|
52
|
+
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
|
|
53
|
+
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_DOCS_PROJECT_ID }}
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
python-tests:
|
|
57
|
+
name: Python tests
|
|
58
|
+
needs: paths-filter
|
|
59
|
+
if: needs.paths-filter.outputs.outside-docs == 'true'
|
|
60
|
+
uses: ./.github/workflows/_python-tests.yml
|
|
61
|
+
with:
|
|
62
|
+
property_testing_preset: 'fast'
|
|
63
|
+
|
|
64
|
+
python-vulnerability-scan:
|
|
65
|
+
name: Python vulnerability scan
|
|
66
|
+
needs: paths-filter
|
|
67
|
+
if: needs.paths-filter.outputs.outside-docs == 'true'
|
|
68
|
+
uses: ./.github/workflows/_python-vulnerability-scan.yml
|
|
69
|
+
|
|
70
|
+
javascript-client-tests:
|
|
71
|
+
name: JavaScript client tests
|
|
72
|
+
needs: paths-filter
|
|
73
|
+
if: needs.paths-filter.outputs.outside-docs == 'true'
|
|
74
|
+
uses: ./.github/workflows/_javascript-client-tests.yml
|
|
75
|
+
|
|
76
|
+
rust-tests:
|
|
77
|
+
name: Rust tests
|
|
78
|
+
needs: paths-filter
|
|
79
|
+
if: needs.paths-filter.outputs.outside-docs == 'true'
|
|
80
|
+
uses: ./.github/workflows/_rust-tests.yml
|
|
81
|
+
|
|
82
|
+
go-tests:
|
|
83
|
+
name: Go tests
|
|
84
|
+
needs: paths-filter
|
|
85
|
+
if: needs.paths-filter.outputs.outside-docs == 'true'
|
|
86
|
+
uses: ./.github/workflows/_go-tests.yml
|
|
87
|
+
|
|
88
|
+
check-title:
|
|
89
|
+
name: Check PR Title
|
|
90
|
+
runs-on: ubuntu-latest
|
|
91
|
+
steps:
|
|
92
|
+
- name: Check PR Title
|
|
93
|
+
uses: Slashgear/action-check-pr-title@v4.3.0
|
|
94
|
+
with:
|
|
95
|
+
regexp: '\[(ENH|BUG|DOC|TST|BLD|PERF|TYP|CLN|CHORE|RELEASE)\].*'
|
|
96
|
+
helpMessage: "Please tag your PR title. See https://docs.trychroma.com/contributing#contributing-code-and-ideas. You must push new code to this PR for this check to run again."
|
|
97
|
+
- name: Comment explaining failure
|
|
98
|
+
if: failure()
|
|
99
|
+
uses: actions/github-script@v6
|
|
100
|
+
with:
|
|
101
|
+
script: |
|
|
102
|
+
github.rest.issues.createComment({
|
|
103
|
+
issue_number: context.issue.number,
|
|
104
|
+
owner: context.repo.owner,
|
|
105
|
+
repo: context.repo.repo,
|
|
106
|
+
body: 'Please tag your PR title with one of: \\[ENH | BUG | DOC | TST | BLD | PERF | TYP | CLN | CHORE\\]. See https://docs.trychroma.com/contributing#contributing-code-and-ideas'
|
|
107
|
+
})
|
|
108
|
+
|
|
109
|
+
lint:
|
|
110
|
+
name: Lint
|
|
111
|
+
runs-on: ubuntu-latest
|
|
112
|
+
steps:
|
|
113
|
+
- name: Checkout
|
|
114
|
+
uses: actions/checkout@v3
|
|
115
|
+
- name: Set up Python
|
|
116
|
+
uses: actions/setup-python@v4
|
|
117
|
+
- name: Install pre-commit
|
|
118
|
+
shell: bash
|
|
119
|
+
run: python -m pip install -r requirements_dev.txt
|
|
120
|
+
- name: Run pre-commit
|
|
121
|
+
shell: bash
|
|
122
|
+
run: |
|
|
123
|
+
pre-commit run --all-files trailing-whitespace
|
|
124
|
+
pre-commit run --all-files mixed-line-ending
|
|
125
|
+
pre-commit run --all-files end-of-file-fixer
|
|
126
|
+
pre-commit run --all-files requirements-txt-fixer
|
|
127
|
+
pre-commit run --all-files check-xml
|
|
128
|
+
pre-commit run --all-files check-merge-conflict
|
|
129
|
+
pre-commit run --all-files check-case-conflict
|
|
130
|
+
pre-commit run --all-files check-docstring-first
|
|
131
|
+
pre-commit run --all-files black
|
|
132
|
+
pre-commit run --all-files flake8
|
|
133
|
+
pre-commit run --all-files prettier
|
|
134
|
+
pre-commit run --all-files check-yaml
|
|
135
|
+
- name: Cargo fmt check
|
|
136
|
+
shell: bash
|
|
137
|
+
run: cargo fmt -- --check
|
|
138
|
+
|
|
139
|
+
# This job exists for our branch protection rule.
|
|
140
|
+
# We want to require status checks to pass before merging, but the set of
|
|
141
|
+
# checks that run for any given PR is dynamic based on the files changed.
|
|
142
|
+
# When creating a branch protection rule, you have to specify a static list
|
|
143
|
+
# of checks.
|
|
144
|
+
# So since this job always runs, we can specify it in the branch protection rule.
|
|
145
|
+
all-required-pr-checks-passed:
|
|
146
|
+
if: always()
|
|
147
|
+
needs:
|
|
148
|
+
- python-tests
|
|
149
|
+
- python-vulnerability-scan
|
|
150
|
+
- javascript-client-tests
|
|
151
|
+
- rust-tests
|
|
152
|
+
- go-tests
|
|
153
|
+
- check-title
|
|
154
|
+
- lint
|
|
155
|
+
runs-on: ubuntu-latest
|
|
156
|
+
steps:
|
|
157
|
+
- name: Decide whether the needed jobs succeeded or failed
|
|
158
|
+
uses: re-actors/alls-green@release/v1
|
|
159
|
+
with:
|
|
160
|
+
jobs: ${{ toJSON(needs) }}
|
|
161
|
+
allowed-skips: python-tests,python-vulnerability-scan,javascript-client-tests,rust-tests,go-tests
|