tuvl 0.0.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.
- tuvl-0.0.1/.gitignore +0 -0
- tuvl-0.0.1/PKG-INFO +55 -0
- tuvl-0.0.1/README.md +38 -0
- tuvl-0.0.1/pyproject.toml +29 -0
- tuvl-0.0.1/src/tuvl/__init__.py +0 -0
- tuvl-0.0.1/src/tuvl/cli/__init__.py +0 -0
- tuvl-0.0.1/src/tuvl/cli/main.py +77 -0
- tuvl-0.0.1/src/tuvl/core/__init__.py +0 -0
- tuvl-0.0.1/src/tuvl/ui/__init__.py +0 -0
- tuvl-0.0.1/uv.lock +1464 -0
tuvl-0.0.1/.gitignore
ADDED
|
File without changes
|
tuvl-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tuvl
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Lightweight, AI-native orchestration
|
|
5
|
+
Author-email: Sooraj Rajagopalan <sooraj@tuvl.io>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.13
|
|
8
|
+
Requires-Dist: fastapi>=0.110.0
|
|
9
|
+
Requires-Dist: litellm>=1.35.0
|
|
10
|
+
Requires-Dist: neomodel>=5.3.0
|
|
11
|
+
Requires-Dist: pydantic>=2.7.0
|
|
12
|
+
Requires-Dist: pyyaml>=6.0.1
|
|
13
|
+
Requires-Dist: rich>=13.7.1
|
|
14
|
+
Requires-Dist: typer>=0.12.3
|
|
15
|
+
Requires-Dist: uvicorn>=0.30.0
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# đĒļ tuvl
|
|
19
|
+
|
|
20
|
+
> **Coming soon** â Lightweight, AI-native orchestration for building and deploying intelligent services.
|
|
21
|
+
|
|
22
|
+
`tuvl` lets you define, run, and manage multi-step AI agent workflows using plain YAML files. No boilerplate. No complex overhead. No lock-in.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## đĻ Status
|
|
27
|
+
|
|
28
|
+
This package is currently a **name reservation**. The full AI-native engine and CLI are under active development.
|
|
29
|
+
|
|
30
|
+
* **Website:** [tuvl.io](https://tuvl.io)
|
|
31
|
+
* **GitHub:** [tuvl-io/public](https://github.com/tuvl-io/public)
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## đĻ Components
|
|
36
|
+
|
|
37
|
+
The `tuvl` package provides a unified experience through three core functional areas:
|
|
38
|
+
|
|
39
|
+
| Component | Description |
|
|
40
|
+
| :--- | :--- |
|
|
41
|
+
| **`cli`** | **Command-Line Interface** â Create, validate, and manage workflows directly from your terminal. |
|
|
42
|
+
| **`core`** | **Engine Library** â The AI-native runtime for executing YAML-defined agentic workflows. |
|
|
43
|
+
| **`ui`** | **Admin UI** â A browser-based dashboard to visualize and explore your workflow states. |
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## đ ī¸ Usage (uv-first)
|
|
48
|
+
|
|
49
|
+
`tuvl` is designed to work seamlessly with [uv](https://github.com/astral-sh/uv).
|
|
50
|
+
|
|
51
|
+
### Installation
|
|
52
|
+
|
|
53
|
+
To install the `tuvl` CLI globally:
|
|
54
|
+
```bash
|
|
55
|
+
uv tool install tuvl
|
tuvl-0.0.1/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# đĒļ tuvl
|
|
2
|
+
|
|
3
|
+
> **Coming soon** â Lightweight, AI-native orchestration for building and deploying intelligent services.
|
|
4
|
+
|
|
5
|
+
`tuvl` lets you define, run, and manage multi-step AI agent workflows using plain YAML files. No boilerplate. No complex overhead. No lock-in.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## đĻ Status
|
|
10
|
+
|
|
11
|
+
This package is currently a **name reservation**. The full AI-native engine and CLI are under active development.
|
|
12
|
+
|
|
13
|
+
* **Website:** [tuvl.io](https://tuvl.io)
|
|
14
|
+
* **GitHub:** [tuvl-io/public](https://github.com/tuvl-io/public)
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## đĻ Components
|
|
19
|
+
|
|
20
|
+
The `tuvl` package provides a unified experience through three core functional areas:
|
|
21
|
+
|
|
22
|
+
| Component | Description |
|
|
23
|
+
| :--- | :--- |
|
|
24
|
+
| **`cli`** | **Command-Line Interface** â Create, validate, and manage workflows directly from your terminal. |
|
|
25
|
+
| **`core`** | **Engine Library** â The AI-native runtime for executing YAML-defined agentic workflows. |
|
|
26
|
+
| **`ui`** | **Admin UI** â A browser-based dashboard to visualize and explore your workflow states. |
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## đ ī¸ Usage (uv-first)
|
|
31
|
+
|
|
32
|
+
`tuvl` is designed to work seamlessly with [uv](https://github.com/astral-sh/uv).
|
|
33
|
+
|
|
34
|
+
### Installation
|
|
35
|
+
|
|
36
|
+
To install the `tuvl` CLI globally:
|
|
37
|
+
```bash
|
|
38
|
+
uv tool install tuvl
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "tuvl"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Lightweight, AI-native orchestration"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.13"
|
|
7
|
+
license = { text = "MIT" }
|
|
8
|
+
authors = [{ name = "Sooraj Rajagopalan", email = "sooraj@tuvl.io" }]
|
|
9
|
+
|
|
10
|
+
dependencies = [
|
|
11
|
+
"fastapi>=0.110.0",
|
|
12
|
+
"uvicorn>=0.30.0",
|
|
13
|
+
"pydantic>=2.7.0",
|
|
14
|
+
"neomodel>=5.3.0",
|
|
15
|
+
"litellm>=1.35.0",
|
|
16
|
+
"pyyaml>=6.0.1",
|
|
17
|
+
"typer>=0.12.3",
|
|
18
|
+
"rich>=13.7.1",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.scripts]
|
|
22
|
+
tuvl = "tuvl.cli.main:main"
|
|
23
|
+
|
|
24
|
+
[build-system]
|
|
25
|
+
requires = ["hatchling"]
|
|
26
|
+
build-backend = "hatchling.build"
|
|
27
|
+
|
|
28
|
+
[tool.hatch.build.targets.wheel]
|
|
29
|
+
packages = ["src/tuvl"]
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import typer
|
|
2
|
+
from rich.console import Console, Group
|
|
3
|
+
from rich.panel import Panel
|
|
4
|
+
from rich.markdown import Markdown
|
|
5
|
+
from rich.align import Align
|
|
6
|
+
from rich.text import Text
|
|
7
|
+
|
|
8
|
+
# Initialize the Typer app and Rich console
|
|
9
|
+
app = typer.Typer(name="tuvl", help="TUVL: AI-native workflow orchestration.")
|
|
10
|
+
console = Console()
|
|
11
|
+
|
|
12
|
+
@app.callback(invoke_without_command=True)
|
|
13
|
+
def welcome(ctx: typer.Context):
|
|
14
|
+
"""
|
|
15
|
+
Entry point for the TUVL CLI, displaying stylized branding.
|
|
16
|
+
"""
|
|
17
|
+
if ctx.invoked_subcommand is None:
|
|
18
|
+
|
|
19
|
+
# --- Big Stylized Text (Slant font) ---
|
|
20
|
+
tuvl_big_text = r"""[bright_blue]
|
|
21
|
+
đĒļ __ __
|
|
22
|
+
/ /___ ___ __/ /
|
|
23
|
+
/ __/ / / / | / / /
|
|
24
|
+
/ /_/ /_/ /| |/ / /
|
|
25
|
+
\__/\__,_/ |___/_/
|
|
26
|
+
|
|
27
|
+
[/bright_blue]"""
|
|
28
|
+
|
|
29
|
+
# --- Subtitle (Modern styling) ---
|
|
30
|
+
subtitle_text = Text("\nAI-Native Workflow Orchestration\n", style="bold white")
|
|
31
|
+
|
|
32
|
+
# --- Markdown Content ---
|
|
33
|
+
description_md = """
|
|
34
|
+
Lightweight engine for building and deploying intelligent services.
|
|
35
|
+
|
|
36
|
+
* **Status:** Under Active Development (Pre-Alpha)
|
|
37
|
+
* **Version:** 0.0.1
|
|
38
|
+
* **License:** MIT
|
|
39
|
+
|
|
40
|
+
Visit [tuvl.io](https://tuvl.io) or follow our repository for updates.
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
# Centered alignment for the big text and subtitle
|
|
44
|
+
header_group = Group(
|
|
45
|
+
Align.center(tuvl_big_text),
|
|
46
|
+
Align.center(subtitle_text)
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
# Define the content of the main panel
|
|
50
|
+
main_content = Group(
|
|
51
|
+
header_group,
|
|
52
|
+
Markdown(description_md)
|
|
53
|
+
)
|
|
54
|
+
|
|
55
|
+
# Print the stylized branding panel
|
|
56
|
+
console.print(
|
|
57
|
+
Panel(
|
|
58
|
+
main_content,
|
|
59
|
+
border_style="bright_blue",
|
|
60
|
+
padding=(1, 3),
|
|
61
|
+
expand=False
|
|
62
|
+
)
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
@app.command()
|
|
66
|
+
def version():
|
|
67
|
+
"""Check the current version of TUVL."""
|
|
68
|
+
console.print("[bold cyan]tuvl[/bold cyan] version [green]0.0.1[/green]")
|
|
69
|
+
|
|
70
|
+
def main():
|
|
71
|
+
"""
|
|
72
|
+
Entry point defined in pyproject.toml [project.scripts].
|
|
73
|
+
"""
|
|
74
|
+
app()
|
|
75
|
+
|
|
76
|
+
if __name__ == "__main__":
|
|
77
|
+
main()
|
|
File without changes
|
|
File without changes
|