truefoundry 0.0.1.dev0__tar.gz → 0.1.1__tar.gz
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.
Potentially problematic release.
This version of truefoundry might be problematic. Click here for more details.
- truefoundry-0.1.1/PKG-INFO +49 -0
- truefoundry-0.1.1/README.md +30 -0
- {truefoundry-0.0.1.dev0 → truefoundry-0.1.1}/pyproject.toml +9 -7
- {truefoundry-0.0.1.dev0 → truefoundry-0.1.1}/truefoundry/cli/__main__.py +9 -4
- truefoundry-0.1.1/truefoundry/langchain/__init__.py +1 -0
- truefoundry-0.1.1/truefoundry/ml/__init__.py +4 -0
- truefoundry-0.0.1.dev0/PKG-INFO +0 -19
- truefoundry-0.0.1.dev0/README.md +0 -1
- truefoundry-0.0.1.dev0/truefoundry/ml/__init__.py +0 -1
- {truefoundry-0.0.1.dev0 → truefoundry-0.1.1}/truefoundry/__init__.py +0 -0
- {truefoundry-0.0.1.dev0 → truefoundry-0.1.1}/truefoundry/cli/__init__.py +0 -0
- {truefoundry-0.0.1.dev0 → truefoundry-0.1.1}/truefoundry/deploy/__init__.py +0 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: truefoundry
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Truefoundry CLI
|
|
5
|
+
Author: Abhishek Choudhary
|
|
6
|
+
Author-email: abhichoudhary06@gmail.com
|
|
7
|
+
Requires-Python: >=3.8,<3.13
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Provides-Extra: ml
|
|
15
|
+
Requires-Dist: mlfoundry (==0.10.8) ; extra == "ml"
|
|
16
|
+
Requires-Dist: servicefoundry (==0.10.5)
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# Truefoundry
|
|
20
|
+
|
|
21
|
+
TrueFoundry library to help you interact with the platform programmatically by
|
|
22
|
+
|
|
23
|
+
- Interacting with the deployments side of TrueFoundry, enabling you to manage workspaces, deployments, applications, and view logs.
|
|
24
|
+
- Providing experiment tracking capabilities, allowing you to track ML experiments and interact with ML repositories within TrueFoundry.
|
|
25
|
+
|
|
26
|
+
You can access the health of your service, monitoring links, deployed endpoints and track metadata and artifacts by logging on to TrueFoundry's dashboard.
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
To install the `TrueFoundry CLI`, you can use pip:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install truefoundry
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
To install the `TrueFoundry CLI` with metadata/artifact tracking, you can use pip:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install truefoundry[ml]
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Examples
|
|
43
|
+
|
|
44
|
+
https://github.com/truefoundry/getting-started-examples
|
|
45
|
+
|
|
46
|
+
## Documentation
|
|
47
|
+
|
|
48
|
+
https://docs.truefoundry.com/
|
|
49
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Truefoundry
|
|
2
|
+
|
|
3
|
+
TrueFoundry library to help you interact with the platform programmatically by
|
|
4
|
+
|
|
5
|
+
- Interacting with the deployments side of TrueFoundry, enabling you to manage workspaces, deployments, applications, and view logs.
|
|
6
|
+
- Providing experiment tracking capabilities, allowing you to track ML experiments and interact with ML repositories within TrueFoundry.
|
|
7
|
+
|
|
8
|
+
You can access the health of your service, monitoring links, deployed endpoints and track metadata and artifacts by logging on to TrueFoundry's dashboard.
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
To install the `TrueFoundry CLI`, you can use pip:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
pip install truefoundry
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
To install the `TrueFoundry CLI` with metadata/artifact tracking, you can use pip:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install truefoundry[ml]
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Examples
|
|
25
|
+
|
|
26
|
+
https://github.com/truefoundry/getting-started-examples
|
|
27
|
+
|
|
28
|
+
## Documentation
|
|
29
|
+
|
|
30
|
+
https://docs.truefoundry.com/
|
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "truefoundry"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "Truefoundry CLI"
|
|
5
5
|
authors = ["Abhishek Choudhary <abhichoudhary06@gmail.com>"]
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
|
|
8
8
|
[tool.poetry.dependencies]
|
|
9
9
|
python = "^3.8,<3.13"
|
|
10
|
-
servicefoundry = "0.10.
|
|
11
|
-
mlfoundry = { version = "0.10.
|
|
12
|
-
|
|
10
|
+
servicefoundry = "0.10.5"
|
|
11
|
+
mlfoundry = { version = "0.10.8", optional = true }
|
|
13
12
|
|
|
14
13
|
[tool.poetry.extras]
|
|
15
14
|
ml = ["mlfoundry"]
|
|
16
15
|
|
|
16
|
+
[tool.poetry-dynamic-versioning]
|
|
17
|
+
enable = false
|
|
18
|
+
|
|
17
19
|
[build-system]
|
|
18
|
-
requires = ["poetry-core"]
|
|
19
|
-
build-backend = "
|
|
20
|
+
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
|
|
21
|
+
build-backend = "poetry_dynamic_versioning.backend"
|
|
20
22
|
|
|
21
23
|
[tool.poetry.plugins."console_scripts"]
|
|
22
24
|
tfy = "truefoundry.cli.__main__:main"
|
|
23
|
-
truefoundry = "truefoundry.cli.__main__:main"
|
|
25
|
+
truefoundry = "truefoundry.cli.__main__:main"
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import os
|
|
2
1
|
import sys
|
|
3
2
|
|
|
4
3
|
import click
|
|
5
|
-
from mlfoundry.cli.commands import download
|
|
6
4
|
from servicefoundry.cli import create_servicefoundry_cli
|
|
7
5
|
|
|
6
|
+
MLFOUNDRY_INSTALLED = True
|
|
7
|
+
try:
|
|
8
|
+
from mlfoundry.cli.commands import download
|
|
9
|
+
except ImportError:
|
|
10
|
+
MLFOUNDRY_INSTALLED = False
|
|
11
|
+
|
|
8
12
|
|
|
9
13
|
@click.group()
|
|
10
14
|
def ml():
|
|
@@ -16,9 +20,10 @@ def main():
|
|
|
16
20
|
# If the status is omitted or None, it defaults to zero (i.e., success).
|
|
17
21
|
# If the status is an integer, it will be used as the system exit status.
|
|
18
22
|
# If it is another kind of object, it will be printed and the system exit status will be one (i.e., failure).
|
|
19
|
-
ml.add_command(download)
|
|
20
23
|
cli = create_servicefoundry_cli()
|
|
21
|
-
|
|
24
|
+
if MLFOUNDRY_INSTALLED:
|
|
25
|
+
ml.add_command(download)
|
|
26
|
+
cli.add_command(ml)
|
|
22
27
|
sys.exit(cli())
|
|
23
28
|
|
|
24
29
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from servicefoundry.langchain import *
|
truefoundry-0.0.1.dev0/PKG-INFO
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: truefoundry
|
|
3
|
-
Version: 0.0.1.dev0
|
|
4
|
-
Summary: Truefoundry CLI
|
|
5
|
-
Author: Abhishek Choudhary
|
|
6
|
-
Author-email: abhichoudhary06@gmail.com
|
|
7
|
-
Requires-Python: >=3.8,<3.13
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
-
Provides-Extra: ml
|
|
15
|
-
Requires-Dist: mlfoundry (==0.10.7) ; extra == "ml"
|
|
16
|
-
Requires-Dist: servicefoundry (==0.10.1)
|
|
17
|
-
Description-Content-Type: text/markdown
|
|
18
|
-
|
|
19
|
-
# truefoundry-cli
|
truefoundry-0.0.1.dev0/README.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# truefoundry-cli
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from mlfoundry import *
|
|
File without changes
|
|
File without changes
|
|
File without changes
|