修改为东南天坐标系

This commit is contained in:
2026-01-20 09:49:52 +08:00
parent 9538757047
commit 333fad40ac
7201 changed files with 1030888 additions and 85410 deletions

View File

@@ -0,0 +1,152 @@
Metadata-Version: 2.4
Name: chromadb
Version: 1.4.1
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Dist: build>=1.0.3
Requires-Dist: pydantic>=1.9
Requires-Dist: pybase64>=1.4.1
Requires-Dist: uvicorn[standard]>=0.18.3
Requires-Dist: numpy>=1.22.5
Requires-Dist: posthog>=2.4.0,<6.0.0
Requires-Dist: typing-extensions>=4.5.0
Requires-Dist: onnxruntime>=1.14.1
Requires-Dist: opentelemetry-api>=1.2.0
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc>=1.2.0
Requires-Dist: opentelemetry-sdk>=1.2.0
Requires-Dist: tokenizers>=0.13.2
Requires-Dist: pypika>=0.48.9
Requires-Dist: tqdm>=4.65.0
Requires-Dist: overrides>=7.3.1
Requires-Dist: importlib-resources
Requires-Dist: graphlib-backport>=1.0.3 ; python_full_version < '3.9'
Requires-Dist: grpcio>=1.58.0
Requires-Dist: bcrypt>=4.0.1
Requires-Dist: typer>=0.9.0
Requires-Dist: kubernetes>=28.1.0
Requires-Dist: tenacity>=8.2.3
Requires-Dist: pyyaml>=6.0.0
Requires-Dist: mmh3>=4.0.1
Requires-Dist: orjson>=3.9.12
Requires-Dist: httpx>=0.27.0
Requires-Dist: rich>=10.11.0
Requires-Dist: jsonschema>=4.19.0
Requires-Dist: chroma-hnswlib==0.7.6 ; extra == 'dev'
Requires-Dist: fastapi>=0.115.9 ; extra == 'dev'
Requires-Dist: opentelemetry-instrumentation-fastapi>=0.41b0 ; extra == 'dev'
Provides-Extra: dev
License-File: LICENSE
Summary: Chroma.
Author-email: Jeff Huber <jeff@trychroma.com>, Anton Troynikov <anton@trychroma.com>
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Bug Tracker, https://github.com/chroma-core/chroma/issues
Project-URL: Homepage, https://github.com/chroma-core/chroma
![Chroma](./docs/docs.trychroma.com/public/chroma-wordmark-color.png#gh-light-mode-only)
![Chroma](./docs/docs.trychroma.com/public/chroma-wordmark-white.png#gh-dark-mode-only)
<p align="center">
<b>Chroma - the open-source embedding database</b>. <br />
The fastest way to build Python or JavaScript LLM apps with memory!
</p>
<p align="center">
<a href="https://discord.gg/MMeYNTmh3x" target="_blank">
<img src="https://img.shields.io/discord/1073293645303795742?cacheSeconds=3600" alt="Discord">
</a> |
<a href="https://github.com/chroma-core/chroma/blob/master/LICENSE" target="_blank">
<img src="https://img.shields.io/badge/License-Apache_2.0-blue.svg" alt="License">
</a> |
<a href="https://docs.trychroma.com/" target="_blank">
Docs
</a> |
<a href="https://www.trychroma.com/" target="_blank">
Homepage
</a>
</p>
```bash
pip install chromadb # python client
# for javascript, npm install chromadb!
# for client-server mode, chroma run --path /chroma_db_path
```
## Chroma Cloud
Our hosted service, Chroma Cloud, powers serverless vector and full-text search. It's extremely fast, cost-effective, scalable and painless. Create a DB and try it out in under 30 seconds with $5 of free credits.
[Get started with Chroma Cloud](https://trychroma.com/signup)
## API
The core API is only 4 functions (run our [💡 Google Colab](https://colab.research.google.com/drive/1QEzFyqnoFxq7LUGyP1vzR4iLt9PpCDXv?usp=sharing)):
```python
import chromadb
# setup Chroma in-memory, for easy prototyping. Can add persistence easily!
client = chromadb.Client()
# Create collection. get_collection, get_or_create_collection, delete_collection also available!
collection = client.create_collection("all-my-documents")
# Add docs to the collection. Can also update and delete. Row-based API coming soon!
collection.add(
documents=["This is document1", "This is document2"], # we handle tokenization, embedding, and indexing automatically. You can skip that and add your own embeddings as well
metadatas=[{"source": "notion"}, {"source": "google-docs"}], # filter on these!
ids=["doc1", "doc2"], # unique for each doc
)
# Query/search 2 most similar results. You can also .get by id
results = collection.query(
query_texts=["This is a query document"],
n_results=2,
# where={"metadata_field": "is_equal_to_this"}, # optional filter
# where_document={"$contains":"search_string"} # optional filter
)
```
Learn about all features on our [Docs](https://docs.trychroma.com)
## Features
- __Simple__: Fully-typed, fully-tested, fully-documented == happiness
- __Integrations__: [`🦜️🔗 LangChain`](https://blog.langchain.dev/langchain-chroma/) (python and js), [`🦙 LlamaIndex`](https://twitter.com/atroyn/status/1628557389762007040) and more soon
- __Dev, Test, Prod__: the same API that runs in your python notebook, scales to your cluster
- __Feature-rich__: Queries, filtering, regex and more
- __Free & Open Source__: Apache 2.0 Licensed
## Use case: ChatGPT for ______
For example, the `"Chat your data"` use case:
1. Add documents to your database. You can pass in your own embeddings, embedding function, or let Chroma embed them for you.
2. Query relevant documents with natural language.
3. Compose documents into the context window of an LLM like `GPT4` for additional summarization or analysis.
## Embeddings?
What are embeddings?
- [Read the guide from OpenAI](https://platform.openai.com/docs/guides/embeddings/what-are-embeddings)
- __Literal__: Embedding something turns it from image/text/audio into a list of numbers. 🖼️ or 📄 => `[1.2, 2.1, ....]`. This process makes documents "understandable" to a machine learning model.
- __By analogy__: An embedding represents the essence of a document. This enables documents and queries with the same essence to be "near" each other and therefore easy to find.
- __Technical__: An embedding is the latent-space position of a document at a layer of a deep neural network. For models trained specifically to embed data, this is the last layer.
- __A small example__: If you search your photos for "famous bridge in San Francisco". By embedding this query and comparing it to the embeddings of your photos and their metadata - it should return photos of the Golden Gate Bridge.
Embeddings databases (also known as **vector databases**) store embeddings and allow you to search by nearest neighbors rather than by substrings like a traditional database. By default, Chroma uses [Sentence Transformers](https://docs.trychroma.com/guides/embeddings#default:-all-minilm-l6-v2) to embed for you but you can also use OpenAI embeddings, Cohere (multilingual) embeddings, or your own.
## Get involved
Chroma is a rapidly developing project. We welcome PR contributors and ideas for how to improve the project.
- [Join the conversation on Discord](https://discord.gg/MMeYNTmh3x) - `#contributing` channel
- [Review the 🛣️ Roadmap and contribute your ideas](https://docs.trychroma.com/roadmap)
- [Grab an issue and open a PR](https://github.com/chroma-core/chroma/issues) - [`Good first issue tag`](https://github.com/chroma-core/chroma/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)
- [Read our contributing guide](https://docs.trychroma.com/contributing)
**Release Cadence**
We currently release new tagged versions of the `pypi` and `npm` packages on Mondays. Hotfixes go out at any time during the week.
## License
[Apache 2.0](./LICENSE)

View File

@@ -0,0 +1,487 @@
../../../bin/chroma,sha256=M0_GMXYo5F3OVnQGYH_-UCCgmwF2dHoaA1CnzFpwSd8,232
chromadb-1.4.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
chromadb-1.4.1.dist-info/METADATA,sha256=-zfK7m4l3WaZwYltRRKy-QmglPj3Z_h-aJMyQLjjT4A,7235
chromadb-1.4.1.dist-info/RECORD,,
chromadb-1.4.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb-1.4.1.dist-info/WHEEL,sha256=0AtLDNJaSPtTZynHezAO46k0tgcrITaPrhsfvVrpJ_U,143
chromadb-1.4.1.dist-info/entry_points.txt,sha256=vb__WRXGM9B5tQ1Ysrcp3LIgagWxYfyNsd0NS8C_08U,46
chromadb-1.4.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
chromadb/__init__.py,sha256=gqHPHsPd2Q4LeMNotC6vEYn6Uu9zqRutuWaZdaiI_3c,14747
chromadb/__pycache__/__init__.cpython-313.pyc,,
chromadb/__pycache__/app.cpython-313.pyc,,
chromadb/__pycache__/base_types.cpython-313.pyc,,
chromadb/__pycache__/config.cpython-313.pyc,,
chromadb/__pycache__/errors.cpython-313.pyc,,
chromadb/__pycache__/serde.cpython-313.pyc,,
chromadb/__pycache__/types.cpython-313.pyc,,
chromadb/api/__init__.py,sha256=oIw0ghewWCZBREovrG8g6lR81rnE6XJonDmOfPdUIZE,26728
chromadb/api/__pycache__/__init__.cpython-313.pyc,,
chromadb/api/__pycache__/async_api.cpython-313.pyc,,
chromadb/api/__pycache__/async_client.cpython-313.pyc,,
chromadb/api/__pycache__/async_fastapi.cpython-313.pyc,,
chromadb/api/__pycache__/base_http_client.cpython-313.pyc,,
chromadb/api/__pycache__/client.cpython-313.pyc,,
chromadb/api/__pycache__/collection_configuration.cpython-313.pyc,,
chromadb/api/__pycache__/configuration.cpython-313.pyc,,
chromadb/api/__pycache__/fastapi.cpython-313.pyc,,
chromadb/api/__pycache__/functions.cpython-313.pyc,,
chromadb/api/__pycache__/rust.cpython-313.pyc,,
chromadb/api/__pycache__/segment.cpython-313.pyc,,
chromadb/api/__pycache__/shared_system_client.cpython-313.pyc,,
chromadb/api/__pycache__/types.cpython-313.pyc,,
chromadb/api/async_api.py,sha256=TMcCs6AzoVMA9E5hnZAVwre5kY0cYSghF82pjp4s1E0,24002
chromadb/api/async_client.py,sha256=mHUNDNBrv7uNiEXg97vj6J88-aaCsfb14iU7o-VcIno,16808
chromadb/api/async_fastapi.py,sha256=xCJheavhw5N7KBsKb_ckbks0bIOU50EKwN7HD3-46vg,26833
chromadb/api/base_http_client.py,sha256=rjd2NEqtcAUiLkzXIPPVE0yRQBE6-PQmZVvhDAqc4wA,5266
chromadb/api/client.py,sha256=1yg2F_1TMxdN0OLfJrRQnXFx5zfLQrNqc3SC4LCF3bU,16968
chromadb/api/collection_configuration.py,sha256=9XSTOQ3gnS5577WSXTexcbA83tkHsV1w_ijNQuUoHDg,32023
chromadb/api/configuration.py,sha256=2ltgx7IlvTl6i2du23yMl0f-YviY9Jib9xd7Rz4n-80,15173
chromadb/api/fastapi.py,sha256=WZoh1vuEPmMLoUMypIwug0LFOG34pt7F8XJPGpdUu5s,29710
chromadb/api/functions.py,sha256=-0zRqxBgWhHEXXpvRRZe-e_Ha_Atxq8FtPI0uyzdSdo,990
chromadb/api/models/AsyncCollection.py,sha256=oD9_v9KXn1kmmxO6LnOdf6G-oHnC7KEs7pYh1jTYNwM,20063
chromadb/api/models/AttachedFunction.py,sha256=0sgDmGZmueTvF1hBM4Nsar7CMFgtKn3pVoaqwfPDiiw,4575
chromadb/api/models/Collection.py,sha256=JsNQ1PIOgw69L83NpNSxugYOaou-Vi-TmB4X7hP6FAk,23106
chromadb/api/models/CollectionCommon.py,sha256=SqRGc9lXTAhm1dLOS-DxbfTB4GclbyrPiQVIL-QAHpE,35801
chromadb/api/models/__pycache__/AsyncCollection.cpython-313.pyc,,
chromadb/api/models/__pycache__/AttachedFunction.cpython-313.pyc,,
chromadb/api/models/__pycache__/Collection.cpython-313.pyc,,
chromadb/api/models/__pycache__/CollectionCommon.cpython-313.pyc,,
chromadb/api/rust.py,sha256=krFXLKBaKWzFrayJOi1CVuiQtL6NKYKBghIrSiTiAQE,21853
chromadb/api/segment.py,sha256=2bRIT69__e2KXDpeQIO-CkXXfMScHCaA2VKxFe2vWNM,37277
chromadb/api/shared_system_client.py,sha256=EXbH7gVOb1s2stVE3h2Clp0v9CU-JjrG8xzr7Vo5oT8,5732
chromadb/api/types.py,sha256=QbXAkEgm7zWguyKIUQdx32FCwsYSt3Q8nuyzdQsL6lM,108033
chromadb/app.py,sha256=GzDY70YzAUqrWgqG9kxD4ItB4OkynjiGIEGchk0hhNA,168
chromadb/auth/__init__.py,sha256=-sAzhNhFu_4wA7uCbkO6-n5kVN9MFo1b1DxS9KO2oeg,8151
chromadb/auth/__pycache__/__init__.cpython-313.pyc,,
chromadb/auth/basic_authn/__init__.py,sha256=1PZm8LDsYuhUZMLFFC-9vQNy-wGb5WmHiuH6OExBNDg,5092
chromadb/auth/basic_authn/__pycache__/__init__.cpython-313.pyc,,
chromadb/auth/simple_rbac_authz/__init__.py,sha256=LdWxxv5EKF7hnX-3NEBF7RldDTmBSBVqP1ImW8dCBFI,2643
chromadb/auth/simple_rbac_authz/__pycache__/__init__.cpython-313.pyc,,
chromadb/auth/token_authn/__init__.py,sha256=FT3S8kcvF9Lp_hVvpMyMsHqJ1KrYDw2K6fkcFAE9qxM,8328
chromadb/auth/token_authn/__pycache__/__init__.cpython-313.pyc,,
chromadb/auth/utils/__init__.py,sha256=lAenmURiL5N_cem6xU915gJP4_0Eu1yAtWXaJDWbAyw,3727
chromadb/auth/utils/__pycache__/__init__.cpython-313.pyc,,
chromadb/base_types.py,sha256=pElQIl7pUkoCEOYD-0TZAGg2piURMnYxJIayShhsicA,5797
chromadb/chromadb_rust_bindings.pyi,sha256=vBh-Z2ARFEq77ASNPL9-weeJvKxqm15h3SWn99a-g_0,5766
chromadb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/cli/__pycache__/__init__.cpython-313.pyc,,
chromadb/cli/__pycache__/cli.cpython-313.pyc,,
chromadb/cli/__pycache__/utils.cpython-313.pyc,,
chromadb/cli/cli.py,sha256=oAXupaJMOfPhq9ttZ5vQ0EzkwKP7oT-iYhjK8wlJn94,1494
chromadb/cli/utils.py,sha256=W11wgM0emYAkvrNlKVWfG-a7z47Ds_7CAS9F5Vm5Ss0,1247
chromadb/config.py,sha256=hPuJdnLnumuGFCT3x0jwzfF6z17iWrwxbta3SlvcJCI,18669
chromadb/db/__init__.py,sha256=BD8rjF_qJdNYq3J8T7KDuDu6Rw9gbanx9ZM5Hw0B7s8,3040
chromadb/db/__pycache__/__init__.cpython-313.pyc,,
chromadb/db/__pycache__/base.cpython-313.pyc,,
chromadb/db/__pycache__/migrations.cpython-313.pyc,,
chromadb/db/__pycache__/system.cpython-313.pyc,,
chromadb/db/base.py,sha256=E3PkE2CxmFMPs7PQyhOV5XmRwkTPpGHHv7UigpgeBw0,5765
chromadb/db/impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/db/impl/__pycache__/__init__.cpython-313.pyc,,
chromadb/db/impl/__pycache__/sqlite.cpython-313.pyc,,
chromadb/db/impl/__pycache__/sqlite_pool.cpython-313.pyc,,
chromadb/db/impl/grpc/__pycache__/client.cpython-313.pyc,,
chromadb/db/impl/grpc/__pycache__/server.cpython-313.pyc,,
chromadb/db/impl/grpc/client.py,sha256=KimHR_YhhqNzdQ4eJNCwM9ljzNU_B5kEI9Sl0HB6Muw,20385
chromadb/db/impl/grpc/server.py,sha256=9ehZKt1nhaKHedOq0D1v9vK0mqXXt49l67bn9i6pBFY,20729
chromadb/db/impl/sqlite.py,sha256=8yzpROlhYz-fmgN82AVZszixTZgZXSwKO_fH_46WbEc,9430
chromadb/db/impl/sqlite_pool.py,sha256=Y1p5aWF-rT1poxAhfFWx3vYvrS6iLOxJpvp0LYQnLoI,5372
chromadb/db/migrations.py,sha256=HC2pYXYkuXxjb-mHRxqciD8XmknkJQ9MUbRuIE3pGnY,9630
chromadb/db/mixins/__pycache__/embeddings_queue.cpython-313.pyc,,
chromadb/db/mixins/__pycache__/sysdb.cpython-313.pyc,,
chromadb/db/mixins/embeddings_queue.py,sha256=ZiCIqKzSKvmNA9NqbUt8-CfCYniTY_nBjn_77Vvp2k8,19325
chromadb/db/mixins/sysdb.py,sha256=ZeqRsktFlUSiuouAQZVmYqTsdj_N6fZpbv94bzIbEO0,36955
chromadb/db/system.py,sha256=4BVJZN1bCfniRyB3kgQ1G-6gAzWqH_VXqfYoIgKU8_c,6207
chromadb/errors.py,sha256=x4t7XqgT7tTk8KQ7UPhhYvFHue2YePbKEc6F7CZF8XE,4018
chromadb/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/execution/__pycache__/__init__.cpython-313.pyc,,
chromadb/execution/executor/__pycache__/abstract.cpython-313.pyc,,
chromadb/execution/executor/__pycache__/distributed.cpython-313.pyc,,
chromadb/execution/executor/__pycache__/local.cpython-313.pyc,,
chromadb/execution/executor/abstract.py,sha256=thw-jwNX1F2iuwYh3bJFrDxtcBe-5aiGdmwdmPFbK2o,470
chromadb/execution/executor/distributed.py,sha256=XtATaxzDeo3nBhl11L6J1byenWiBA_QaNpMNQaoYDIA,9035
chromadb/execution/executor/local.py,sha256=4J4IDoVmgfOsweMcd1NksKrNZNDtgAdFoCI75Hw2g0M,7520
chromadb/execution/expression/__init__.py,sha256=RL5CnNJ6pY8Q7uBTSG0ZwkVFX9AHMOQlsEpnAVBWDmA,1359
chromadb/execution/expression/__pycache__/__init__.cpython-313.pyc,,
chromadb/execution/expression/__pycache__/operator.cpython-313.pyc,,
chromadb/execution/expression/__pycache__/plan.cpython-313.pyc,,
chromadb/execution/expression/operator.py,sha256=FAWlN-pMiMXar3UKsvefwTgenZ2hYsye2BMPOZV9WRY,50934
chromadb/execution/expression/plan.py,sha256=Ux_j7N1ez-wj4AXDxNq9cWD_KsgkGmiqkWPmjEBDQsw,10527
chromadb/experimental/density_relevance.ipynb,sha256=GS6nIb7E3xPBdrFCgOrsID8H5TYi9zWiSDQ2J2aZHWU,368700
chromadb/ingest/__init__.py,sha256=s12KV1krkUByBz9CPYzjFkhsfUm1pF1Num0oc9cGfVA,4299
chromadb/ingest/__pycache__/__init__.cpython-313.pyc,,
chromadb/ingest/impl/__pycache__/utils.cpython-313.pyc,,
chromadb/ingest/impl/utils.py,sha256=4gSi24qYNWg-eCgesB3U_Nqx0lZ9gwyTJVvm9RngulA,1833
chromadb/log_config.yml,sha256=kK6gRC-h8KsuBHca4Hs_qPl_IM0CvZKOHoqKSAogVG8,921
chromadb/logservice/__pycache__/logservice.cpython-313.pyc,,
chromadb/logservice/logservice.py,sha256=R0HZESWBR2FYSo_cwwBVXhvtkE3LUrjEFeNQQxkYW_o,5870
chromadb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/migrations/__pycache__/__init__.cpython-313.pyc,,
chromadb/migrations/embeddings_queue/00001-embeddings.sqlite.sql,sha256=-8vaxiHGvevlYa4L0-rIQHN6-CL07cDVZ7lOIGbuzyg,261
chromadb/migrations/embeddings_queue/00002-embeddings-queue-config.sqlite.sql,sha256=eI_ptAVSaCG-L04wXaOJFySHGFmi6o9IwfgYJ0Vlj9k,95
chromadb/migrations/metadb/00001-embedding-metadata.sqlite.sql,sha256=DnR35ivUCDDyj5mG8HA1l4F4d1AwRDJO_oyezIU5KEU,600
chromadb/migrations/metadb/00002-embedding-metadata.sqlite.sql,sha256=M33nC7icQr8BdHZC--kxD4zjhjWrUPLOgu6YrGZOdZs,334
chromadb/migrations/metadb/00003-full-text-tokenize.sqlite.sql,sha256=E_1YOYI8jx4jZDHC9xagrvAsW_2Aw1wVljSWkk6o3aQ,236
chromadb/migrations/metadb/00004-metadata-indices.sqlite.sql,sha256=Ruh0o7-ZrpVhH9j3gbmuzMyJedxOBskehqa1baw3hEM,387
chromadb/migrations/metadb/00005-max-seq-id-int.sqlite.sql,sha256=Nj9Eto_NpgniOeHiMmPWVaBDmkkDlNo9aQJ5k5pxbkU,1449
chromadb/migrations/sysdb/00001-collections.sqlite.sql,sha256=36VyD7KQiAyaerrJJiAkzTLacDoxJHG11k6ylhOgVb0,355
chromadb/migrations/sysdb/00002-segments.sqlite.sql,sha256=5Fmn9mj5yaOFYukiEf7szEVJ1aBKyilyOXKRSW1WShw,385
chromadb/migrations/sysdb/00003-collection-dimension.sqlite.sql,sha256=Rlyd1HO_CE5qzdz9FcJYfsrzJbMEOvSarsh-QAa96PM,54
chromadb/migrations/sysdb/00004-tenants-databases.sqlite.sql,sha256=DaWJfr1xpy7lQMEBEmVnH1726yHanqqh5YQI2KBIDcM,1228
chromadb/migrations/sysdb/00005-remove-topic.sqlite.sql,sha256=YKNIAxxLz5jWEcpjYvqLdUzIVEY7plJYqrNmMnojc0M,152
chromadb/migrations/sysdb/00006-collection-segment-metadata.sqlite.sql,sha256=V2jbfUn1VZINrMcBLxc8_dLrTD9xr5ENP9ZTZhEFppQ,396
chromadb/migrations/sysdb/00007-collection-config.sqlite.sql,sha256=54e3NnBvFz6bJ5UF4OcCf1eicDHf52aKFnZ3AwcV1bk,106
chromadb/migrations/sysdb/00008-maintenance-log.sqlite.sql,sha256=Zq0x7v3dMHC-J5Y6BTMZ8P6QA-XdHzi1DELi7ZcIEq0,248
chromadb/migrations/sysdb/00009-segment-collection-not-null.sqlite.sql,sha256=tVZHgcKyTf3HkCSi6PF62YMBJ8ybQ4dtlCh1fAk7yZ4,327
chromadb/proto/.gitignore,sha256=Wume2NBKC5jrnYg5sumCElYcfjJPIGighn_j16FW-20,24
chromadb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/proto/__pycache__/__init__.cpython-313.pyc,,
chromadb/proto/__pycache__/convert.cpython-313.pyc,,
chromadb/proto/__pycache__/utils.cpython-313.pyc,,
chromadb/proto/convert.py,sha256=q__TMJAldm_cDuoo2aYjDKU0pQLuoDyDknJw_UCcgbk,26619
chromadb/proto/utils.py,sha256=RW9kRNsfcLsfBDXWpwwQOYbQwcIOLxs8JvT-_MTHIos,2570
chromadb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/quota/__init__.py,sha256=RdSxuq8Glr9MKmLKZ4HfO-JsPJ9qxdm6xVoPxMIKblw,1817
chromadb/quota/__pycache__/__init__.cpython-313.pyc,,
chromadb/quota/simple_quota_enforcer/__init__.py,sha256=Am7THF60mexQGLvTpSBsYOfzNhvEe4M4WlU437Hzge8,1495
chromadb/quota/simple_quota_enforcer/__pycache__/__init__.cpython-313.pyc,,
chromadb/rate_limit/__init__.py,sha256=JKMziPCZkR3E3XbkmBTa4mYoMiH1ywmRVOgz_1w_0_c,889
chromadb/rate_limit/__pycache__/__init__.cpython-313.pyc,,
chromadb/rate_limit/simple_rate_limit/__init__.py,sha256=0sB4IBfdzOQzKGMBzKkVJDCrCy5emkETYDJH10t0R3E,1177
chromadb/rate_limit/simple_rate_limit/__pycache__/__init__.cpython-313.pyc,,
chromadb/segment/__init__.py,sha256=9fDMrjiU0vYROiochEOfyZk7fVUw7LbBZ0cQbVKMlZw,4020
chromadb/segment/__pycache__/__init__.cpython-313.pyc,,
chromadb/segment/distributed/__init__.py,sha256=BZmYYCIa8UymryJ_GDqD3sd48i-ucq_VNtwnXsKRbK8,2703
chromadb/segment/distributed/__pycache__/__init__.cpython-313.pyc,,
chromadb/segment/impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/segment/impl/__pycache__/__init__.cpython-313.pyc,,
chromadb/segment/impl/distributed/__pycache__/segment_directory.cpython-313.pyc,,
chromadb/segment/impl/distributed/segment_directory.py,sha256=s4sY3uSW5dLrN41Wm1-LMIRlUQjRsm0WLT28njvewH8,13393
chromadb/segment/impl/manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/segment/impl/manager/__pycache__/__init__.cpython-313.pyc,,
chromadb/segment/impl/manager/__pycache__/distributed.cpython-313.pyc,,
chromadb/segment/impl/manager/__pycache__/local.cpython-313.pyc,,
chromadb/segment/impl/manager/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/segment/impl/manager/cache/__pycache__/__init__.cpython-313.pyc,,
chromadb/segment/impl/manager/cache/__pycache__/cache.cpython-313.pyc,,
chromadb/segment/impl/manager/cache/cache.py,sha256=KrMx8XtFDVMJZZCNUuYHZrTwjVTqvX5mgRE2UUSQIAs,3435
chromadb/segment/impl/manager/distributed.py,sha256=i6dDGdehvEe32h04XAPIoB8KCypuj3GgZBe2STv6bDQ,2986
chromadb/segment/impl/manager/local.py,sha256=S7TvReanT41cP5XcXa7yFmLojFbe85y3Vp_B4p3y_rU,10593
chromadb/segment/impl/metadata/__pycache__/sqlite.cpython-313.pyc,,
chromadb/segment/impl/metadata/sqlite.py,sha256=lzlhuLg7r2qRqE_wR7-OXDP16F7ayPMw4rLRcCdUIkk,25786
chromadb/segment/impl/vector/__pycache__/batch.cpython-313.pyc,,
chromadb/segment/impl/vector/__pycache__/brute_force_index.cpython-313.pyc,,
chromadb/segment/impl/vector/__pycache__/hnsw_params.cpython-313.pyc,,
chromadb/segment/impl/vector/__pycache__/local_hnsw.cpython-313.pyc,,
chromadb/segment/impl/vector/__pycache__/local_persistent_hnsw.cpython-313.pyc,,
chromadb/segment/impl/vector/batch.py,sha256=Zud9CslZ5G-KWnR6cEyIJU_CkyI4q87dsvM7eN2wYSg,4213
chromadb/segment/impl/vector/brute_force_index.py,sha256=F1lGpx5Fe77JOKGCNT4F4xfcUSJ5WWxaWncHFNznbPI,5420
chromadb/segment/impl/vector/hnsw_params.py,sha256=WsOgwglI8N7fYSLpTLEWLOXQhwpJsRgRD19unO4-yN4,3162
chromadb/segment/impl/vector/local_hnsw.py,sha256=516KV0bSBq8iJYTapgteFIM9P31tRl7-O18uXSZkkYY,12046
chromadb/segment/impl/vector/local_persistent_hnsw.py,sha256=K8E9DcvfYut-qGjXNEcOg3_JbLRGgkL67u7zyUYOVVc,22149
chromadb/serde.py,sha256=hOQDemy4xz3N5hYjk1Vv0WMCjxyAow9NWSu-vyJHbY0,1501
chromadb/server/__init__.py,sha256=KfAHxJipqapFZd2ijNH9-L9xQMDg8Q349xM8hY72hS8,172
chromadb/server/__pycache__/__init__.cpython-313.pyc,,
chromadb/server/fastapi/__init__.py,sha256=-vNNSRx9Cf0Q1QJS0p8Ba4PcxilGhcWGJCljA5hBp58,74575
chromadb/server/fastapi/__pycache__/__init__.cpython-313.pyc,,
chromadb/server/fastapi/__pycache__/types.cpython-313.pyc,,
chromadb/server/fastapi/types.py,sha256=fWEB5WqTq4ZStO4gQJcisQaAxc_IBuu8GizJ4Yu55yY,2506
chromadb/telemetry/README.md,sha256=4P1G-ZE1OhJfyv5Wm3KW8NmGONLtUT10tQrj-in1aDc,587
chromadb/telemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/telemetry/__pycache__/__init__.cpython-313.pyc,,
chromadb/telemetry/opentelemetry/__init__.py,sha256=4guEpnFGOysLE8WRw4JGT2CAE6zeBawkgDRI64Up2vQ,6021
chromadb/telemetry/opentelemetry/__pycache__/__init__.cpython-313.pyc,,
chromadb/telemetry/opentelemetry/__pycache__/fastapi.cpython-313.pyc,,
chromadb/telemetry/opentelemetry/__pycache__/grpc.cpython-313.pyc,,
chromadb/telemetry/opentelemetry/fastapi.py,sha256=-h-OzcgP8A9nKLCqJ4TPN-1KBE5p34wLB-NUYh1vKdg,405
chromadb/telemetry/opentelemetry/grpc.py,sha256=UcVKkdpanminmjrt__phICW-W71uw6BSdpkxuhlV9ZY,3731
chromadb/telemetry/product/__init__.py,sha256=ZP2MpTTYQ-njYtqGQFPrJm6D6qGWG0J84oe9LcScByo,2936
chromadb/telemetry/product/__pycache__/__init__.cpython-313.pyc,,
chromadb/telemetry/product/__pycache__/events.cpython-313.pyc,,
chromadb/telemetry/product/__pycache__/posthog.cpython-313.pyc,,
chromadb/telemetry/product/events.py,sha256=HKDvSZ6uLTEyBtgFV8Ve-zeEDQ1ZL4dmhxjFsVUHnyQ,8665
chromadb/telemetry/product/posthog.py,sha256=l_3WELha54vnnJeyUQAM_SnrgNAQl8nbjCxxeK2XYwg,2176
chromadb/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/test/__pycache__/__init__.cpython-313.pyc,,
chromadb/test/__pycache__/conftest.cpython-313.pyc,,
chromadb/test/__pycache__/test_api.cpython-313.pyc,,
chromadb/test/__pycache__/test_chroma.cpython-313.pyc,,
chromadb/test/__pycache__/test_cli.cpython-313.pyc,,
chromadb/test/__pycache__/test_client.cpython-313.pyc,,
chromadb/test/__pycache__/test_config.cpython-313.pyc,,
chromadb/test/__pycache__/test_multithreaded.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_collection.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_delete_database.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_get_database.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_indexing_status.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_invalid_update.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_limit_offset.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_list_databases.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_numpy_list_inputs.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_schema.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_schema_e2e.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_search_api.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_shared_system_client.cpython-313.pyc,,
chromadb/test/api/__pycache__/test_types.cpython-313.pyc,,
chromadb/test/api/test_collection.py,sha256=YRBtEuI1LVHMyWGXEdjyzGkAVIATH1TsFMALBCdmFFY,2211
chromadb/test/api/test_delete_database.py,sha256=Mxzs5O87nMBG8mC4FF-KsWa8UmudXcdQd9-1t--Kxas,2671
chromadb/test/api/test_get_database.py,sha256=qryIErWRY-1vgJ0TwMg7S09wIDP_ya7XsM1KdcK02-E,290
chromadb/test/api/test_indexing_status.py,sha256=vf5rYbAXk8GfXZH8yhyQjXhjbS6mkrVtWEUKWu_spUc,10263
chromadb/test/api/test_invalid_update.py,sha256=h8E5moz6EzFxcpHw8-oHcf7U55dvlotRfkAsKECEVUU,608
chromadb/test/api/test_limit_offset.py,sha256=stbPyPiBPvqnLSb_1CosxC3LKNq8RNpS4rdM_918izg,2025
chromadb/test/api/test_list_databases.py,sha256=wVB0_F39zkN3e_OM6eLpUOlNL0GGAYPjqlz00Vu1Zuo,3173
chromadb/test/api/test_numpy_list_inputs.py,sha256=Sb5xADICNamUHLhl43fRN3uYqF46FhVPI4Z5cqTuAb8,2085
chromadb/test/api/test_schema.py,sha256=0Ik1tn4MRYUAFM5uhs17KvyDAYZkq6uuaizb3ju8uoU,143166
chromadb/test/api/test_schema_e2e.py,sha256=yLJb-mwPogIBd2VKEVQ5hBf-6wd6nIsrLeU1XkIgtVo,97356
chromadb/test/api/test_search_api.py,sha256=4LYe37XzgdxEoJcWOgjK8aTUIhiF7W5Tp7BAoRxDW4g,3615
chromadb/test/api/test_shared_system_client.py,sha256=OaQ5-oA-iZPPYrpa-KkYCyQG1EESQsxA3hq-USmOPUA,5926
chromadb/test/api/test_types.py,sha256=8KywPUsmP1KqNySopje1Mv2CshtSwAiC8bkHJ31CxP8,3219
chromadb/test/auth/__pycache__/test_auth_utils.cpython-313.pyc,,
chromadb/test/auth/__pycache__/test_rbac_authz.cpython-313.pyc,,
chromadb/test/auth/test_auth_utils.py,sha256=AbUZ9yHIVxqvagjnryj4vMKtOZ0jZf2fYshwiF7nFBQ,3039
chromadb/test/auth/test_rbac_authz.py,sha256=h1wtxsD9vWu31P5HKaT1C58s7Wj5XvsnarGqRo6alrM,610
chromadb/test/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
chromadb/test/client/__pycache__/__init__.cpython-313.pyc,,
chromadb/test/client/__pycache__/create_http_client_with_basic_auth.cpython-313.pyc,,
chromadb/test/client/__pycache__/test_cloud_client.cpython-313.pyc,,
chromadb/test/client/__pycache__/test_create_http_client.cpython-313.pyc,,
chromadb/test/client/__pycache__/test_database_tenant.cpython-313.pyc,,
chromadb/test/client/__pycache__/test_database_tenant_auth.cpython-313.pyc,,
chromadb/test/client/__pycache__/test_multiple_clients_concurrency.cpython-313.pyc,,
chromadb/test/client/create_http_client_with_basic_auth.py,sha256=kh8c5JX6MhoK8k0-EtVbfp9l_zrG_g699GndjYj52dk,786
chromadb/test/client/test_cloud_client.py,sha256=4wBpMm52d5zyVyC5YHiaS5DclorKyBIvSONeuOeMUIg,12467
chromadb/test/client/test_create_http_client.py,sha256=9o-0eMxs9sGtGWpIss7B0TlfOCy8r6-xYy2j8D4EtZM,557
chromadb/test/client/test_database_tenant.py,sha256=6lw55gBXnO85iX3aJ0fUd_gFn7yqTb-9Ixmznp0TuhY,7171
chromadb/test/client/test_database_tenant_auth.py,sha256=ojkACTkUi2J8_hGuUmMErewH6rz2IBaD21anB5YwUEo,1369
chromadb/test/client/test_multiple_clients_concurrency.py,sha256=dIGmJal7dGgQIll96r7DxzvqoxjyeSY4cg2bJ8k4IXg,2006
chromadb/test/configurations/__pycache__/test_collection_configuration.cpython-313.pyc,,
chromadb/test/configurations/__pycache__/test_configurations.cpython-313.pyc,,
chromadb/test/configurations/test_collection_configuration.py,sha256=BXFxKVIvr_824sotfmpFZ9r__Fh045RPDR2pbaf2awg,61037
chromadb/test/configurations/test_configurations.py,sha256=Ge-cZc09WSQN2FN6oBh4Yu-MNSZ20NbgZjTjelKc6nQ,3680
chromadb/test/conftest.py,sha256=CVN0YW4yg6XiHuoO2ckKZwLLE2mDEXGuiTPWSd5FIIQ,37456
chromadb/test/data_loader/__pycache__/test_data_loader.cpython-313.pyc,,
chromadb/test/data_loader/test_data_loader.py,sha256=gs3ieDw1Li0__m7K548hTwxDMb0M3VuI1uKyNLPfZU0,3708
chromadb/test/db/__pycache__/test_log_purge.cpython-313.pyc,,
chromadb/test/db/test_log_purge.py,sha256=f4w8PU1ATbv-AKN6mlEbdHpgaQwtF8CUAp2ktRuU5sQ,1773
chromadb/test/distributed/README.md,sha256=E_RdZx4Jt1fp-V72CnZ5lB5AQLe_sTR-53AKuUFyxNQ,233
chromadb/test/distributed/__pycache__/test_log_backpressure.cpython-313.pyc,,
chromadb/test/distributed/__pycache__/test_repair_collection_log_offset.cpython-313.pyc,,
chromadb/test/distributed/__pycache__/test_reroute.cpython-313.pyc,,
chromadb/test/distributed/__pycache__/test_sanity.cpython-313.pyc,,
chromadb/test/distributed/__pycache__/test_statistics_wrapper.cpython-313.pyc,,
chromadb/test/distributed/__pycache__/test_task_api.cpython-313.pyc,,
chromadb/test/distributed/test_log_backpressure.py,sha256=0JHntF71Cz1NuJdLzHtUV2WiNa3xhqXlf4UWiBoO1JI,1631
chromadb/test/distributed/test_repair_collection_log_offset.py,sha256=O4Prn4jYVHeSpJ44QF2Aq7jepLdm-CN8LlfjxTc0apE,2592
chromadb/test/distributed/test_reroute.py,sha256=tHiycpNSHnr1co895zWgKsk2x_yXWy5BVXkn_8_Vgcw,2442
chromadb/test/distributed/test_sanity.py,sha256=pV9TVCDj8WbnZdBR8YL9Vm2mPZl5On_vprLLBkBz2QA,2882
chromadb/test/distributed/test_statistics_wrapper.py,sha256=Z0BF1g_9nT3TzhyIKywN6wXJ6ZCmAf20LAh_YqeUEP8,17557
chromadb/test/distributed/test_task_api.py,sha256=3GqxY1MqARWcPGS2iZKV3f3YyL-UGWk_E_F3R_lLwyc,20214
chromadb/test/ef/__pycache__/test_chroma_bm25_embedding_function.cpython-313.pyc,,
chromadb/test/ef/__pycache__/test_custom_ef.cpython-313.pyc,,
chromadb/test/ef/__pycache__/test_default_ef.cpython-313.pyc,,
chromadb/test/ef/__pycache__/test_ef.cpython-313.pyc,,
chromadb/test/ef/__pycache__/test_morph_ef.cpython-313.pyc,,
chromadb/test/ef/__pycache__/test_multimodal_ef.cpython-313.pyc,,
chromadb/test/ef/__pycache__/test_ollama_ef.cpython-313.pyc,,
chromadb/test/ef/__pycache__/test_onnx_mini_lm_l6_v2.cpython-313.pyc,,
chromadb/test/ef/__pycache__/test_openai_ef.cpython-313.pyc,,
chromadb/test/ef/__pycache__/test_voyageai_ef.cpython-313.pyc,,
chromadb/test/ef/test_chroma_bm25_embedding_function.py,sha256=E-ojv_D42XkfyejsTlkAnNjCw4_ZlMWIX762WqiFar4,7568
chromadb/test/ef/test_custom_ef.py,sha256=sB3qzqgUqMKjkaCBUWIZiSGThkjyojcpNjHMSbTYSok,3303
chromadb/test/ef/test_default_ef.py,sha256=fhs1NE2gTcF9zLXNDbLoBwVa9dzSLN4H9pJAsHjjhn0,2660
chromadb/test/ef/test_ef.py,sha256=_oPFVbK0mrtwEzNZmd8envf1Jk9yGQS1fHj2BqswhVQ,3945
chromadb/test/ef/test_morph_ef.py,sha256=BShKFPYyD8DQHmNEJVLlTGW7yNAeDvbi64z0gwV6hUg,4157
chromadb/test/ef/test_multimodal_ef.py,sha256=pJi-QevJQfZxnutHx9Fp0aDq9nR4QDr8snqNQ9Po8xc,6174
chromadb/test/ef/test_ollama_ef.py,sha256=SIxBSMnK-ubdt1Um1iXwSojajR3wEtfyMpuUEwV68e4,1835
chromadb/test/ef/test_onnx_mini_lm_l6_v2.py,sha256=QSguSx3H80VkCWwBn2X-QUUBMEr_kfe21B72KJVBYFs,7542
chromadb/test/ef/test_openai_ef.py,sha256=lEjKfM4hsrOhTDLnk-OisCnP0LlAGuKhO7hG_4D38sw,1246
chromadb/test/ef/test_voyageai_ef.py,sha256=DEZRP-OTTcFtEwcd5fvAXOcDbNKWiPcMGsUPvEL9CrY,603
chromadb/test/openssl.cnf,sha256=QBm_dDan5xjTJ5f4oZhCr7xmvmBQT-30vmo7o2cors4,189
chromadb/test/property/__pycache__/invariants.cpython-313.pyc,,
chromadb/test/property/__pycache__/strategies.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_add.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_base64_conversion.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_client_url.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_collections.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_collections_with_database_tenant.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_collections_with_database_tenant_overwrite.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_cross_version_persist.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_embeddings.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_filtering.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_fork.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_persist.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_restart_persist.cpython-313.pyc,,
chromadb/test/property/__pycache__/test_schema.cpython-313.pyc,,
chromadb/test/property/invariants.py,sha256=a7lmeD9w79vmrOUd-Dn4_S5_G-EMY2ubBCV_SsFXpMQ,24340
chromadb/test/property/strategies.py,sha256=jLS9K7fIYlHVQ_4R4PoFtgZGhtgjUEpRnNrgw269oG8,39297
chromadb/test/property/test_add.py,sha256=Fq859QUhj_5X2pCH5Tlvl_cMxMBaQ9UjsuhsWYfdITw,17085
chromadb/test/property/test_base64_conversion.py,sha256=uZ4DKLlII36fxzAVFCGn1alFQaENdr5z_UN-OX8ASLE,4015
chromadb/test/property/test_client_url.py,sha256=PjT9vHBnSawQ9J2VhmS1UDbZpAKMLo52Z3IzuSLNnR4,3881
chromadb/test/property/test_collections.py,sha256=ynhNTpu4F98PiyK3hhmAID_oUgYkhs0Qe1HcGgmCyQg,12327
chromadb/test/property/test_collections_with_database_tenant.py,sha256=xvXNWAJxkeeh3UmPog5cAvLzE2Ceu8gRA81HnXzd4-k,6047
chromadb/test/property/test_collections_with_database_tenant_overwrite.py,sha256=x7SAHwNzjmO4doDFgH1cCGEjM9sDSOCGwxqJqp9391I,7713
chromadb/test/property/test_cross_version_persist.py,sha256=Z-vr1wlFLAneEi1h3svoUzACL0kKpnjgFBzohRkJ-DI,13569
chromadb/test/property/test_embeddings.py,sha256=t4Nm6T-n_kZwEJtRHVaH6HHGtvJ-j07g822ZfekSY7A,53202
chromadb/test/property/test_filtering.py,sha256=-iEbFZ9kGChU3utL_X5SaUrq0N8BO21mBxZiY03U7_s,28351
chromadb/test/property/test_fork.py,sha256=FrKKOLeBssrZjcaNAtt5P9RPYIXx0JudcVByN_fY8Og,7915
chromadb/test/property/test_persist.py,sha256=pIVIB1_epfzOiiYcUv0o_DB1VByqsVUzim84Iui0BjY,23573
chromadb/test/property/test_restart_persist.py,sha256=UnUt3-VyHO83tGbv_DgeEHgxHp6Pf4AbXC5BP-pp-do,3347
chromadb/test/property/test_schema.py,sha256=_8aD_CM5RRoHjiq5Yr7C_MtJmzjPKQUJsJ_05abNlaM,33268
chromadb/test/segment/distributed/__pycache__/test_memberlist_provider.cpython-313.pyc,,
chromadb/test/segment/distributed/__pycache__/test_rendezvous_hash.cpython-313.pyc,,
chromadb/test/segment/distributed/test_memberlist_provider.py,sha256=dkqWKygjPjV28IR04EkPNMex-9Hvvn6XWHMaOonhHzM,3836
chromadb/test/segment/distributed/test_rendezvous_hash.py,sha256=7OyO0j5wZrrJWMZllcYx0S1UyHJt8s3kpXwAMqoK1Z0,2253
chromadb/test/stress/__pycache__/test_many_collections.cpython-313.pyc,,
chromadb/test/stress/test_many_collections.py,sha256=WzqNhxxPvNUKUVEoajRL7DiYtxitFG88AMEljx0sKzc,1117
chromadb/test/test_api.py,sha256=MJW17AYaGK22seGyu8cKZNnvewPBgrR1EMsuPazvi6U,113329
chromadb/test/test_chroma.py,sha256=YMYfxAi_hHGwdocUsLENzuCFkuApE0mla54aZPgMIY8,4329
chromadb/test/test_cli.py,sha256=ah5vHiyeTQ1NVy4-XnYAFSX4i040JU5Rd-KZIhaBL1Y,5049
chromadb/test/test_client.py,sha256=7s6MJQT1PrLVzXgpObV7lJwnWAMEPZPiYn33EB8hAkg,4928
chromadb/test/test_config.py,sha256=oKeeB8Afzd48RN2Zcq-KQX9p_C1i_8i-g90mxcgo9UA,4768
chromadb/test/test_multithreaded.py,sha256=801L6_odKornoJuP7NXl9RP4R70i1FzslJBSqZn5B0w,8545
chromadb/test/utils/__pycache__/cross_version.cpython-313.pyc,,
chromadb/test/utils/__pycache__/distance_functions.cpython-313.pyc,,
chromadb/test/utils/__pycache__/test_embedding_function_schemas.cpython-313.pyc,,
chromadb/test/utils/__pycache__/test_result_df_transform.cpython-313.pyc,,
chromadb/test/utils/__pycache__/wait_for_version_increase.cpython-313.pyc,,
chromadb/test/utils/cross_version.py,sha256=7G0lGOpOgbBw7ChxILW62Ye_J4m4qHNqOWH5-C6ZgUo,2372
chromadb/test/utils/distance_functions.py,sha256=4IEBBXrprW-uHhNOiO2yzMvVO4SIaZACTxC6JWXRJUM,184
chromadb/test/utils/test_embedding_function_schemas.py,sha256=0o7X3AHaP4E35OfM9LIeEedKpF0mrsbxqysL4e3i_A0,18829
chromadb/test/utils/test_result_df_transform.py,sha256=7Ife7sBwlTXe9NwY-ThHgSsogtj74MHUmUAht6S0pzk,5946
chromadb/test/utils/wait_for_version_increase.py,sha256=q5aFoOSuHE0TQ-z5UiZmkk2tEO9gRzYJ5Ly8lVvAcec,964
chromadb/types.py,sha256=KVMN8uRpNj0_LloW2eWTIkBqBz88Fwr9FWOf0Xt6ke4,10187
chromadb/utils/__init__.py,sha256=-t25WU4oRKXU3I4PF8G_uVM2UNzu1SfjfS1DL2P0WVQ,378
chromadb/utils/__pycache__/__init__.cpython-313.pyc,,
chromadb/utils/__pycache__/async_to_sync.cpython-313.pyc,,
chromadb/utils/__pycache__/batch_utils.cpython-313.pyc,,
chromadb/utils/__pycache__/data_loaders.cpython-313.pyc,,
chromadb/utils/__pycache__/delete_file.cpython-313.pyc,,
chromadb/utils/__pycache__/directory.cpython-313.pyc,,
chromadb/utils/__pycache__/distance_functions.cpython-313.pyc,,
chromadb/utils/__pycache__/fastapi.cpython-313.pyc,,
chromadb/utils/__pycache__/lru_cache.cpython-313.pyc,,
chromadb/utils/__pycache__/messageid.cpython-313.pyc,,
chromadb/utils/__pycache__/read_write_lock.cpython-313.pyc,,
chromadb/utils/__pycache__/rendezvous_hash.cpython-313.pyc,,
chromadb/utils/__pycache__/results.cpython-313.pyc,,
chromadb/utils/__pycache__/sparse_embedding_utils.cpython-313.pyc,,
chromadb/utils/__pycache__/statistics.cpython-313.pyc,,
chromadb/utils/async_to_sync.py,sha256=NLFs4lFaJuhrU_XEQEFDumdYn_EzZ4_WKAhwiOO3chg,1678
chromadb/utils/batch_utils.py,sha256=riBdPf2-W5rBlaHzU4HdpTDtgbrQ6HekMScdPTBiCEA,1239
chromadb/utils/data_loaders.py,sha256=U-dAoLiphHm6FZTAwUTfP-7yLeH8TGLJNIWQweuqLqg,1387
chromadb/utils/delete_file.py,sha256=FUqldkeqFQE5O2S-aH4zEb27JwZTQ2_PK7sqMRHpN74,1130
chromadb/utils/directory.py,sha256=BxM3RomtO1-ZK50kWMaNJBUgTulgEYNcYC7YaDE72gA,622
chromadb/utils/distance_functions.py,sha256=qFFTLBLTMDi_utMrlp07fQi0SxFmtrnqBOg0TfADEY4,957
chromadb/utils/embedding_functions/__init__.py,sha256=Ao2m1Y3FCZJDMYwnpG8i2JhdFO19L6tlRuEtEj5aT8w,10281
chromadb/utils/embedding_functions/__pycache__/__init__.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/amazon_bedrock_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/baseten_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/bm25_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/chroma_bm25_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/chroma_cloud_qwen_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/chroma_cloud_splade_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/chroma_langchain_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/cloudflare_workers_ai_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/cohere_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/fastembed_sparse_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/google_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/huggingface_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/huggingface_sparse_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/instructor_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/jina_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/mistral_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/morph_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/nomic_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/ollama_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/onnx_mini_lm_l6_v2.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/open_clip_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/openai_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/roboflow_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/sentence_transformer_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/text2vec_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/together_ai_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/utils.cpython-313.pyc,,
chromadb/utils/embedding_functions/__pycache__/voyageai_embedding_function.cpython-313.pyc,,
chromadb/utils/embedding_functions/amazon_bedrock_embedding_function.py,sha256=qalzT-jUDnrEauExsVlQAx21tWPz1QYdtTSW_1HthkE,4787
chromadb/utils/embedding_functions/baseten_embedding_function.py,sha256=QqNwdkzQTP_86_1yLYpbBLx7VvM4_nGxui0gXNsaX0Y,4299
chromadb/utils/embedding_functions/bm25_embedding_function.py,sha256=kjJXW11ntRzBMH1Ibb7tPzN35J8hUnfgkgcTRjsY4rY,8321
chromadb/utils/embedding_functions/chroma_bm25_embedding_function.py,sha256=5nrqxNEl-HWcNSpnPWWMRGTyBBjEWY9AFVj_zzBlTpE,5556
chromadb/utils/embedding_functions/chroma_cloud_qwen_embedding_function.py,sha256=YIFmkAeYuewASyZ--7PR5D1leu1zxWmeMfofTqrx9Wk,8526
chromadb/utils/embedding_functions/chroma_cloud_splade_embedding_function.py,sha256=gVUj4B9ed_1iqov4dMZUDPljC24EmdTYW0mrSXfRrn8,6788
chromadb/utils/embedding_functions/chroma_langchain_embedding_function.py,sha256=jpgvIm-auQok06uDzNpHtUQ5flPV4QhLEpP_hFkhmWQ,6158
chromadb/utils/embedding_functions/cloudflare_workers_ai_embedding_function.py,sha256=Xouzcc9K1CeHSE7R2c-2v02cjYwYx4c_C6ZuA1NyU2Q,5399
chromadb/utils/embedding_functions/cohere_embedding_function.py,sha256=pOlKOsMiAhKK5rJenyuHHPnVhvFpE6QiglqoMLJwGG0,6257
chromadb/utils/embedding_functions/fastembed_sparse_embedding_function.py,sha256=OFsz-CuqMES7VwmJuhKvgwqsbjgtIY7Onu8B6fIS9uA,7228
chromadb/utils/embedding_functions/google_embedding_function.py,sha256=c_xMnN5D_IBYU73yMgbUkD7fEnFcvul8tljgbWfTsIU,19807
chromadb/utils/embedding_functions/huggingface_embedding_function.py,sha256=mZwKmfYBkb-qkj20yWZOgONS2Mh7Xh1HiKXXWhbZ77M,8690
chromadb/utils/embedding_functions/huggingface_sparse_embedding_function.py,sha256=eBxl008qf1LQQ92vrrgLfcsruNhJRFGHZTTbUVh6fFE,7003
chromadb/utils/embedding_functions/instructor_embedding_function.py,sha256=ACwbdQNn7WzhMc8_z1SgYrnZ3k5CCnhfBGEAVhdjhyE,4244
chromadb/utils/embedding_functions/jina_embedding_function.py,sha256=xpMSxNccoAyHstM_-oTB1_mqBJtw5RIayRCYNPS8iLs,10138
chromadb/utils/embedding_functions/mistral_embedding_function.py,sha256=f1rnx-KhIPkwPuS0OVwTCsa3Z8albIgwRw1lI9Oiox8,3123
chromadb/utils/embedding_functions/morph_embedding_function.py,sha256=clQGUE16PKrtdXbkB7yd8_B3bcdzXYPi_bMEtRVPmfI,5291
chromadb/utils/embedding_functions/nomic_embedding_function.py,sha256=-2m6JjwSq-vZ73pEQ38WL-VbKc1H5zk8BeUnYg0j6cY,4456
chromadb/utils/embedding_functions/ollama_embedding_function.py,sha256=zt3pygV4N5oN2ioGiG08Q16ej2Cdiwjg9qpmb91tUCI,4027
chromadb/utils/embedding_functions/onnx_mini_lm_l6_v2.py,sha256=O-6IE5K1bn7C3qHp3fHrhqfK4tVqtxMb4bN0QQhIHV4,13873
chromadb/utils/embedding_functions/open_clip_embedding_function.py,sha256=Q_YmBDqvpwZKmEuj2g7LVOviY46jAyPqV7L7xNnIbic,6070
chromadb/utils/embedding_functions/openai_embedding_function.py,sha256=RofmKDkcJnfY5fH_blV99RMKA8S7Jv6WFJi6R02o9h0,8384
chromadb/utils/embedding_functions/roboflow_embedding_function.py,sha256=cP2Rucqlg9YBmOcsp0MqTbiKQWE78DwYvAksPxCbRkA,5182
chromadb/utils/embedding_functions/schemas/README.md,sha256=cAcdrzPhuGaFs-70z8Uwmtw9QBhVwPQRpmWzyYoLi3I,1659
chromadb/utils/embedding_functions/schemas/__init__.py,sha256=3XAKDuCRcogo3W-QlTDIYmUak-VN2NWLj_ue6hzLC4g,469
chromadb/utils/embedding_functions/schemas/__pycache__/__init__.cpython-313.pyc,,
chromadb/utils/embedding_functions/schemas/__pycache__/bm25_tokenizer.cpython-313.pyc,,
chromadb/utils/embedding_functions/schemas/__pycache__/registry.cpython-313.pyc,,
chromadb/utils/embedding_functions/schemas/__pycache__/schema_utils.cpython-313.pyc,,
chromadb/utils/embedding_functions/schemas/bm25_tokenizer.py,sha256=9UFOKNITgdTrd5P4h7kCPFNBSosAJZjTKG9IijxAu3U,5097
chromadb/utils/embedding_functions/schemas/registry.py,sha256=F542ce15GYAAzrb9rmuEYkypDEc1LKFahPgmzKk39hI,1599
chromadb/utils/embedding_functions/schemas/schema_utils.py,sha256=ybSD5s7M6UgZ0PA5cYbj4gvJcFXDaU98HLuRZhYJdkg,2590
chromadb/utils/embedding_functions/sentence_transformer_embedding_function.py,sha256=K3xK3K6y2LkRIzIvNhAXfKQlY9A6AP9cpeU8_bd3ifk,4579
chromadb/utils/embedding_functions/text2vec_embedding_function.py,sha256=B6lxVQ_UbngvtsIQkO7sTWkgZRdaUF7uUcygkkBEfSM,3081
chromadb/utils/embedding_functions/together_ai_embedding_function.py,sha256=MMrIt8Y1M3i_DhzkhZKGRKVLLjxc0N_DAuCYxDRPumY,4528
chromadb/utils/embedding_functions/utils.py,sha256=6S9XbvsmkRMyKPZlyqKl3tNbhYkRneLKsucIs7x_zJM,357
chromadb/utils/embedding_functions/voyageai_embedding_function.py,sha256=a38QeAcVB9ouzdNIszXUAkJXy4CBEVekiky17GDarBs,4884
chromadb/utils/fastapi.py,sha256=LIYvUjwBVxWsXavC50wLnkipp-5_Owolwp_f6MvKccQ,504
chromadb/utils/lru_cache.py,sha256=7szY8FsguzNDD5eXU0RmJjxmAxXAYCag77lv0pWagdQ,1076
chromadb/utils/messageid.py,sha256=6utlGTj1HjbRFKBN97ydUmekYx3_l62Vv37ijkKP8OU,272
chromadb/utils/read_write_lock.py,sha256=AxZ7GdYC9g05ZLmzLKTw051_EbvEQ8F9CIYpONcYDbI,2010
chromadb/utils/rendezvous_hash.py,sha256=6rhpTVeBBjZ9RwfedH2qmm3tcDbkEYT_owxd64AbB-Q,2155
chromadb/utils/results.py,sha256=0XNZkRflId0C_En5dgZgFalKPCCdr2B_MN-7poWn5uY,3869
chromadb/utils/sparse_embedding_utils.py,sha256=CXrGkxd0Plv9BZUXAJFPlyaavMs6wEN3LiFN-PaQcoI,1850
chromadb/utils/statistics.py,sha256=lIX-9MIRgmOpQDXUBmqzGm0jc8hZvWMoBwjKyXkd2-A,9457
chromadb_rust_bindings/__init__.py,sha256=EQHYniO5ZjnemXFkmB-faa2gCtR8HIke29q6_jaFtkg,171
chromadb_rust_bindings/__pycache__/__init__.cpython-313.pyc,,
chromadb_rust_bindings/chromadb_rust_bindings.abi3.so,sha256=TJK_9RYCGDbUFOb62iY9YgBF_sWrw2vOckYNbdpjTH4,54097344
schemas/embedding_functions/README.md,sha256=gD-XaVRks1tA8LnBVDS_n6-8w5lJrXbXBKeISsCvVVE,1969
schemas/embedding_functions/amazon_bedrock.json,sha256=JBoj8yT4ThiF9pDdSZKUEKQFjZbHflgYuuv_ZSgSPPg,731
schemas/embedding_functions/base_schema.json,sha256=LscBIjh5l2lT84dCUGqI9rx1X9gbjJseJVu6ZNHMXW0,734
schemas/embedding_functions/baseten.json,sha256=ozUmz6DEwP6j_Tz1TE9HWvk7uM02j5fpM7_yAvT4Lq0,665
schemas/embedding_functions/bm25.json,sha256=fWAsnjGhhifzZMq7yxiJlWFstT-bLjDK7h4evCK6oeg,2988
schemas/embedding_functions/chroma-cloud-qwen.json,sha256=2CHSwcvViteWVcmgGzIyaULvor31n9_jzULG2WuGSg0,2080
schemas/embedding_functions/chroma-cloud-splade.json,sha256=aJE-ENzlltdfxlqvzBB0X30bD5ChUDKB15U_c58uXZ8,1030
schemas/embedding_functions/chroma_bm25.json,sha256=gFJ535nBuWNo9EbdPLa-lWDNbKAj47YCKc3ijWu-Re0,1280
schemas/embedding_functions/chroma_langchain.json,sha256=2vRSiEyMQZj11vKb65HV2pzsbRuvU7tLSTAm10ieC4s,478
schemas/embedding_functions/cloudflare_workers_ai.json,sha256=dUdX86FjRY3dHddUfZ7zERJR79JYWJgpTNRKQJVE7LY,1119
schemas/embedding_functions/cohere.json,sha256=I4w2Z39kYxmpWw1arx6qcM2r7HpyipNczNxAI2KXkYA,681
schemas/embedding_functions/default.json,sha256=JgWxX_1YdQpwloBjU7rpaUmnuu0RjkYbkaxI-jb7h0Y,296
schemas/embedding_functions/fastembed_sparse.json,sha256=F_BL7ixkm3MJ4JPvfBN9obwDxOSsA780LEyRU0znnCA,2672
schemas/embedding_functions/google_genai.json,sha256=3Zq_uY7q_QcA3LYW0qi2n-5AlVo4pSPgPpSyw_g1ALM,1075
schemas/embedding_functions/google_generative_ai.json,sha256=1jHZ7LDckStF0AZmxR5rfINShWx8EEOT1ATug9PWMwo,805
schemas/embedding_functions/google_palm.json,sha256=8OaTgiRaZS8cFIOiXpRMrghN4iwIQ-x4rcKwwPi3pKs,628
schemas/embedding_functions/google_vertex.json,sha256=0ZjQ0NlT3rvQY0Bf_l90cykzDNLc_lR6n2AsZilVoeo,862
schemas/embedding_functions/huggingface.json,sha256=onqjGbDGrkrlHkLnesvIjkMMO2UJ_R1QHtoW2Rl4AuU,696
schemas/embedding_functions/huggingface_server.json,sha256=lj9X9XkJ11r12ZGhvwWFD1_bj22YbDnNTxUVMvTW1wk,706
schemas/embedding_functions/huggingface_sparse.json,sha256=UJAPvQkxDEyUfwAaa-8ngZt09AM0PslTqF8ihF2rtUI,1875
schemas/embedding_functions/instructor.json,sha256=tA6betfHVuGK0pUkxJA7s8aKdwlBVluYlH070kfY4u0,765
schemas/embedding_functions/jina.json,sha256=uEGdVjGDCFy3pWnlmFKs6RiggxPACWMUO8M5CPIY5w0,1732
schemas/embedding_functions/mistral.json,sha256=HyyalJfylwYzjxROcub39JQis-tuisgfyS1gPG50fGQ,595
schemas/embedding_functions/morph.json,sha256=sAZ8yrb4-nxqWq47Ev-BAhBuz5Bw9axVjy8R23wFNS8,1050
schemas/embedding_functions/nomic.json,sha256=5wpgUMlVCnEdFIiSibsssefj3UvHuSpWVdxyeZTYZZY,699
schemas/embedding_functions/ollama.json,sha256=85V4ja3V3-MdtLSnM7vrnRQlpTu3oba2IAykwSFD9Vo,652
schemas/embedding_functions/onnx_mini_lm_l6_v2.json,sha256=U8-lqBt8pYbl7UVxlwxBYmRI3UxCtU3ob6VNDdp9gxo,563
schemas/embedding_functions/open_clip.json,sha256=2hT4aiRFGgFr7Hx31_fvcllROb8TomtTypPtx0HPZQI,776
schemas/embedding_functions/openai.json,sha256=SN8rkJOkc49e-ewAbBxXk-0UjkBD_6nsx1qCpx-x-AY,2005
schemas/embedding_functions/roboflow.json,sha256=jG5xbdmd7Hr-b8uEW7WnDFaaUYeE0Xgbc4z6HMetUFs,606
schemas/embedding_functions/sentence_transformer.json,sha256=GQIuTaTcbvCwyonb0jKy5b09RpR6Lo9b8DAf1lW2SXE,1244
schemas/embedding_functions/text2vec.json,sha256=1qlkFeGirQeYdA5oQY9Y6b1xDPShiWFqlhJp2oW1A-Q,451
schemas/embedding_functions/together_ai.json,sha256=sJHcH_Q8UnvGkXueq3jDEtO2MBe_KrYSrHfqDgGyRXQ,700
schemas/embedding_functions/transformers.json,sha256=UUxaxVoOYwIYhkIhvPAvEUe9W7sYqNJvMGm6bW76OHA,836
schemas/embedding_functions/voyageai.json,sha256=cYURKK3oZs-7TXIRxmsGiJrqb-80Oqf_bPfuZeqDtIk,912

View File

@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: maturin (1.11.5)
Root-Is-Purelib: false
Tag: cp39-abi3-manylinux_2_17_x86_64
Tag: cp39-abi3-manylinux2014_x86_64

View File

@@ -0,0 +1,2 @@
[console_scripts]
chroma=chromadb.cli.cli:app

View File

@@ -0,0 +1,201 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.