ailoy-py 0.0.1__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ailoy/__init__.py ADDED
@@ -0,0 +1,14 @@
1
+ """""" # start delvewheel patch
2
+ def _delvewheel_patch_1_10_1():
3
+ import os
4
+ if os.path.isdir(libs_dir := os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, 'ailoy_py.libs'))):
5
+ os.add_dll_directory(libs_dir)
6
+
7
+
8
+ _delvewheel_patch_1_10_1()
9
+ del _delvewheel_patch_1_10_1
10
+ # end delvewheel patch
11
+
12
+ from .agent import Agent # noqa: F401
13
+ from .runtime import AsyncRuntime, Runtime # noqa: F401
14
+ from .vector_store import VectorStore # noqa: F401