.dockerignore
.gitignore
.pre-commit-config.yaml
DEVELOP.md
Dockerfile
LICENSE
README.md
RELEASE_PROCESS.md
docker-compose.server.example.yml
docker-compose.test.yml
docker-compose.yml
log_config.yml
pull_request_template.md
pyproject.toml
requirements.txt
requirements_dev.txt
.github/ISSUE_TEMPLATE/bug_report.yaml
.github/ISSUE_TEMPLATE/feature_request.yaml
.github/ISSUE_TEMPLATE/installation_trouble.yaml
.github/workflows/chroma-client-integration-test.yml
.github/workflows/chroma-integration-test.yml
.github/workflows/chroma-release-python-client.yml
.github/workflows/chroma-release.yml
.github/workflows/chroma-test.yml
.github/workflows/pr-review-checklist.yml
.vscode/settings.json
bin/build
bin/docker_entrypoint.sh
bin/generate_cloudformation.py
bin/integration-test
bin/test-package.sh
bin/test-remote
bin/test.py
bin/version
bin/windows_upgrade_sqlite.py
bin/templates/docker-compose.yml
chromadb/__init__.py
chromadb/app.py
chromadb/config.py
chromadb/errors.py
chromadb/is_thin_client.py
chromadb/py.typed
chromadb/types.py
chromadb/api/__init__.py
chromadb/api/fastapi.py
chromadb/api/segment.py
chromadb/api/types.py
chromadb/api/models/Collection.py
chromadb/db/__init__.py
chromadb/db/base.py
chromadb/db/migrations.py
chromadb/db/system.py
chromadb/db/impl/__init__.py
chromadb/db/impl/sqlite.py
chromadb/db/impl/sqlite_pool.py
chromadb/db/mixins/embeddings_queue.py
chromadb/db/mixins/sysdb.py
chromadb/experimental/density_relevance.ipynb
chromadb/ingest/__init__.py
chromadb/migrations/__init__.py
chromadb/migrations/embeddings_queue/00001-embeddings.sqlite.sql
chromadb/migrations/metadb/00001-embedding-metadata.sqlite.sql
chromadb/migrations/metadb/00002-embedding-metadata.sqlite.sql
chromadb/migrations/sysdb/00001-collections.sqlite.sql
chromadb/migrations/sysdb/00002-segments.sqlite.sql
chromadb/migrations/sysdb/00003-collection-dimension.sqlite.sql
chromadb/segment/__init__.py
chromadb/segment/impl/manager/local.py
chromadb/segment/impl/metadata/sqlite.py
chromadb/segment/impl/vector/batch.py
chromadb/segment/impl/vector/brute_force_index.py
chromadb/segment/impl/vector/hnsw_params.py
chromadb/segment/impl/vector/local_hnsw.py
chromadb/segment/impl/vector/local_persistent_hnsw.py
chromadb/server/__init__.py
chromadb/server/fastapi/__init__.py
chromadb/server/fastapi/types.py
chromadb/telemetry/__init__.py
chromadb/telemetry/events.py
chromadb/telemetry/posthog.py
chromadb/test/conftest.py
chromadb/test/test_api.py
chromadb/test/test_chroma.py
chromadb/test/test_client.py
chromadb/test/test_config.py
chromadb/test/test_multithreaded.py
chromadb/test/db/test_base.py
chromadb/test/db/test_migrations.py
chromadb/test/db/test_system.py
chromadb/test/db/migrations/00001-migration-1.psql.sql
chromadb/test/db/migrations/00001-migration-1.sqlite.sql
chromadb/test/db/migrations/00002-migration-2.psql.sql
chromadb/test/db/migrations/00002-migration-2.sqlite.sql
chromadb/test/db/migrations/00003-migration-3.psql.sql
chromadb/test/db/migrations/00003-migration-3.sqlite.sql
chromadb/test/db/migrations/__init__.py
chromadb/test/ingest/test_producer_consumer.py
chromadb/test/property/invariants.py
chromadb/test/property/strategies.py
chromadb/test/property/test_add.py
chromadb/test/property/test_collections.py
chromadb/test/property/test_cross_version_persist.py
chromadb/test/property/test_embeddings.py
chromadb/test/property/test_filtering.py
chromadb/test/property/test_persist.py
chromadb/test/segment/test_metadata.py
chromadb/test/segment/test_vector.py
chromadb/test/stress/test_many_collections.py
chromadb/test/utils/test_messagid.py
chromadb/utils/__init__.py
chromadb/utils/delete_file.py
chromadb/utils/distance_functions.py
chromadb/utils/embedding_functions.py
chromadb/utils/lru_cache.py
chromadb/utils/messageid.py
chromadb/utils/read_write_lock.py
chromadb_client.egg-info/PKG-INFO
chromadb_client.egg-info/SOURCES.txt
chromadb_client.egg-info/dependency_links.txt
chromadb_client.egg-info/requires.txt
chromadb_client.egg-info/top_level.txt
clients/js/.gitignore
clients/js/.prettierignore
clients/js/.prettierrc.json
clients/js/DEVELOP.md
clients/js/LICENSE
clients/js/README.md
clients/js/config.yml
clients/js/genapi.sh
clients/js/jest.config.ts
clients/js/openapitools.json
clients/js/package-lock.json
clients/js/package.json
clients/js/tsconfig.json
clients/js/tsconfig.module.json
clients/js/yarn.lock
clients/js/examples/browser/README.md
clients/js/examples/browser/app.ts
clients/js/examples/browser/index.html
clients/js/examples/browser/package.json
clients/js/examples/browser/yarn.lock
clients/js/examples/node/README.md
clients/js/examples/node/app.js
clients/js/examples/node/package.json
clients/js/examples/node/yarn.lock
clients/js/src/ChromaClient.ts
clients/js/src/Collection.ts
clients/js/src/index.ts
clients/js/src/types.ts
clients/js/src/utils.ts
clients/js/src/embeddings/CohereEmbeddingFunction.ts
clients/js/src/embeddings/IEmbeddingFunction.ts
clients/js/src/embeddings/OpenAIEmbeddingFunction.ts
clients/js/src/embeddings/TransformersEmbeddingFunction.ts
clients/js/src/embeddings/WebAIEmbeddingFunction.ts
clients/js/src/generated/README.md
clients/js/src/generated/api.ts
clients/js/src/generated/configuration.ts
clients/js/src/generated/index.ts
clients/js/src/generated/models.ts
clients/js/src/generated/runtime.ts
clients/js/test/add.collections.test.ts
clients/js/test/client.test.ts
clients/js/test/collection.client.test.ts
clients/js/test/collection.test.ts
clients/js/test/data.ts
clients/js/test/delete.collection.test.ts
clients/js/test/get.collection.test.ts
clients/js/test/initClient.ts
clients/js/test/peek.collection.test.ts
clients/js/test/query.collection.test.ts
clients/js/test/update.collection.test.ts
clients/js/test/upsert.collections.test.ts
clients/python/README.md
clients/python/build_python_thin_client.sh
clients/python/integration-test.sh
clients/python/is_thin_client.py
clients/python/pyproject.toml
docs/CIP_Chroma_Improvment_Proposals.md
examples/README.md
examples/basic_functionality/alternative_embeddings.ipynb
examples/basic_functionality/local_persistence.ipynb
examples/basic_functionality/start_here.ipynb
examples/basic_functionality/where_filtering.ipynb
examples/chat_with_your_documents/README.md
examples/chat_with_your_documents/load_data.py
examples/chat_with_your_documents/main.py
examples/chat_with_your_documents/requirements.txt
examples/chat_with_your_documents/documents/state_of_the_union_2022.txt
examples/chat_with_your_documents/documents/state_of_the_union_2023.txt
examples/deployments/google-cloud-compute/README.md
examples/deployments/google-cloud-compute/chroma.tf
examples/deployments/google-cloud-compute/main.tf
examples/deployments/google-cloud-compute/startup.sh
examples/deployments/google-cloud-compute/variables.tf
examples/use_with/cohere/cohere_js.js
examples/use_with/cohere/cohere_python.ipynb
examples/use_with/cohere/package.json