Files
qdrant-client/tools/async_client_generator/config.py
Andrey Vasnetsov 0f32e578ec update interface and version for fastembed (#340)
* update interface and version for fastembed

* fix types

* fix types

* regen async

* use python 3.11 to check compatibility

* fix docstring

* regen async

* propagate batch size
2023-10-16 18:13:52 +02:00

21 lines
423 B
Python

from pathlib import Path
CODE_DIR = Path(__file__).parent
ROOT_DIR = CODE_DIR.parent.parent
CLIENT_DIR = ROOT_DIR / "qdrant_client"
AUTOGEN_WARNING_MESSAGE = """
# ****** WARNING: THIS FILE IS AUTOGENERATED ******
#
# This file is autogenerated. Do not edit it manually.
# To regenerate this file, use
#
# ```
# bash -x tools/generate_async_client.sh
# ```
#
# ****** WARNING: THIS FILE IS AUTOGENERATED ******
"""