mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-07-26 20:51:09 -05:00
* 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
21 lines
423 B
Python
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 ******
|
|
|
|
"""
|