modelstudio 0.0.1a0__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.
modelstudio/__init__.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
2
|
+
|
|
3
|
+
try:
|
|
4
|
+
__version__ = version("modelstudio")
|
|
5
|
+
except PackageNotFoundError:
|
|
6
|
+
__version__ = "0.0.0"
|
|
7
|
+
|
|
8
|
+
def about() -> str:
|
|
9
|
+
return "ModelStudio is a pre-alpha toolkit for AI, ML, and LLM workflows."
|
|
10
|
+
|
|
11
|
+
__all__ = ["__version__", "about"]
|
modelstudio/cli.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import argparse
|
|
2
|
+
from modelstudio import __version__, about
|
|
3
|
+
|
|
4
|
+
def main() -> None:
|
|
5
|
+
parser = argparse.ArgumentParser(prog="modelstudio", description="ModelStudio command-line interface.")
|
|
6
|
+
parser.add_argument("--version", action="store_true", help="Print the installed ModelStudio version.")
|
|
7
|
+
args = parser.parse_args()
|
|
8
|
+
print(__version__ if args.version else about())
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: modelstudio
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: Early-stage toolkit for building AI, ML, and LLM workflows.
|
|
5
|
+
Project-URL: Homepage, https://github.com/YOUR_USERNAME/modelstudio
|
|
6
|
+
Project-URL: Repository, https://github.com/YOUR_USERNAME/modelstudio
|
|
7
|
+
Project-URL: Issues, https://github.com/YOUR_USERNAME/modelstudio/issues
|
|
8
|
+
Author: Ian
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Keywords: ai,deep-learning,llm,machine-learning,ml
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# ModelStudio
|
|
24
|
+
|
|
25
|
+
ModelStudio is an early-stage Python toolkit for building AI, ML, and LLM workflows.
|
|
26
|
+
|
|
27
|
+
This package is currently pre-alpha. The first release provides package metadata, a versioned Python module, and a small CLI while the full framework is being built.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
modelstudio/__init__.py,sha256=luigAmNZJwtwS1A2w2TQVUsQZJIul5kWdh--vUueaIo,299
|
|
2
|
+
modelstudio/cli.py,sha256=g60QM1znMINXtOedq17whrPTPEsFyR4PjEpzPE3U-_c,378
|
|
3
|
+
modelstudio-0.0.1a0.dist-info/METADATA,sha256=vVt4ipPrEHy7QSg8LIHV_cGPGkFGctuBLnPQzwTHIzA,1221
|
|
4
|
+
modelstudio-0.0.1a0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
5
|
+
modelstudio-0.0.1a0.dist-info/entry_points.txt,sha256=RKpTRFGS-5Mcax7EtezdQ3PALqNgNOZXu-dnVc9KlLE,53
|
|
6
|
+
modelstudio-0.0.1a0.dist-info/RECORD,,
|