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 +14 -0
- ailoy/agent.py +729 -0
- ailoy/ailoy_py.cp312-win_amd64.pyd +0 -0
- ailoy/ailoy_py.pyi +29 -0
- ailoy/cli/__main__.py +11 -0
- ailoy/cli/model.py +112 -0
- ailoy/presets/tools/calculator.json +24 -0
- ailoy/presets/tools/frankfurter.json +33 -0
- ailoy/presets/tools/nytimes.json +26 -0
- ailoy/presets/tools/tmdb.json +185 -0
- ailoy/runtime.py +273 -0
- ailoy/vector_store.py +207 -0
- ailoy_py-0.0.1.dist-info/DELVEWHEEL +2 -0
- ailoy_py-0.0.1.dist-info/METADATA +88 -0
- ailoy_py-0.0.1.dist-info/RECORD +20 -0
- ailoy_py-0.0.1.dist-info/WHEEL +5 -0
- ailoy_py-0.0.1.dist-info/entry_points.txt +3 -0
- ailoy_py.libs/msvcp140-9867ece6bcf7e4746fa7e6671b0a17bd.dll +0 -0
- ailoy_py.libs/tvm_runtime-4c0600618cdd179c584433a70f2968d5.dll +0 -0
- ailoy_py.libs/vcomp140-f99ecd9a7e9d3df487b10cf7a201d515.dll +0 -0
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
|