zrb 1.4.0__py3-none-any.whl → 1.4.1__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.
- zrb/__main__.py +25 -1
- zrb/builtin/llm/tool/file.py +107 -31
- zrb/runner/cli.py +0 -2
- zrb/util/load.py +0 -16
- {zrb-1.4.0.dist-info → zrb-1.4.1.dist-info}/METADATA +82 -47
- {zrb-1.4.0.dist-info → zrb-1.4.1.dist-info}/RECORD +8 -8
- {zrb-1.4.0.dist-info → zrb-1.4.1.dist-info}/WHEEL +0 -0
- {zrb-1.4.0.dist-info → zrb-1.4.1.dist-info}/entry_points.txt +0 -0
zrb/__main__.py
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import os
|
1
2
|
import sys
|
2
3
|
|
3
4
|
from zrb.config import INIT_MODULES, INIT_SCRIPTS
|
@@ -9,10 +10,19 @@ from zrb.util.load import load_file, load_module
|
|
9
10
|
|
10
11
|
def serve_cli():
|
11
12
|
try:
|
13
|
+
# load init modules
|
12
14
|
for init_module in INIT_MODULES:
|
13
15
|
load_module(init_module)
|
16
|
+
zrb_init_path_list = _get_zrb_init_path_list()
|
17
|
+
# load init scripts
|
14
18
|
for init_script in INIT_SCRIPTS:
|
15
|
-
|
19
|
+
abs_init_script = os.path.abspath(init_script)
|
20
|
+
if abs_init_script not in zrb_init_path_list:
|
21
|
+
load_file(abs_init_script, -1)
|
22
|
+
# load zrb init
|
23
|
+
for zrb_init_path in zrb_init_path_list:
|
24
|
+
load_file(zrb_init_path)
|
25
|
+
# run the CLI
|
16
26
|
cli.run(sys.argv[1:])
|
17
27
|
except KeyboardInterrupt:
|
18
28
|
print(stylize_warning("\nStopped"), file=sys.stderr)
|
@@ -24,3 +34,17 @@ def serve_cli():
|
|
24
34
|
except NodeNotFoundError as e:
|
25
35
|
print(stylize_error(f"{e}"), file=sys.stderr)
|
26
36
|
sys.exit(1)
|
37
|
+
|
38
|
+
|
39
|
+
def _get_zrb_init_path_list() -> list[str]:
|
40
|
+
current_path = os.path.abspath(os.getcwd())
|
41
|
+
dir_path_list = [current_path]
|
42
|
+
while current_path != os.path.dirname(current_path): # Stop at root
|
43
|
+
current_path = os.path.dirname(current_path)
|
44
|
+
dir_path_list.append(current_path)
|
45
|
+
zrb_init_path_list = []
|
46
|
+
for current_path in dir_path_list[::-1]:
|
47
|
+
zrb_init_path = os.path.join(current_path, "zrb_init.py")
|
48
|
+
if os.path.isfile(zrb_init_path):
|
49
|
+
zrb_init_path_list.append(zrb_init_path)
|
50
|
+
return zrb_init_path_list
|
zrb/builtin/llm/tool/file.py
CHANGED
@@ -3,25 +3,92 @@ import os
|
|
3
3
|
|
4
4
|
from zrb.util.file import read_file, write_file
|
5
5
|
|
6
|
+
_INCLUDED_PATTERNS: list[str] = [
|
7
|
+
"*.py", # Python
|
8
|
+
"*.go", # Go
|
9
|
+
"*.rs", # Rust
|
10
|
+
"*.js", # JavaScript
|
11
|
+
"*.ts", # TypeScript
|
12
|
+
"*.java", # Java
|
13
|
+
"*.c", # C
|
14
|
+
"*.cpp", # C++
|
15
|
+
"*.cc", # Alternative C++ extension
|
16
|
+
"*.cxx", # Alternative C++ extension
|
17
|
+
"*.rb", # Ruby
|
18
|
+
"*.swift", # Swift
|
19
|
+
"*.kt", # Kotlin
|
20
|
+
"*.php", # PHP
|
21
|
+
"*.pl", # Perl / Prolog
|
22
|
+
"*.pm", # Perl module
|
23
|
+
"*.sh", # Shell
|
24
|
+
"*.bat", # Batch
|
25
|
+
"*.ps1", # PowerShell
|
26
|
+
"*.R", # R (capital)
|
27
|
+
"*.r", # R (lowercase)
|
28
|
+
"*.scala", # Scala
|
29
|
+
"*.hs", # Haskell
|
30
|
+
"*.cs", # C#
|
31
|
+
"*.fs", # F#
|
32
|
+
"*.ex", # Elixir
|
33
|
+
"*.exs", # Elixir script
|
34
|
+
"*.erl", # Erlang
|
35
|
+
"*.hrl", # Erlang header
|
36
|
+
"*.dart", # Dart
|
37
|
+
"*.m", # Objective-C / Matlab (note: conflicts may arise)
|
38
|
+
"*.mm", # Objective-C++
|
39
|
+
"*.lua", # Lua
|
40
|
+
"*.jl", # Julia
|
41
|
+
"*.groovy", # Groovy
|
42
|
+
"*.clj", # Clojure
|
43
|
+
"*.cljs", # ClojureScript
|
44
|
+
"*.cljc", # Clojure common
|
45
|
+
"*.vb", # Visual Basic
|
46
|
+
"*.f90", # Fortran
|
47
|
+
"*.f95", # Fortran
|
48
|
+
"*.adb", # Ada
|
49
|
+
"*.ads", # Ada specification
|
50
|
+
"*.pas", # Pascal
|
51
|
+
"*.pp", # Pascal
|
52
|
+
"*.ml", # OCaml
|
53
|
+
"*.mli", # OCaml interface
|
54
|
+
"*.nim", # Nim
|
55
|
+
"*.rkt", # Racket
|
56
|
+
"*.d", # D
|
57
|
+
"*.lisp", # Common Lisp
|
58
|
+
"*.lsp", # Lisp variant
|
59
|
+
"*.cl", # Common Lisp
|
60
|
+
"*.scm", # Scheme
|
61
|
+
"*.st", # Smalltalk
|
62
|
+
"*.vhd", # VHDL
|
63
|
+
"*.vhdl", # VHDL
|
64
|
+
"*.v", # Verilog
|
65
|
+
"*.asm", # Assembly
|
66
|
+
"*.s", # Assembly (alternative)
|
67
|
+
"*.sql", # SQL (if desired)
|
68
|
+
]
|
69
|
+
|
70
|
+
# Extended list of directories and patterns to exclude.
|
71
|
+
_EXCLUDED_PATTERNS: list[str] = [
|
72
|
+
"venv", # Python virtual environments
|
73
|
+
".venv",
|
74
|
+
"node_modules", # Node.js dependencies
|
75
|
+
".git", # Git repositories
|
76
|
+
"__pycache__", # Python cache directories
|
77
|
+
"build", # Build directories
|
78
|
+
"dist", # Distribution directories
|
79
|
+
"target", # Build output directories (Java, Rust, etc.)
|
80
|
+
"bin", # Binary directories
|
81
|
+
"obj", # Object files directories
|
82
|
+
".idea", # JetBrains IDEs
|
83
|
+
".vscode", # VS Code settings
|
84
|
+
".eggs", # Python eggs
|
85
|
+
]
|
86
|
+
|
6
87
|
|
7
88
|
def list_files(
|
8
89
|
directory: str = ".",
|
9
|
-
included_patterns: list[str] =
|
10
|
-
|
11
|
-
"*.go",
|
12
|
-
"*.js",
|
13
|
-
"*.ts",
|
14
|
-
"*.java",
|
15
|
-
"*.c",
|
16
|
-
"*.cpp",
|
17
|
-
],
|
18
|
-
excluded_patterns: list[str] = [
|
19
|
-
"venv",
|
20
|
-
".venv",
|
21
|
-
"node_modules",
|
22
|
-
".git",
|
23
|
-
"__pycache__",
|
24
|
-
],
|
90
|
+
included_patterns: list[str] = _INCLUDED_PATTERNS,
|
91
|
+
excluded_patterns: list[str] = _EXCLUDED_PATTERNS,
|
25
92
|
) -> list[str]:
|
26
93
|
"""List all files in a directory that match any of the included glob patterns
|
27
94
|
and do not reside in any directory matching an excluded pattern.
|
@@ -32,16 +99,33 @@ def list_files(
|
|
32
99
|
for filename in files:
|
33
100
|
if any(fnmatch.fnmatch(filename, pat) for pat in included_patterns):
|
34
101
|
full_path = os.path.join(root, filename)
|
35
|
-
|
36
|
-
if any(
|
37
|
-
any(fnmatch.fnmatch(part, pat) for pat in excluded_patterns)
|
38
|
-
for part in os.path.normpath(full_path).split(os.sep)
|
39
|
-
):
|
102
|
+
if _should_exclude(full_path, excluded_patterns):
|
40
103
|
continue
|
41
104
|
all_files.append(full_path)
|
42
105
|
return all_files
|
43
106
|
|
44
107
|
|
108
|
+
def _should_exclude(full_path: str, excluded_patterns: list[str]) -> bool:
|
109
|
+
"""
|
110
|
+
Return True if the file at full_path should be excluded based on
|
111
|
+
the list of excluded_patterns. Patterns that include a path separator
|
112
|
+
are applied to the full normalized path; otherwise they are matched
|
113
|
+
against each individual component of the path.
|
114
|
+
"""
|
115
|
+
norm_path = os.path.normpath(full_path)
|
116
|
+
path_parts = norm_path.split(os.sep)
|
117
|
+
for pat in excluded_patterns:
|
118
|
+
# If the pattern seems intended for full path matching (contains a separator)
|
119
|
+
if os.sep in pat or "/" in pat:
|
120
|
+
if fnmatch.fnmatch(norm_path, pat):
|
121
|
+
return True
|
122
|
+
else:
|
123
|
+
# Otherwise check each part of the path
|
124
|
+
if any(fnmatch.fnmatch(part, pat) for part in path_parts):
|
125
|
+
return True
|
126
|
+
return False
|
127
|
+
|
128
|
+
|
45
129
|
def read_text_file(file: str) -> str:
|
46
130
|
"""Read a text file"""
|
47
131
|
return read_file(os.path.abspath(file))
|
@@ -54,16 +138,8 @@ def write_text_file(file: str, content: str):
|
|
54
138
|
|
55
139
|
def read_all_files(
|
56
140
|
directory: str = ".",
|
57
|
-
included_patterns: list[str] =
|
58
|
-
|
59
|
-
"*.go",
|
60
|
-
"*.js",
|
61
|
-
"*.ts",
|
62
|
-
"*.java",
|
63
|
-
"*.c",
|
64
|
-
"*.cpp",
|
65
|
-
],
|
66
|
-
excluded_patterns: list[str] = [],
|
141
|
+
included_patterns: list[str] = _INCLUDED_PATTERNS,
|
142
|
+
excluded_patterns: list[str] = _EXCLUDED_PATTERNS,
|
67
143
|
) -> list[str]:
|
68
144
|
"""Read all files in a directory that match any of the included glob patterns
|
69
145
|
and do not match any of the excluded glob patterns.
|
zrb/runner/cli.py
CHANGED
@@ -18,13 +18,11 @@ from zrb.util.cli.style import (
|
|
18
18
|
stylize_section_header,
|
19
19
|
)
|
20
20
|
from zrb.util.group import extract_node_from_args, get_non_empty_subgroups, get_subtasks
|
21
|
-
from zrb.util.load import load_zrb_init
|
22
21
|
from zrb.util.string.conversion import double_quote
|
23
22
|
|
24
23
|
|
25
24
|
class Cli(Group):
|
26
25
|
def run(self, args: list[str] = []):
|
27
|
-
load_zrb_init()
|
28
26
|
kwargs, args = self._extract_kwargs_from_args(args)
|
29
27
|
node, node_path, args = extract_node_from_args(self, args)
|
30
28
|
if isinstance(node, Group):
|
zrb/util/load.py
CHANGED
@@ -9,22 +9,6 @@ from typing import Any
|
|
9
9
|
pattern = re.compile("[^a-zA-Z0-9]")
|
10
10
|
|
11
11
|
|
12
|
-
def load_zrb_init(dir_path: str | None = None) -> Any | None:
|
13
|
-
if dir_path is None:
|
14
|
-
dir_path = os.getcwd()
|
15
|
-
# get path list from current path to the absolute root
|
16
|
-
current_path = os.path.abspath(dir_path)
|
17
|
-
path_list = [current_path]
|
18
|
-
while current_path != os.path.dirname(current_path): # Stop at root
|
19
|
-
current_path = os.path.dirname(current_path)
|
20
|
-
path_list.append(current_path)
|
21
|
-
# loop from root to current path to load zrb_init
|
22
|
-
for current_path in path_list[::-1]:
|
23
|
-
script_path = os.path.join(current_path, "zrb_init.py")
|
24
|
-
if os.path.isfile(script_path):
|
25
|
-
load_file(script_path)
|
26
|
-
|
27
|
-
|
28
12
|
@lru_cache
|
29
13
|
def load_file(script_path: str, sys_path_index: int = 0) -> Any | None:
|
30
14
|
if not os.path.isfile(script_path):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: zrb
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.1
|
4
4
|
Summary: Your Automation Powerhouse
|
5
5
|
Home-page: https://github.com/state-alchemists/zrb
|
6
6
|
License: AGPL-3.0-or-later
|
@@ -39,29 +39,63 @@ Description-Content-Type: text/markdown
|
|
39
39
|
|
40
40
|
# 🤖 Zrb: Your Automation Powerhouse
|
41
41
|
|
42
|
-
|
42
|
+
|
43
|
+
**Unlock the full potential of automation in your projects!**
|
44
|
+
|
45
|
+
Zrb streamlines repetitive tasks, integrates with powerful LLMs, and lets you create custom automation workflows effortlessly. Whether you’re building CI/CD pipelines, code generators, or unique automation scripts, Zrb is designed to simplify and supercharge your workflow.
|
46
|
+
|
47
|
+
---
|
48
|
+
|
49
|
+
## 🚀 Why Zrb?
|
50
|
+
|
51
|
+
- **Easy Automation with Python:** Write your tasks in Python and let Zrb handle the rest.
|
52
|
+
- **Seamless Integration:** Utilize built-in support for LLM tasks, command execution, and more.
|
53
|
+
- **Custom Workflows:** Chain tasks, set dependencies, and build robust automation pipelines.
|
54
|
+
- **Developer-Friendly:** Quick to install and get started, with clear documentation and examples.
|
55
|
+
- **Web Interface:** Run Zrb as a server to make tasks accessible even to non-technical team members.
|
56
|
+
|
57
|
+
---
|
58
|
+
|
59
|
+
## 🔥 Key Features
|
60
|
+
|
61
|
+
- **LLM Integration:** Leverage state-of-the-art language models to generate code, diagrams, and documentation.
|
62
|
+
- **Task Chaining:** Easily define dependencies between tasks to create complex workflows.
|
63
|
+
- **CLI & Server Mode:** Run tasks directly from the command line or through a user-friendly web UI.
|
64
|
+
- **Flexible Input Handling:** Defaults, prompts, and command-line parameters to suit any workflow.
|
65
|
+
- **Extensible & Open Source:** Contribute, customize, or extend Zrb to fit your unique needs.
|
66
|
+
|
67
|
+
---
|
68
|
+
|
69
|
+
## 🛠️ Getting Started
|
70
|
+
|
71
|
+
### Quick Installation
|
72
|
+
|
73
|
+
Install Zrb via pip:
|
74
|
+
|
75
|
+
```bash
|
76
|
+
pip install zrb
|
77
|
+
|
78
|
+
```
|
79
|
+
|
80
|
+
Or run our installation script to set up Zrb along with all prerequisites:
|
81
|
+
|
82
|
+
```bash
|
83
|
+
bash -c "$(curl -fsSL https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh)"
|
84
|
+
|
85
|
+
```
|
86
|
+
|
87
|
+
### Your First Task
|
88
|
+
|
89
|
+
Create a file at `/home/<your-user-name>/zrb_init.py` with the following content:
|
43
90
|
|
44
91
|
|
45
92
|
```python
|
46
93
|
import os
|
47
94
|
from zrb import cli, llm_config, LLMTask, CmdTask, StrInput, Group
|
48
95
|
from zrb.builtin.llm.tool.file import read_all_files, write_text_file
|
49
|
-
from pydantic_ai.models.openai import OpenAIModel
|
50
|
-
from pydantic_ai.providers.openai import OpenAIProvider
|
51
96
|
|
52
97
|
CURRENT_DIR = os.getcwd()
|
53
98
|
|
54
|
-
# Setup default LLM Config
|
55
|
-
llm_config.set_default_model(
|
56
|
-
OpenAIModel(
|
57
|
-
model_name="gpt-4o",
|
58
|
-
provider=OpenAIProvider(
|
59
|
-
base_url="https://openrouter.ai/api/v1",
|
60
|
-
api_key=os.getenv("OPENROUTER_API_KEY", "")
|
61
|
-
)
|
62
|
-
)
|
63
|
-
)
|
64
|
-
|
65
99
|
# Make UML group
|
66
100
|
uml_group = cli.add_group(Group(name="uml", description="UML related tasks"))
|
67
101
|
|
@@ -98,27 +132,39 @@ make_uml_image = uml_group.add_task(
|
|
98
132
|
make_uml_script >> make_uml_image
|
99
133
|
```
|
100
134
|
|
101
|
-
|
135
|
+
You have just define two automation tasks.
|
136
|
+
|
137
|
+
The first one use LLM to read files in your current directory and create a `PlantUML script` on that directory.
|
138
|
+
|
139
|
+
The second task turn the PlantUML script into a `*.png` file. The second task depends on the first task and both of them are located under the same group.
|
140
|
+
|
141
|
+
You can run the tasks by invoking `zrb uml make-script` or `zrb uml make-image` respectively.
|
142
|
+
|
143
|
+
When you run zrb, it automatically searches for a file named `zrb_init.py` starting from your current directory and moving upward through its parent directories. This design lets you set up common automation tasks in a central location—like placing a `zrb_init.py` in your home directory (`/home/<your-user>/zrb_init.py`)—so that your tasks are available across all your projects.
|
144
|
+
|
145
|
+
Now, go to your project and create a state diagram:
|
102
146
|
|
103
147
|
```bash
|
148
|
+
git clone git@github.com:jjinux/gotetris.git
|
149
|
+
cd gotetris
|
104
150
|
zrb uml make-image --diagram "state diagram"
|
105
151
|
```
|
106
152
|
|
107
|
-
|
153
|
+
You can also invoke the task without specifying parameter.
|
108
154
|
|
109
155
|
```bash
|
110
156
|
zrb uml make-image
|
111
157
|
```
|
112
158
|
|
113
|
-
|
159
|
+
Once you do so, Zrb will ask you to provide the diagram type.
|
114
160
|
|
115
161
|
```
|
116
162
|
diagram [state diagram]:
|
117
163
|
```
|
118
164
|
|
119
|
-
You can just press enter if you want to use the default value.
|
165
|
+
You can just press enter if you want to use the default value (i.e., in this case `state diagram`).
|
120
166
|
|
121
|
-
Finally, you can
|
167
|
+
Finally, you can also serve the tasks via a Web UI interface by invoking the following command:
|
122
168
|
|
123
169
|
```bash
|
124
170
|
zrb server start
|
@@ -128,49 +174,38 @@ You will have a nice web interface running on `http://localhost:12123`
|
|
128
174
|
|
129
175
|

|
130
176
|
|
131
|
-
Now, let's see how
|
177
|
+
Now, let's see how things work in detail. First, Zrb generates a `state diagram.uml` in your current directory, it then transform the UML script into a PNG image `state diagram.png`.
|
132
178
|
|
133
179
|

|
134
180
|
|
135
|
-
See the [getting started guide](https://github.com/state-alchemists/zrb/blob/main/docs/recipes/getting-started/README.md) for more information. Or just watch the demo:
|
136
|
-
|
137
|
-
[](https://www.youtube.com/watch?v=W7dgk96l__o)
|
138
|
-
|
139
181
|
|
140
|
-
#
|
182
|
+
# 🎥 Demo & Documentation
|
141
183
|
|
142
|
-
|
184
|
+
- **Step by step guide:** [Getting started with Zrb](https://github.com/state-alchemists/zrb/blob/main/docs/recipes/getting-started/README.md).
|
185
|
+
- **Full documentation:** [Zrb Documentation](https://github.com/state-alchemists/zrb/blob/main/docs/README.md)
|
186
|
+
- **Video demo:** [](https://www.youtube.com/watch?v=W7dgk96l__o)
|
143
187
|
|
144
|
-
```bash
|
145
|
-
pip install --pre zrb
|
146
|
-
```
|
147
|
-
|
148
|
-
Alternatively, you can also use our installation script to install Zrb along with some prerequisites:
|
149
188
|
|
150
|
-
|
151
|
-
bash -c "$(curl -fsSL https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh)"
|
152
|
-
```
|
189
|
+
# 🤝 Join the Community
|
153
190
|
|
154
|
-
|
191
|
+
- **Bug Reports & Feature Requests:** Create an [issue](https://github.com/state-alchemists/zrb/issues) on Zrb's GitHub Repositories and include:
|
192
|
+
- Your Zrb version (i.e., `zrb version`).
|
193
|
+
- Steps you’ve taken and what you expected versus what happened
|
194
|
+
- **Contributions:** We welcome pull requests! Check out our [contribution guidelines](https://github.com/state-alchemists/zrb/pulls).
|
155
195
|
|
156
|
-
You can submit bug reports and feature requests by creating a new [issue](https://github.com/state-alchemists/zrb/issues) on Zrb's GitHub Repositories. When reporting a bug or requesting a feature, please be sure to:
|
157
196
|
|
158
|
-
|
159
|
-
- Tell us what you have tried
|
160
|
-
- Tell us what you expect
|
161
|
-
- Tell us what you get
|
197
|
+
# ☕ Support The Project
|
162
198
|
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
# ☕ Donation
|
167
|
-
|
168
|
-
Help Red Skull to click the donation button:
|
199
|
+
If you find Zrb valuable, please consider donating:
|
169
200
|
|
170
201
|
[](https://stalchmst.com/donation)
|
171
202
|
|
172
203
|
# 🎉 Fun Fact
|
173
204
|
|
205
|
+
Did you know?
|
206
|
+
|
207
|
+
Zrb is named after `Zaruba`, a powerful support tool from the Garo universe!
|
208
|
+
|
174
209
|
> Madou Ring Zaruba (魔導輪ザルバ, Madōrin Zaruba) is a Madougu which supports bearers of the Garo Armor. [(Garo Wiki | Fandom)](https://garo.fandom.com/wiki/Zaruba)
|
175
210
|
|
176
211
|

|
@@ -1,5 +1,5 @@
|
|
1
1
|
zrb/__init__.py,sha256=1waPjZcA3IHUEvIuVQso0YfNfW9i7SCJgEfzhiNTaCk,3020
|
2
|
-
zrb/__main__.py,sha256=
|
2
|
+
zrb/__main__.py,sha256=MvAGzoM3ElJZOPMKNqaTdnrT9PXi9Saq8CPa11RiLQk,1748
|
3
3
|
zrb/attr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
zrb/attr/type.py,sha256=4TV5gPYMMrKh5V-yB6iRYKCbsXAH_AvGXMsjxKLHcUs,568
|
5
5
|
zrb/builtin/__init__.py,sha256=oXG4Zm_rIp3G81Y7hiSe38jeS2sGZAnADoP_yxxhYEc,1926
|
@@ -11,7 +11,7 @@ zrb/builtin/llm/llm_chat.py,sha256=QCfxocM7UQPtpIWLMzr9wKbl9DCPcDZszAnPxszaww0,6
|
|
11
11
|
zrb/builtin/llm/previous-session.js,sha256=xMKZvJoAbrwiyHS0OoPrWuaKxWYLoyR5sguePIoCjTY,816
|
12
12
|
zrb/builtin/llm/tool/api.py,sha256=bXFE7jihdhUscxJH8lu5imwlYH735AalbCyUTl28BaQ,826
|
13
13
|
zrb/builtin/llm/tool/cli.py,sha256=to_IjkfrMGs6eLfG0cpVN9oyADWYsJQCtyluUhUdBww,253
|
14
|
-
zrb/builtin/llm/tool/file.py,sha256=
|
14
|
+
zrb/builtin/llm/tool/file.py,sha256=8H_qXt4imsy28DD21wBIo4ud5zfnkFjLLm8Simo84Q8,4732
|
15
15
|
zrb/builtin/llm/tool/rag.py,sha256=vEIThEy0JGwXEiNRLOEJAHAE0l1Qie2qvU3ryioeYMk,6066
|
16
16
|
zrb/builtin/llm/tool/web.py,sha256=SDnCtYHZ0Q4DtLbIhc11a0UyyKbTTeW60UfeIKzK35k,3204
|
17
17
|
zrb/builtin/md5.py,sha256=0pNlrfZA0wlZlHvFHLgyqN0JZJWGKQIF5oXxO44_OJk,949
|
@@ -239,7 +239,7 @@ zrb/input/str_input.py,sha256=NevZHX9rf1g8eMatPyy-kUX3DglrVAQpzvVpKAzf7bA,81
|
|
239
239
|
zrb/input/text_input.py,sha256=shvVbc2U8Is36h23M5lcW8IEwKc9FR-4uEPZZroj3rU,3377
|
240
240
|
zrb/llm_config.py,sha256=SXSkDpmXxGLJaoUrT09oNdOGwHXc82TwIGssVeo6S7U,1553
|
241
241
|
zrb/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
242
|
-
zrb/runner/cli.py,sha256=
|
242
|
+
zrb/runner/cli.py,sha256=0mT0oO_yEhc8N4nYCJNujhgLjVykZ0B-kAOFXyAvAqM,6672
|
243
243
|
zrb/runner/common_util.py,sha256=0zhZn1Jdmr194_nsL5_L-Kn9-_NDpMTI2z6_LXUQJ-U,1369
|
244
244
|
zrb/runner/web_app.py,sha256=Ji2AWeFpJu5guXmur7mAAbjMToyjgmPDdfYu8047FFI,2616
|
245
245
|
zrb/runner/web_config/config.py,sha256=0wR58KreAmawGGfamm0GLZY344HaXs7qfDgHLavBDwo,3125
|
@@ -332,7 +332,7 @@ zrb/util/file.py,sha256=mgNobIKCr0eIQUlg6W2Yg1fvg943VyuOUF8WMFpJA5A,859
|
|
332
332
|
zrb/util/git.py,sha256=TShnMxPAk20Tglp25d_XPVZX-q0mvKeqdprVMeXQ5f0,4787
|
333
333
|
zrb/util/git_subtree.py,sha256=zyWl0aUEZJyUJKjfw1uglozB4R1kF9pWtfKjhu8DN44,2658
|
334
334
|
zrb/util/group.py,sha256=Bg7HrSycoK110U5s_Tca6-uUQuZ5CMgb8wxZSrvDQ98,2790
|
335
|
-
zrb/util/load.py,sha256=
|
335
|
+
zrb/util/load.py,sha256=Aeyh1EWtp-oJGVAhcjZn-VSB9innoOe8ZkUawha_ddk,1339
|
336
336
|
zrb/util/run.py,sha256=DGHUP9x1Q8V8UF3FbpmjLGuhVVCCLfjTH2teT8qXlNI,207
|
337
337
|
zrb/util/string/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
338
338
|
zrb/util/string/conversion.py,sha256=636sfF1a3_bpzXNw5bdSzbJzwakyAoo70KT3_ItgZEo,4333
|
@@ -341,7 +341,7 @@ zrb/util/string/name.py,sha256=8picJfUBXNpdh64GNaHv3om23QHhUZux7DguFLrXHp8,1163
|
|
341
341
|
zrb/util/todo.py,sha256=1nDdwPc22oFoK_1ZTXyf3638Bg6sqE2yp_U4_-frHoc,16015
|
342
342
|
zrb/xcom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
343
343
|
zrb/xcom/xcom.py,sha256=o79rxR9wphnShrcIushA0Qt71d_p3ZTxjNf7x9hJB78,1571
|
344
|
-
zrb-1.4.
|
345
|
-
zrb-1.4.
|
346
|
-
zrb-1.4.
|
347
|
-
zrb-1.4.
|
344
|
+
zrb-1.4.1.dist-info/METADATA,sha256=qKftyv7rxRUk1eiIo5hUOZJY80melIT4RpgAPXVa1Ew,8135
|
345
|
+
zrb-1.4.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
346
|
+
zrb-1.4.1.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
|
347
|
+
zrb-1.4.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|