refactor: excel parse

This commit is contained in:
Blizzard
2026-04-16 10:01:11 +08:00
parent 680ecc320f
commit f62f95ec02
7941 changed files with 2899112 additions and 0 deletions
@@ -0,0 +1,363 @@
Metadata-Version: 2.4
Name: qdrant-client
Version: 1.16.1
Summary: Client library for the Qdrant vector search engine
License: Apache-2.0
License-File: LICENSE
Keywords: vector,search,neural,matching,client
Author: Andrey Vasnetsov
Author-email: andrey@qdrant.tech
Requires-Python: >=3.9
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Provides-Extra: fastembed
Provides-Extra: fastembed-gpu
Requires-Dist: fastembed (>=0.7,<0.8) ; extra == "fastembed"
Requires-Dist: fastembed-gpu (>=0.7,<0.8) ; extra == "fastembed-gpu"
Requires-Dist: grpcio (>=1.41.0)
Requires-Dist: httpx[http2] (>=0.20.0)
Requires-Dist: numpy (>=1.21) ; python_version >= "3.10" and python_version < "3.12"
Requires-Dist: numpy (>=1.21,<2.1.0) ; python_version < "3.10"
Requires-Dist: numpy (>=1.26) ; python_version == "3.12"
Requires-Dist: numpy (>=2.1.0) ; python_version >= "3.13"
Requires-Dist: portalocker (>=2.7.0,<4.0)
Requires-Dist: protobuf (>=3.20.0)
Requires-Dist: pydantic (>=1.10.8,!=2.0.*,!=2.1.*,!=2.2.0)
Requires-Dist: urllib3 (>=1.26.14,<3)
Project-URL: Homepage, https://github.com/qdrant/qdrant-client
Project-URL: Repository, https://github.com/qdrant/qdrant-client
Description-Content-Type: text/markdown
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/qdrant/qdrant/raw/master/docs/logo-dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://github.com/qdrant/qdrant/raw/master/docs/logo-light.svg">
<img height="100" alt="Qdrant" src="https://github.com/qdrant/qdrant/raw/master/docs/logo.svg">
</picture>
</p>
<p align="center">
<b>Python Client library for the <a href="https://github.com/qdrant/qdrant">Qdrant</a> vector search engine.</b>
</p>
<p align=center>
<a href="https://pypi.org/project/qdrant-client/"><img src="https://badge.fury.io/py/qdrant-client.svg" alt="PyPI version" height="18"></a>
<a href="https://api.qdrant.tech/"><img src="https://img.shields.io/badge/Docs-OpenAPI%203.0-success" alt="OpenAPI Docs"></a>
<a href="https://github.com/qdrant/qdrant-client/blob/master/LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-success" alt="Apache 2.0 License"></a>
<a href="https://qdrant.to/discord"><img src="https://img.shields.io/badge/Discord-Qdrant-5865F2.svg?logo=discord" alt="Discord"></a>
<a href="https://qdrant.to/roadmap"><img src="https://img.shields.io/badge/Roadmap-2025-bc1439.svg" alt="Roadmap 2025"></a>
</p>
# Python Qdrant Client
Client library and SDK for the [Qdrant](https://github.com/qdrant/qdrant) vector search engine.
Library contains type definitions for all Qdrant API and allows to make both Sync and Async requests.
Client allows calls for all [Qdrant API methods](https://api.qdrant.tech/) directly.
It also provides some additional helper methods for frequently required operations, e.g. initial collection uploading.
See [QuickStart](https://qdrant.tech/documentation/quick-start/#create-collection) for more details!
## Installation
```
pip install qdrant-client
```
## Features
- Type hints for all API methods
- Local mode - use same API without running server
- REST and gRPC support
- Minimal dependencies
- Extensive Test Coverage
## Local mode
<p align="center">
<!--- https://github.com/qdrant/qdrant-client/raw/master -->
<img max-height="180" src="https://github.com/qdrant/qdrant-client/raw/master/docs/images/try-develop-deploy.png" alt="Qdrant">
</p>
Python client allows you to run same code in local mode without running Qdrant server.
Simply initialize client like this:
```python
from qdrant_client import QdrantClient
client = QdrantClient(":memory:")
# or
client = QdrantClient(path="path/to/db") # Persists changes to disk
```
Local mode is useful for development, prototyping and testing.
- You can use it to run tests in your CI/CD pipeline.
- Run it in Colab or Jupyter Notebook, no extra dependencies required. See an [example](https://colab.research.google.com/drive/1Bz8RSVHwnNDaNtDwotfPj0w7AYzsdXZ-?usp=sharing)
- When you need to scale, simply switch to server mode.
## Connect to Qdrant server
To connect to Qdrant server, simply specify host and port:
```python
from qdrant_client import QdrantClient
client = QdrantClient(host="localhost", port=6333)
# or
client = QdrantClient(url="http://localhost:6333")
```
You can run Qdrant server locally with docker:
```bash
docker run -p 6333:6333 qdrant/qdrant:latest
```
See more launch options in [Qdrant repository](https://github.com/qdrant/qdrant#usage).
## Connect to Qdrant cloud
You can register and use [Qdrant Cloud](https://cloud.qdrant.io/) to get a free tier account with 1GB RAM.
Once you have your cluster and API key, you can connect to it like this:
```python
from qdrant_client import QdrantClient
qdrant_client = QdrantClient(
url="https://xxxxxx-xxxxx-xxxxx-xxxx-xxxxxxxxx.us-east.aws.cloud.qdrant.io:6333",
api_key="<your-api-key>",
)
```
## Inference API
Qdrant Client has Inference API that allows to seamlessly create embeddings and use them in Qdrant.
Inference API can be used locally with FastEmbed or remotely with models available in Qdrant Cloud.
### Local Inference with FastEmbed
```
pip install qdrant-client[fastembed]
```
FastEmbed is a library for creating fast vector embeddings on CPU. It is based on ONNX Runtime and allows to run inference both on CPU and GPU.
Qdrant Client can use FastEmbed to create embeddings and upload them to Qdrant. This allows to simplify API and make it more intuitive.
```python
from qdrant_client import QdrantClient, models
# running qdrant in local mode suitable for experiments
client = QdrantClient(":memory:") # or QdrantClient(path="path/to/db") for local mode and persistent storage
model_name = "sentence-transformers/all-MiniLM-L6-v2"
payload = [
{"document": "Qdrant has Langchain integrations", "source": "Langchain-docs", },
{"document": "Qdrant also has Llama Index integrations", "source": "LlamaIndex-docs"},
]
docs = [models.Document(text=data["document"], model=model_name) for data in payload]
ids = [42, 2]
client.create_collection(
"demo_collection",
vectors_config=models.VectorParams(
size=client.get_embedding_size(model_name), distance=models.Distance.COSINE)
)
client.upload_collection(
collection_name="demo_collection",
vectors=docs,
ids=ids,
payload=payload,
)
search_result = client.query_points(
collection_name="demo_collection",
query=models.Document(text="This is a query document", model=model_name)
).points
print(search_result)
```
FastEmbed can also utilise GPU for faster embeddings. To enable GPU support, install
```bash
pip install 'qdrant-client[fastembed-gpu]'
```
In order to set GPU, extend documents from the previous example with `options`.
```python
models.Document(text="To be computed on GPU", model=model_name, options={"cuda": True})
```
> Note: `fastembed-gpu` and `fastembed` are mutually exclusive. You can only install one of them.
>
> If you previously installed `fastembed`, you might need to start from a fresh environment to install `fastembed-gpu`.
### Remote inference with Qdrant Cloud
Qdrant Cloud provides a set of predefined models that can be used for inference without a need to install any additional libraries or host models locally. (Currently available only on paid plans.)
Inference API is the same as in the local mode, but the client has to be instantiated with `cloud_inference=True`:
```python
from qdrant_client import QdrantClient
client = QdrantClient(
url="https://xxxxxx-xxxxx-xxxxx-xxxx-xxxxxxxxx.us-east.aws.cloud.qdrant.io:6333",
api_key="<your-api-key>",
cloud_inference=True, # Enable remote inference
)
```
> Note: remote inference requires images to be provided as base64 encoded strings or urls
## Examples
Create a new collection
```python
from qdrant_client.models import Distance, VectorParams
client.create_collection(
collection_name="my_collection",
vectors_config=VectorParams(size=100, distance=Distance.COSINE),
)
```
Insert vectors into a collection
```python
import numpy as np
from qdrant_client.models import PointStruct
vectors = np.random.rand(100, 100)
# NOTE: consider splitting the data into chunks to avoid hitting the server's payload size limit
# or use `upload_collection` or `upload_points` methods which handle this for you
# WARNING: uploading points one-by-one is not recommended due to requests overhead
client.upsert(
collection_name="my_collection",
points=[
PointStruct(
id=idx,
vector=vector.tolist(),
payload={"color": "red", "rand_number": idx % 10}
)
for idx, vector in enumerate(vectors)
]
)
```
Search for similar vectors
```python
query_vector = np.random.rand(100)
hits = client.query_points(
collection_name="my_collection",
query=query_vector,
limit=5 # Return 5 closest points
)
```
Search for similar vectors with filtering condition
```python
from qdrant_client.models import Filter, FieldCondition, Range
hits = client.query_points(
collection_name="my_collection",
query=query_vector,
query_filter=Filter(
must=[ # These conditions are required for search results
FieldCondition(
key='rand_number', # Condition based on values of `rand_number` field.
range=Range(
gte=3 # Select only those results where `rand_number` >= 3
)
)
]
),
limit=5 # Return 5 closest points
)
```
See more examples in our [Documentation](https://qdrant.tech/documentation/)!
### gRPC
To enable (typically, much faster) collection uploading with gRPC, use the following initialization:
```python
from qdrant_client import QdrantClient
client = QdrantClient(host="localhost", grpc_port=6334, prefer_grpc=True)
```
## Async client
Starting from version 1.6.1, all python client methods are available in async version.
To use it, just import `AsyncQdrantClient` instead of `QdrantClient`:
```python
import asyncio
import numpy as np
from qdrant_client import AsyncQdrantClient, models
async def main():
# Your async code using QdrantClient might be put here
client = AsyncQdrantClient(url="http://localhost:6333")
await client.create_collection(
collection_name="my_collection",
vectors_config=models.VectorParams(size=10, distance=models.Distance.COSINE),
)
await client.upsert(
collection_name="my_collection",
points=[
models.PointStruct(
id=i,
vector=np.random.rand(10).tolist(),
)
for i in range(100)
],
)
res = await client.query_points(
collection_name="my_collection",
query=np.random.rand(10).tolist(), # type: ignore
limit=10,
)
print(res)
asyncio.run(main())
```
Both, gRPC and REST API are supported in async mode.
More examples can be found [here](./tests/test_async_qdrant_client.py).
### Development
This project uses git hooks to run code formatters.
Set up hooks with `pre-commit install` before making contributions.
@@ -0,0 +1,221 @@
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/_pydantic_compat.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/async_client_base.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/async_qdrant_client.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/async_qdrant_fastembed.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/async_qdrant_remote.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/auth/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/auth/bearer_auth.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/client_base.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/common/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/common/client_exceptions.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/common/client_warnings.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/common/version_check.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/connection.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/conversions/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/conversions/common_types.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/conversions/conversion.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/_inspection_cache.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/builtin_embedder.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/common.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/embed_inspector.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/embedder.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/model_embedder.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/models.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/schema_parser.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/type_inspector.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/embed/utils.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/fastembed_common.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/collections_pb2.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/collections_pb2_grpc.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/collections_service_pb2.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/collections_service_pb2_grpc.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/json_with_int_pb2.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/json_with_int_pb2_grpc.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/points_pb2.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/points_pb2_grpc.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/points_service_pb2.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/points_service_pb2_grpc.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/qdrant_common_pb2.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/qdrant_common_pb2_grpc.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/qdrant_pb2.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/qdrant_pb2_grpc.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/snapshots_service_pb2.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/grpc/snapshots_service_pb2_grpc.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/aliases_api.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/beta_api.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/collections_api.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/distributed_api.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/indexes_api.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/points_api.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/search_api.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/service_api.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api/snapshots_api.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/api_client.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/configuration.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/exceptions.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/models/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/http/models/models.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/hybrid/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/hybrid/formula.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/hybrid/fusion.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/hybrid/test_reranking.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/async_qdrant_local.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/datetime_utils.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/distances.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/geo.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/json_path_parser.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/local_collection.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/multi_distances.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/order_by.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/payload_filters.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/payload_value_extractor.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/payload_value_setter.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/persistence.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/qdrant_local.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/sparse.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/sparse_distances.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/tests/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/tests/test_datetimes.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/tests/test_distances.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/tests/test_payload_filters.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/tests/test_payload_utils.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/tests/test_referenced_vectors.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/local/tests/test_vectors.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/migrate/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/migrate/migrate.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/models/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/parallel_processor.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/qdrant_client.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/qdrant_fastembed.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/qdrant_remote.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/uploader/__init__.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/uploader/grpc_uploader.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/uploader/rest_uploader.cpython-39.pyc,,
../../../../../../../../../Library/Caches/com.apple.python/Users/blizzard/sourceCode/GolandProjects/src/AI-Write-Assistant/server/venv/lib/python3.9/site-packages/qdrant_client/uploader/uploader.cpython-39.pyc,,
qdrant_client-1.16.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
qdrant_client-1.16.1.dist-info/METADATA,sha256=4Ezi4hDgVrWd_zatKI2vRwi1ndJSO_VrBu1raOf0LGg,11599
qdrant_client-1.16.1.dist-info/RECORD,,
qdrant_client-1.16.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
qdrant_client-1.16.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
qdrant_client-1.16.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
qdrant_client/__init__.py,sha256=5u3j-sGwb0eTdr2VUHfBRwDyPllp3jfgMkc9LuJqILU,128
qdrant_client/_pydantic_compat.py,sha256=gnFR-ItUJOTCnAlx3j329Wi94JOF1uZS3YfE9a3TT-E,1880
qdrant_client/async_client_base.py,sha256=OOHvSgvsvvGm9MAWdn5boQzDBZERDYnT3T4NLhBNUG0,12533
qdrant_client/async_qdrant_client.py,sha256=BXFeiakHj0oorp1R6sqw9afhvkwnbQPYkE_5KGpOtYg,105344
qdrant_client/async_qdrant_fastembed.py,sha256=iqSsmke_072ZYXnrIu5MXTHBP8xa5ZDnuJtYKi2vlQk,35520
qdrant_client/async_qdrant_remote.py,sha256=ZxcMJRWhwIY31gG2UPzVOsKjZ_XsqyLsQtlYIh4Vx8w,110361
qdrant_client/auth/__init__.py,sha256=jKh5O_7OnOT4beJoPPr-DuGNy67x5_ZugEcdW-nV99I,54
qdrant_client/auth/bearer_auth.py,sha256=n9SZX_KgIEnXeEF5OTBPp5ObVAVUnts8XJR1yWPQgjk,1567
qdrant_client/client_base.py,sha256=S9FCS7yxHXpc5o38FvVqRUjithIkTqpkkTKbbvbApaE,12301
qdrant_client/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
qdrant_client/common/client_exceptions.py,sha256=rcfqb1KsIGw0FyC-Nf4Jh3-W2PG7WccaZIVeOARn0WI,555
qdrant_client/common/client_warnings.py,sha256=KG6AxD1phdoKIwN_TC2eCCyonZaUGl1DBIPFvZfn6zI,633
qdrant_client/common/version_check.py,sha256=6mbUiYd6lQs_mSjl0Xh_MDagDKY47lPVpbZnUPDIs-E,2089
qdrant_client/connection.py,sha256=g0HwDUmBt8V012CMFm3P6thkyt2i2BICkZFPZXXMkOc,13282
qdrant_client/conversions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
qdrant_client/conversions/common_types.py,sha256=b3sLhkm2tdEcuMX-jvQxraf1kK9k8SIOjTtR361lFAM,5577
qdrant_client/conversions/conversion.py,sha256=7tpPFdeGF1usAZrataaNixb6QTHcSoTVuJdL7Grblmg,208009
qdrant_client/embed/_inspection_cache.py,sha256=AgniBOsvAXuUtXy2azSo6ysyIE9wAWq0KPrPBL4bCrE,189366
qdrant_client/embed/builtin_embedder.py,sha256=xMCvVKXBP8FZHOlr4UKwu_1cAG5AypK9pqpOQA7aXRA,3190
qdrant_client/embed/common.py,sha256=7XS0bH2TRhZdPhoqBmpb0JTB4JNnTeaw7BcjqZG5Me4,227
qdrant_client/embed/embed_inspector.py,sha256=_l4Up3lqKczRswiD8pSzyyHZNYGNlUuXqEPY156xuZg,6751
qdrant_client/embed/embedder.py,sha256=wkeX7f_Y_aQCMO4X0-OMxI1ZRuwXzoR4Q_sgyz18mIc,16412
qdrant_client/embed/model_embedder.py,sha256=Fi0LqM-mdptfghE1Ko0bz10Y6Pordfdzqz2jgCElfT0,20673
qdrant_client/embed/models.py,sha256=WO-yeB0j-YtLqWr8Oful4sen5gwaIAxus3WGkzQbTcA,550
qdrant_client/embed/schema_parser.py,sha256=92A8qRRvUriDMH2mlwjlKcPngVpNRzui1mHDNo7xGKs,11846
qdrant_client/embed/type_inspector.py,sha256=dWMR773n6XD9D0-g3BFYBtxpaq8IkueXHGeWduhJkCo,5426
qdrant_client/embed/utils.py,sha256=ymvPINc-VQlzW-9r4u3LxAU0V2Q2Alxn0MD1-x8d3NI,2522
qdrant_client/fastembed_common.py,sha256=q0-alPSbL3JKTqO7YtKfXgyjvk6XpHHRcCXspfWWk1o,11135
qdrant_client/grpc/__init__.py,sha256=gNynqfzEKeBWJYhmKV5TG15ISjSQNNy9J9aKpey-43U,342
qdrant_client/grpc/collections_pb2.py,sha256=T60rBqtNxf_n08BuoglEWDaf8ZUXZbb-Vp1ZZgNHZ30,43873
qdrant_client/grpc/collections_pb2.pyi,sha256=6SVpiEs1s2ipUCgNeyL_jj5vsDbG0BALCOmbMxzugxE,164363
qdrant_client/grpc/collections_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
qdrant_client/grpc/collections_service_pb2.py,sha256=UUmCf-dETXqu26FjJ1QbgOkveWFII-dkhwlX6yRBJ1g,2649
qdrant_client/grpc/collections_service_pb2.pyi,sha256=XbFvpZvvrS7QcH5AFXfpRGl4hQvhd3QdKO6x0oTlCCU,165
qdrant_client/grpc/collections_service_pb2_grpc.py,sha256=2-TZAR3calEcVJB96zXJmDA-XQ7Xg77V988TWzqjvMU,21674
qdrant_client/grpc/json_with_int_pb2.py,sha256=jX2PNhalTCWnqKfFxWF5yoBSj-vgpbiN-taoI0b5CPk,2374
qdrant_client/grpc/json_with_int_pb2.pyi,sha256=No5wiM5Bdue9Mnf52oO7gjuZom_TXtKSA9b_5DS8nhQ,6293
qdrant_client/grpc/json_with_int_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
qdrant_client/grpc/points_pb2.py,sha256=e_q79IAhsioXxQtEGWWGI5GwT-KrsA0aZhuheRHN8bY,66609
qdrant_client/grpc/points_pb2.pyi,sha256=A6D8-MXKlv-aUpTOXlXo_ITPUHvztG7EIBxW-U-Hp-U,251454
qdrant_client/grpc/points_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
qdrant_client/grpc/points_service_pb2.py,sha256=0CS1jSmA_4RodmEjdpI7ywBuj4YKzNuu40n2fpnkXGg,3920
qdrant_client/grpc/points_service_pb2.pyi,sha256=XbFvpZvvrS7QcH5AFXfpRGl4hQvhd3QdKO6x0oTlCCU,165
qdrant_client/grpc/points_service_pb2_grpc.py,sha256=wnow0l42jcYSFn5nVrqNiGDnCOdVquRW4EXuNmzePKs,45219
qdrant_client/grpc/qdrant_common_pb2.py,sha256=4bk16ah-8dU6S7pTzOOOWSfsAiFNQ-XZMllcmWE6f4E,7731
qdrant_client/grpc/qdrant_common_pb2.pyi,sha256=vvT6_48mvMrq78o_Pe06_IE0Pq99OyUtyx2rHzh4hIc,24660
qdrant_client/grpc/qdrant_common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
qdrant_client/grpc/qdrant_pb2.py,sha256=sCJpZa6a6VvBuo4bVr0epLPtxhg7ZbtMz_QG2HUoYLU,1900
qdrant_client/grpc/qdrant_pb2.pyi,sha256=hNptdAAzXk7P9hBtR4obT2uB2oVlvmwLacekB-CrY40,1500
qdrant_client/grpc/qdrant_pb2_grpc.py,sha256=YqevN3jutIpdE1W1VLpdpZl2X8JiP0c-ORRDkp5-A0o,2411
qdrant_client/grpc/snapshots_service_pb2.py,sha256=im5FHj8A8apfFRh8p7ERN2Z8iL7XQDj0_j7o1XYNCRE,4142
qdrant_client/grpc/snapshots_service_pb2.pyi,sha256=UXKk6KPRfsR-PsL3AmvEc9SZ467oj9eF4ErwJb6y474,6692
qdrant_client/grpc/snapshots_service_pb2_grpc.py,sha256=CNtlRNQRw956_jmXeUtpIVUWuty-3C31f-aMp6n8lrA,10406
qdrant_client/http/__init__.py,sha256=69I2MS5VtoC2ZVMC6yUdeWFMI1d9E3elEsFscRO8Amw,605
qdrant_client/http/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
qdrant_client/http/api/aliases_api.py,sha256=xNV2MmBSKhTqK0sBWwnQCKkhRi_jqDmBRKPhHVpw0Ls,4786
qdrant_client/http/api/beta_api.py,sha256=D1VAzvnvYjbrcmKmQ8sKIxSHrnMO3DGNkx2F8SoWYms,2860
qdrant_client/http/api/collections_api.py,sha256=FJNTT8oRJFB9PhrICXgcJr-2h7eYf1qhwqLNIcBkMIM,9691
qdrant_client/http/api/distributed_api.py,sha256=U_BAvP4uXYaEIPTgrBsnAdLCGO8y5MlJs-rjL5bP27M,10577
qdrant_client/http/api/indexes_api.py,sha256=ra1qz8Q0FTSwB2A3Q9PKiV_8PE01n4micwbk3AWVyLo,5421
qdrant_client/http/api/points_api.py,sha256=5vBXvDRrAMSUtwPeDi9m7d5ZX32uS0vJUwIhu5W4jH8,30391
qdrant_client/http/api/search_api.py,sha256=8KI-P5K_cVxfFgAvKMvVLbhjATAbpN3feSr_YRpKHzQ,35190
qdrant_client/http/api/service_api.py,sha256=nZbttj366s_7psTVq00MqE212FECQZ8tkjq41RTuIXI,7012
qdrant_client/http/api/snapshots_api.py,sha256=xDycqGxUINy9saZOvIE64zZrU_RcOCojpjjAHW18qdI,27711
qdrant_client/http/api_client.py,sha256=a7fdpkV0Nxdks2zB1j_HdjBT9T8CK6MTSSFvsCK2XMI,10355
qdrant_client/http/configuration.py,sha256=P7bThTfQxZI6AHDjZ8OgD6-h2caUQEqOPULGQP1el-I,233
qdrant_client/http/exceptions.py,sha256=qUIsippuevch3cVbY6oPltFc2nRLE8reaN2DImFeFWo,1616
qdrant_client/http/models/__init__.py,sha256=hMFZuTiLnInwxMbPve4uQ49BIawLswayp08cgOrg-XM,22
qdrant_client/http/models/models.py,sha256=wbjUSEhQQJ17lPmHKglgYRwjsKB9sw3iBUvv9K2YFFI,159450
qdrant_client/hybrid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
qdrant_client/hybrid/formula.py,sha256=PKnUtiuW-FAMr2PlimuaemiqGif5uTzhx7N11S1ovXA,12163
qdrant_client/hybrid/fusion.py,sha256=OcawpgIaZ7MQNW0Oe4aiwflcyHNsbg8eG-zGC__o9jk,2603
qdrant_client/hybrid/test_reranking.py,sha256=5IpF6xqlZ1ArbD5srC6p2ESxWMLHBTelAKCzu4ym6E4,3650
qdrant_client/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
qdrant_client/local/async_qdrant_local.py,sha256=0Ti3oaiD-lRbB75WuyNb3LdjjQD9Cfn0Y0lhkLSkML4,38805
qdrant_client/local/datetime_utils.py,sha256=IaqficlbvTISe4X2zJW7DMkdUYkEqPrUFX2z5e4lyF4,1689
qdrant_client/local/distances.py,sha256=hMzvvfV6-LVMvhZKxh9eIZrHFb6I50WJpPOOCISShxg,10161
qdrant_client/local/geo.py,sha256=MygLCB28hom8amTHRv_4wn7izFn8M7h3arIPaYR-Q84,2939
qdrant_client/local/json_path_parser.py,sha256=kb0s0z3y4CpWjWAz6lV7l8rAmjbgjn_8t53ziZbE92A,3900
qdrant_client/local/local_collection.py,sha256=rUVJh7SV6lX4YP6ekJB9zIbckDY-ePW4i7JYxQzw7r4,113459
qdrant_client/local/multi_distances.py,sha256=LAjAsyaaEY5PcjDYaaxK5DhgFmK2EBl76OeVYq50xZY,8014
qdrant_client/local/order_by.py,sha256=VB1QLITwFykKQwxEILTz6zXez9LEgmmTPbHqORg-2fQ,760
qdrant_client/local/payload_filters.py,sha256=E14La9WRLHTPsO2aoicLMfSeefJv-ef35ctXekAP9HY,11754
qdrant_client/local/payload_value_extractor.py,sha256=jFznBM2Wm3HGe98eNKoopt90pffZXEIapQgCbE-B7JM,2868
qdrant_client/local/payload_value_setter.py,sha256=Yf1vcj7fNreLcmy0XLKYcEqf3iyiV1HlMnRMixB4tGc,7144
qdrant_client/local/persistence.py,sha256=hE0RRhZ7wz7ObKbfq_jwA3bvmp7jqXdDFYHqMXCVRYY,5587
qdrant_client/local/qdrant_local.py,sha256=TeitzWyTPcDW7CMg2ap-Oh1tFD-xnO2m4ESRDDmP3sQ,39501
qdrant_client/local/sparse.py,sha256=AC20kertYuR8LjYfrJy-9lj_pSlBzLJyYtwRNpRQatE,1020
qdrant_client/local/sparse_distances.py,sha256=0ECTGgPsJSTfGhgBLy8S3Hk9fF4ErrjGOONXDix0z-A,10351
qdrant_client/local/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
qdrant_client/local/tests/test_datetimes.py,sha256=IId0RwWWdE5P_IOYSdLhd99JkzlRhbsQg2vZ3GARFmM,2451
qdrant_client/local/tests/test_distances.py,sha256=x-6Ox-7rtg95jfU87LvTRu58lw6Y5y_VYtqb4DjBnus,2223
qdrant_client/local/tests/test_payload_filters.py,sha256=AjzE7Z796EjxbIbxN3oIpUp4bSY-fOsx81eL11wJ3QI,5477
qdrant_client/local/tests/test_payload_utils.py,sha256=INmUuYrIkTSHAIwR3VLaLnD9rR5lNczeqeQUIeTUTiE,18258
qdrant_client/local/tests/test_referenced_vectors.py,sha256=sAaGZOz9xNcyY6hUd8Ay1oUXu7H1RTpZV2AIZROXb2s,4278
qdrant_client/local/tests/test_vectors.py,sha256=BW0OwO8M6fucZTdhv-VI15aTuLRpjSRFSd9mb_rNq9I,690
qdrant_client/migrate/__init__.py,sha256=uR3fqlPKHhdlY7msnDWAt2eXQZbKfreOYa4y5zRSOyc,29
qdrant_client/migrate/migrate.py,sha256=5YBg6yczGHaMPNNaU0RUBOgZDvlqqbMTgwyyNXWHYDg,7445
qdrant_client/models/__init__.py,sha256=ckFUKf4zU6gRaTONHlvIWmCV8Hu03QoNrc0fyYGqmpg,126
qdrant_client/parallel_processor.py,sha256=c2bPphF54jpyCrUlgZepCZ61JmboWUjVTckLA4BpqZQ,8717
qdrant_client/proto/collections.proto,sha256=iQjfBmclbtaU8J8-aKtAmv3v0ar0Rf6SXic7Bnv_64g,29379
qdrant_client/proto/collections_service.proto,sha256=iQCZZh93uwOEjMvb_FaD3U6u3guSnLioC0iTo6exbPE,1894
qdrant_client/proto/json_with_int.proto,sha256=kJx7T6R8dQKr6G8ACE0ga73HtpD86kGm0dH7059T3C8,1984
qdrant_client/proto/points.proto,sha256=-4xF8KWHfaA2Rn46VtgeDP2d1urdTVHe8JULoNGy-4k,46238
qdrant_client/proto/points_service.proto,sha256=rWVU7G9ItzZKy-VJl6sGoJnRsi4rPB2JItXW_1v__H8,5526
qdrant_client/proto/qdrant.proto,sha256=W7rxoFXePX-gh7UIVx7ZmeTPyv0TjYSfbojnKKttYsI,408
qdrant_client/proto/qdrant_common.proto,sha256=KwPF2KsE4mrSQjS3AercLE99qLCrWpiVVDyDLQGIUxo,3990
qdrant_client/proto/snapshots_service.proto,sha256=O6i1DYjQQAuvB1JITQgxZuHUTcJTXimrI2kGFdxYYzQ,1970
qdrant_client/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
qdrant_client/qdrant_client.py,sha256=Z7Gz3YAuVVx49QPl2WWS81W2bjjBdMlpqfpgSgDDMbA,106860
qdrant_client/qdrant_fastembed.py,sha256=_XhqguxB3t9jMwbECG4MyzBrsKQgBebYJLIBDaAPBxQ,35628
qdrant_client/qdrant_remote.py,sha256=94u53Y06JfH79GrL7lHUoXcAaCQ4-2hoZqDSIhuQ9Vo,109008
qdrant_client/uploader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
qdrant_client/uploader/grpc_uploader.py,sha256=6RQ-HMNWHoj9tKEYhfZTedQuRwwikJy5tZ28dz1BIEw,4936
qdrant_client/uploader/rest_uploader.py,sha256=TeoWAfwJIBnuyk7CsDhRhhCguLLMgH6Vh-oXerpEYlU,4137
qdrant_client/uploader/uploader.py,sha256=m3y6Qn-MdRjQIoXB6k2_Lt7SAnrrlkMiUTtuOW_5_yU,3354
@@ -0,0 +1,4 @@
Wheel-Version: 1.0
Generator: poetry-core 2.2.1
Root-Is-Purelib: true
Tag: py3-none-any
@@ -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.