aipmodel 0.2.0__py3-none-any.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.
aipmodel/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .registry import download_model, create_model, get_model, list_models
|
aipmodel/registry.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
def download_model(model_id):
|
|
2
|
+
print(f"[SDK] Downloading model with ID: {model_id}")
|
|
3
|
+
|
|
4
|
+
def create_model(name):
|
|
5
|
+
print(f"[SDK] Creating model with name: {name}")
|
|
6
|
+
|
|
7
|
+
def get_model(model_id):
|
|
8
|
+
print(f"[SDK] Getting model with ID: {model_id}")
|
|
9
|
+
|
|
10
|
+
def list_models():
|
|
11
|
+
print("[SDK] Listing all models")
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
aipmodel/__init__.py,sha256=GAChKt3hM2BDgEJcFSdgeeE1EVDfm221hVZYAj7u41s,76
|
|
2
|
+
aipmodel/registry.py,sha256=0akQK7box6huYvcsDLSabgDZbuxxLWqgPIOAs-UsbDo,315
|
|
3
|
+
aipmodel-0.2.0.dist-info/METADATA,sha256=vvdcHcZahGFyzeT5JXTtPhjYFDCJGOSe3Qg8tKrV078,243
|
|
4
|
+
aipmodel-0.2.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
5
|
+
aipmodel-0.2.0.dist-info/top_level.txt,sha256=tCr0ZQgD1flFh3E9rxe4oN0IxpEse4RGcqB0l8hOlF4,9
|
|
6
|
+
aipmodel-0.2.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
aipmodel
|