zrb 1.9.4__py3-none-any.whl → 1.9.6__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.
Files changed (54) hide show
  1. zrb/__init__.py +8 -8
  2. zrb/__main__.py +1 -1
  3. zrb/builtin/__init__.py +0 -50
  4. zrb/builtin/llm/chat_session.py +1 -1
  5. zrb/builtin/llm/history.py +1 -1
  6. zrb/builtin/llm/llm_ask.py +3 -3
  7. zrb/builtin/llm/tool/api.py +19 -9
  8. zrb/builtin/llm/tool/cli.py +11 -5
  9. zrb/builtin/llm/tool/code.py +20 -20
  10. zrb/builtin/llm/tool/file.py +107 -155
  11. zrb/builtin/llm/tool/rag.py +28 -5
  12. zrb/builtin/llm/tool/sub_agent.py +12 -14
  13. zrb/builtin/llm/tool/web.py +46 -14
  14. zrb/builtin/todo.py +1 -1
  15. zrb/{llm_config.py → config/llm_config.py} +143 -158
  16. zrb/{llm_rate_limitter.py → config/llm_rate_limitter.py} +1 -1
  17. zrb/{runner → config}/web_auth_config.py +1 -1
  18. zrb/context/shared_context.py +1 -1
  19. zrb/input/text_input.py +1 -1
  20. zrb/runner/cli.py +2 -2
  21. zrb/runner/web_app.py +2 -2
  22. zrb/runner/web_route/docs_route.py +1 -1
  23. zrb/runner/web_route/error_page/serve_default_404.py +1 -1
  24. zrb/runner/web_route/error_page/show_error_page.py +1 -1
  25. zrb/runner/web_route/home_page/home_page_route.py +2 -2
  26. zrb/runner/web_route/login_api_route.py +1 -1
  27. zrb/runner/web_route/login_page/login_page_route.py +2 -2
  28. zrb/runner/web_route/logout_api_route.py +1 -1
  29. zrb/runner/web_route/logout_page/logout_page_route.py +2 -2
  30. zrb/runner/web_route/node_page/group/show_group_page.py +1 -1
  31. zrb/runner/web_route/node_page/node_page_route.py +1 -1
  32. zrb/runner/web_route/node_page/task/show_task_page.py +1 -1
  33. zrb/runner/web_route/refresh_token_api_route.py +1 -1
  34. zrb/runner/web_route/static/static_route.py +1 -1
  35. zrb/runner/web_route/task_input_api_route.py +1 -1
  36. zrb/runner/web_route/task_session_api_route.py +1 -1
  37. zrb/runner/web_util/cookie.py +1 -1
  38. zrb/runner/web_util/token.py +1 -1
  39. zrb/runner/web_util/user.py +1 -1
  40. zrb/session_state_logger/session_state_logger_factory.py +1 -1
  41. zrb/task/cmd_task.py +1 -1
  42. zrb/task/llm/agent.py +1 -1
  43. zrb/task/llm/config.py +1 -1
  44. zrb/task/llm/context_enrichment.py +2 -2
  45. zrb/task/llm/history_summarization.py +2 -2
  46. zrb/task/llm/prompt.py +1 -1
  47. zrb/task/llm_task.py +1 -1
  48. zrb/util/init_path.py +1 -1
  49. zrb-1.9.6.dist-info/METADATA +250 -0
  50. {zrb-1.9.4.dist-info → zrb-1.9.6.dist-info}/RECORD +53 -53
  51. zrb-1.9.4.dist-info/METADATA +0 -245
  52. /zrb/{config.py → config/config.py} +0 -0
  53. {zrb-1.9.4.dist-info → zrb-1.9.6.dist-info}/WHEEL +0 -0
  54. {zrb-1.9.4.dist-info → zrb-1.9.6.dist-info}/entry_points.txt +0 -0
zrb/task/cmd_task.py CHANGED
@@ -4,7 +4,7 @@ from functools import partial
4
4
  from zrb.attr.type import BoolAttr, IntAttr, StrAttr
5
5
  from zrb.cmd.cmd_result import CmdResult
6
6
  from zrb.cmd.cmd_val import AnyCmdVal, CmdVal, SingleCmdVal
7
- from zrb.config import CFG
7
+ from zrb.config.config import CFG
8
8
  from zrb.context.any_context import AnyContext
9
9
  from zrb.env.any_env import AnyEnv
10
10
  from zrb.input.any_input import AnyInput
zrb/task/llm/agent.py CHANGED
@@ -2,9 +2,9 @@ import json
2
2
  from collections.abc import Callable
3
3
  from typing import TYPE_CHECKING, Any
4
4
 
5
+ from zrb.config.llm_rate_limitter import LLMRateLimiter, llm_rate_limitter
5
6
  from zrb.context.any_context import AnyContext
6
7
  from zrb.context.any_shared_context import AnySharedContext
7
- from zrb.llm_rate_limitter import LLMRateLimiter, llm_rate_limitter
8
8
  from zrb.task.llm.error import extract_api_error_details
9
9
  from zrb.task.llm.print_node import print_node
10
10
  from zrb.task.llm.tool_wrapper import wrap_tool
zrb/task/llm/config.py CHANGED
@@ -5,9 +5,9 @@ if TYPE_CHECKING:
5
5
  from pydantic_ai.settings import ModelSettings
6
6
 
7
7
  from zrb.attr.type import StrAttr, fstring
8
+ from zrb.config.llm_config import LLMConfig, llm_config
8
9
  from zrb.context.any_context import AnyContext
9
10
  from zrb.context.any_shared_context import AnySharedContext
10
- from zrb.llm_config import LLMConfig, llm_config
11
11
  from zrb.util.attr import get_attr
12
12
 
13
13
 
@@ -3,9 +3,9 @@ import traceback
3
3
  from typing import TYPE_CHECKING
4
4
 
5
5
  from zrb.attr.type import BoolAttr, IntAttr
6
+ from zrb.config.llm_config import llm_config
7
+ from zrb.config.llm_rate_limitter import LLMRateLimiter, llm_rate_limitter
6
8
  from zrb.context.any_context import AnyContext
7
- from zrb.llm_config import llm_config
8
- from zrb.llm_rate_limitter import LLMRateLimiter, llm_rate_limitter
9
9
  from zrb.task.llm.agent import run_agent_iteration
10
10
  from zrb.task.llm.history import (
11
11
  count_part_in_history_list,
@@ -3,9 +3,9 @@ import traceback
3
3
  from typing import TYPE_CHECKING
4
4
 
5
5
  from zrb.attr.type import BoolAttr, IntAttr
6
+ from zrb.config.llm_config import llm_config
7
+ from zrb.config.llm_rate_limitter import LLMRateLimiter, llm_rate_limitter
6
8
  from zrb.context.any_context import AnyContext
7
- from zrb.llm_config import llm_config
8
- from zrb.llm_rate_limitter import LLMRateLimiter, llm_rate_limitter
9
9
  from zrb.task.llm.agent import run_agent_iteration
10
10
  from zrb.task.llm.history import (
11
11
  count_part_in_history_list,
zrb/task/llm/prompt.py CHANGED
@@ -1,6 +1,6 @@
1
1
  from zrb.attr.type import StrAttr
2
+ from zrb.config.llm_config import llm_config as llm_config
2
3
  from zrb.context.any_context import AnyContext
3
- from zrb.llm_config import llm_config as llm_config
4
4
  from zrb.util.attr import get_attr, get_str_attr
5
5
 
6
6
 
zrb/task/llm_task.py CHANGED
@@ -3,11 +3,11 @@ from collections.abc import Callable
3
3
  from typing import TYPE_CHECKING, Any
4
4
 
5
5
  from zrb.attr.type import BoolAttr, IntAttr, StrAttr, fstring
6
+ from zrb.config.llm_rate_limitter import LLMRateLimiter
6
7
  from zrb.context.any_context import AnyContext
7
8
  from zrb.context.any_shared_context import AnySharedContext
8
9
  from zrb.env.any_env import AnyEnv
9
10
  from zrb.input.any_input import AnyInput
10
- from zrb.llm_rate_limitter import LLMRateLimiter
11
11
  from zrb.task.any_task import AnyTask
12
12
  from zrb.task.base_task import BaseTask
13
13
  from zrb.task.llm.agent import get_agent, run_agent_iteration
zrb/util/init_path.py CHANGED
@@ -1,6 +1,6 @@
1
1
  import os
2
2
 
3
- from zrb.config import CFG
3
+ from zrb.config.config import CFG
4
4
 
5
5
 
6
6
  def get_init_path_list() -> list[str]:
@@ -0,0 +1,250 @@
1
+ Metadata-Version: 2.1
2
+ Name: zrb
3
+ Version: 1.9.6
4
+ Summary: Your Automation Powerhouse
5
+ Home-page: https://github.com/state-alchemists/zrb
6
+ License: AGPL-3.0-or-later
7
+ Keywords: Automation,Task Runner,Code Generator,Monorepo,Low Code
8
+ Author: Go Frendi Gunawan
9
+ Author-email: gofrendiasgard@gmail.com
10
+ Requires-Python: >=3.10.0,<4.0.0
11
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Provides-Extra: all
17
+ Provides-Extra: playwright
18
+ Provides-Extra: rag
19
+ Requires-Dist: beautifulsoup4 (>=4.13.3,<5.0.0)
20
+ Requires-Dist: black (>=25.1.0,<25.2.0)
21
+ Requires-Dist: chromadb (>=0.6.3,<0.7.0) ; extra == "rag" or extra == "all"
22
+ Requires-Dist: fastapi[standard] (>=0.115.14,<0.116.0)
23
+ Requires-Dist: isort (>=6.0.1,<6.1.0)
24
+ Requires-Dist: libcst (>=1.7.0,<2.0.0)
25
+ Requires-Dist: openai (>=1.86.0,<2.0.0) ; extra == "rag" or extra == "all"
26
+ Requires-Dist: pdfplumber (>=0.11.6,<0.12.0) ; extra == "rag" or extra == "all"
27
+ Requires-Dist: playwright (>=1.53.0,<2.0.0) ; extra == "playwright" or extra == "all"
28
+ Requires-Dist: prompt-toolkit (>=3.0.51,<4.0.0)
29
+ Requires-Dist: psutil (>=7.0.0,<8.0.0)
30
+ Requires-Dist: pydantic-ai (>=0.3.4,<0.4.0)
31
+ Requires-Dist: pyjwt (>=2.10.1,<3.0.0)
32
+ Requires-Dist: python-dotenv (>=1.1.1,<2.0.0)
33
+ Requires-Dist: python-jose[cryptography] (>=3.4.0,<4.0.0)
34
+ Requires-Dist: requests (>=2.32.4,<3.0.0)
35
+ Requires-Dist: rich (>=14.0.0,<15.0.0)
36
+ Requires-Dist: tiktoken (>=0.8.0,<0.9.0)
37
+ Requires-Dist: ulid-py (>=1.1.0,<2.0.0)
38
+ Project-URL: Documentation, https://github.com/state-alchemists/zrb
39
+ Project-URL: Repository, https://github.com/state-alchemists/zrb
40
+ Description-Content-Type: text/markdown
41
+
42
+ ![](https://raw.githubusercontent.com/state-alchemists/zrb/main/_images/zrb/android-chrome-192x192.png)
43
+
44
+ # 🤖 Zrb: Your Automation Powerhouse
45
+
46
+ **Zrb (Zaruba) is a Python-based tool that makes it easy to create, organize, and run automation tasks.** Think of it as a command-line sidekick, ready to handle everything from simple scripts to complex, AI-powered workflows.
47
+
48
+ Whether you're running tasks from the terminal or a sleek web UI, Zrb streamlines your process with task dependencies, environment management, and even inter-task communication.
49
+
50
+ [Documentation](https://github.com/state-alchemists/zrb/blob/main/docs/README.md) | [Contribution Guidelines](https://github.com/state-alchemists/zrb/pulls) | [Report an Issue](https://github.com/state-alchemists/zrb/issues)
51
+
52
+ ---
53
+
54
+ ## 🔥 Why Choose Zrb?
55
+
56
+ Zrb is designed to be powerful yet intuitive, offering a unique blend of features:
57
+
58
+ - 🤖 **Built-in LLM Integration:** Go beyond simple automation. Leverage Large Language Models to generate code, create diagrams, produce documentation, and more.
59
+ - 🐍 **Pure Python:** Write your tasks in Python. No complex DSLs or YAML configurations to learn.
60
+ - 🔗 **Smart Task Chaining:** Define dependencies between tasks to build sophisticated, ordered workflows.
61
+ - 💻 **Dual-Mode Execution:** Run tasks from the command line for speed or use the built-in web UI for a more visual experience.
62
+ - ⚙️ **Flexible Configuration:** Manage inputs with defaults, prompts, or command-line arguments. Handle secrets and settings with environment variables from the system or `.env` files.
63
+ - 🗣️ **Cross-Communication (XCom):** Allow tasks to safely exchange small pieces of data.
64
+ - 🌍 **Open & Extensible:** Zrb is open-source. Feel free to contribute, customize, or extend it to meet your needs.
65
+
66
+ ---
67
+
68
+ ## 🚀 Quick Start: Your First AI-Powered Workflow in 5 Minutes
69
+
70
+ Let's create a two-step workflow that uses an LLM to analyze your code and generate a Mermaid diagram, then converts that diagram into a PNG image.
71
+
72
+ ### 1. Prerequisites: Get Your Tools Ready
73
+
74
+ Before you start, make sure you have the following:
75
+
76
+ - **An LLM API Key:** Zrb needs an API key to talk to an AI model.
77
+ ```bash
78
+ export OPENAI_API_KEY="your-key-here"
79
+ ```
80
+ > Zrb defaults to OpenAI, but you can easily configure it for other providers like **Deepseek, Ollama, etc.** See the [LLM Integration Guide](https://github.com/state-alchemists/zrb/blob/main/docs/installation-and-configuration/configuration/llm-integration.md) for details.
81
+
82
+ - **Mermaid CLI:** This tool converts Mermaid diagram scripts into images.
83
+ ```bash
84
+ npm install -g @mermaid-js/mermaid-cli
85
+ ```
86
+
87
+ ### 2. Install Zrb
88
+
89
+ The easiest way to get Zrb is with `pip`.
90
+
91
+ ```bash
92
+ pip install zrb
93
+ # Or for the latest pre-release version:
94
+ # pip install --pre zrb
95
+ ```
96
+
97
+ Alternatively, you can use an installation script that handles all prerequisites:
98
+ ```bash
99
+ bash -c "$(curl -fsSL https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh)"
100
+ ```
101
+
102
+ > For other installation methods, including **Docker 🐋** and **Android 📱**, check out the full [Installation Guide](https://github.com/state-alchemists/zrb/blob/main/docs/installation-and-configuration/README.md).
103
+
104
+ ### 3. Define Your Tasks
105
+
106
+ Create a file named `zrb_init.py` in your project directory. Zrb automatically discovers this file.
107
+
108
+ > **💡 Pro Tip:** You can place `zrb_init.py` in your home directory (`~/zrb_init.py`), and the tasks you define will be available globally across all your projects!
109
+
110
+ Add the following Python code to your `zrb_init.py`:
111
+
112
+ ```python
113
+ from zrb import cli, LLMTask, CmdTask, StrInput, Group
114
+ from zrb.builtin.llm.tool.code import analyze_repo
115
+ from zrb.builtin.llm.tool.file import write_to_file
116
+
117
+
118
+ # Create a group for Mermaid-related tasks
119
+ mermaid_group = cli.add_group(Group(
120
+ name="mermaid",
121
+ description="🧜 Mermaid diagram related tasks"
122
+ ))
123
+
124
+ # Task 1: Generate a Mermaid script from your source code
125
+ make_mermaid_script = mermaid_group.add_task(
126
+ LLMTask(
127
+ name="make-script",
128
+ description="Create a mermaid diagram from source code in the current directory",
129
+ input=[
130
+ StrInput(name="dir", default="./"),
131
+ StrInput(name="diagram", default="state-diagram"),
132
+ ],
133
+ message=(
134
+ "Read all necessary files in {ctx.input.dir}, "
135
+ "make a {ctx.input.diagram} in mermaid format. "
136
+ "Write the script into `{ctx.input.dir}/{ctx.input.diagram}.mmd`"
137
+ ),
138
+ tools=[
139
+ analyze_repo, write_to_file
140
+ ],
141
+ )
142
+ )
143
+
144
+ # Task 2: Convert the Mermaid script into a PNG image
145
+ make_mermaid_image = mermaid_group.add_task(
146
+ CmdTask(
147
+ name="make-image",
148
+ description="Create a PNG from a mermaid script",
149
+ input=[
150
+ StrInput(name="dir", default="./"),
151
+ StrInput(name="diagram", default="state-diagram"),
152
+ ],
153
+ cmd="mmdc -i '{ctx.input.diagram}.mmd' -o '{ctx.input.diagram}.png'",
154
+ cwd="{ctx.input.dir}",
155
+ )
156
+ )
157
+
158
+ # Set up the dependency: the image task runs after the script is created
159
+ make_mermaid_script >> make_mermaid_image
160
+ ```
161
+
162
+ ### 4. Run Your Workflow!
163
+
164
+ Now, navigate to any project with source code. For example:
165
+
166
+ ```bash
167
+ git clone git@github.com:jjinux/gotetris.git
168
+ cd gotetris
169
+ ```
170
+
171
+ Run your new task to generate the diagram:
172
+
173
+ ```bash
174
+ zrb mermaid make-image --diagram "state-diagram" --dir ./
175
+ ```
176
+
177
+ You can also run it interactively and let Zrb prompt you for inputs:
178
+ ```bash
179
+ zrb mermaid make-image
180
+ ```
181
+ Zrb will ask for the directory and diagram name—just press **Enter** to accept the defaults.
182
+
183
+ In moments, you'll have a beautiful state diagram of your code!
184
+
185
+ ![State Diagram](https://raw.githubusercontent.com/state-alchemists/zrb/main/_images/state-diagram.png)
186
+
187
+ ---
188
+
189
+ ## 🖥️ Try the Web UI
190
+
191
+ Prefer a graphical interface? Zrb has you covered. Start the web server:
192
+
193
+ ```bash
194
+ zrb server start
195
+ ```
196
+
197
+ Then open your browser to `http://localhost:21213` to see your tasks in a clean, user-friendly interface.
198
+
199
+ ![Zrb Web UI](https://raw.githubusercontent.com/state-alchemists/zrb/main/_images/zrb-web-ui.png)
200
+
201
+ ---
202
+
203
+ ## 💬 Interact with an LLM Directly
204
+
205
+ Zrb brings AI capabilities right to your command line.
206
+
207
+ ### Interactive Chat
208
+
209
+ Start a chat session with an LLM to ask questions, brainstorm ideas, or get coding help.
210
+
211
+ ```bash
212
+ zrb llm chat
213
+ ```
214
+
215
+ ### Quick Questions
216
+
217
+ For a single question, use the `ask` command for a fast response.
218
+
219
+ ```bash
220
+ zrb llm ask "What is the capital of Indonesia?"
221
+ ```
222
+
223
+ ---
224
+
225
+ ## 🎥 Demo & Documentation
226
+
227
+ - **Dive Deeper:** [**Explore the Full Zrb Documentation**](https://github.com/state-alchemists/zrb/blob/main/docs/README.md)
228
+ - **Watch the Video Demo:**
229
+
230
+ [![Video Title](https://img.youtube.com/vi/W7dgk96l__o/0.jpg)](https://www.youtube.com/watch?v=W7dgk96l__o)
231
+
232
+ ---
233
+
234
+ ## 🤝 Join the Community & Support the Project
235
+
236
+ - **Bugs & Feature Requests:** Found a bug or have a great idea? [Open an issue](https://github.com/state-alchemists/zrb/issues). Please include your Zrb version (`zrb version`) and steps to reproduce the issue.
237
+ - **Contributions:** We love pull requests! See our [contribution guidelines](https://github.com/state-alchemists/zrb/pulls) to get started.
238
+ - **Support Zrb:** If you find Zrb valuable, please consider showing your support.
239
+
240
+ [![](https://raw.githubusercontent.com/state-alchemists/zrb/main/_images/donator.png)](https://stalchmst.com)
241
+
242
+ ---
243
+
244
+ ## 🎉 Fun Fact
245
+
246
+ **Did you know?** Zrb is named after `Zaruba`, a powerful, sentient Madou Ring that acts as a guide and support tool in the *Garo* universe.
247
+
248
+ > *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)
249
+
250
+ ![Madou Ring Zaruba on Kouga's Hand](https://raw.githubusercontent.com/state-alchemists/zrb/main/_images/madou-ring-zaruba.jpg)
@@ -1,27 +1,27 @@
1
- zrb/__init__.py,sha256=v0BgFP9Q22QpaJBAKqhzsWKOIsNflOcDxAA7H1xqDfE,5059
2
- zrb/__main__.py,sha256=aeIpBjlLef8bfdp0CYumnn5jVkHDPS5bwAxfuCJVUNI,2650
1
+ zrb/__init__.py,sha256=Rp5YD2qgKmUiz-f53JHYpxnHcAByrLOrCyjue6LbAMk,5101
2
+ zrb/__main__.py,sha256=9SXH9MK4PVyU9lkEyHxiIUABbcsV2wseP94HmlqTR4M,2657
3
3
  zrb/attr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  zrb/attr/type.py,sha256=4TV5gPYMMrKh5V-yB6iRYKCbsXAH_AvGXMsjxKLHcUs,568
5
- zrb/builtin/__init__.py,sha256=N-h-BoXWv0jYOldixXwgk6ekiWtrGZsGv57iqonsYdc,2657
5
+ zrb/builtin/__init__.py,sha256=NjXpvBgAiPH-dNsJx5Fa-zSZE5JVnmVb1GhMNtevpGQ,1614
6
6
  zrb/builtin/base64.py,sha256=UjaFttE2oRx0T7_RpKtKfgMtWfiQXfJBAJmA16ek8Ic,1507
7
7
  zrb/builtin/git.py,sha256=8_qVE_2lVQEVXQ9vhiw8Tn4Prj1VZB78ZjEJJS5Ab3M,5461
8
8
  zrb/builtin/git_subtree.py,sha256=7BKwOkVTWDrR0DXXQ4iJyHqeR6sV5VYRt8y_rEB0EHg,3505
9
9
  zrb/builtin/group.py,sha256=t008xLM4_fgbjfZrPoi_fQAnSHIo6MOiQSCHBO4GDYU,2379
10
10
  zrb/builtin/http.py,sha256=sLqEczuSxGYXWzyJR6frGOHkPTviu4BeyroUr3-ZuAI,4322
11
11
  zrb/builtin/jwt.py,sha256=3M5uaQhJZbKQLjTUft1OwPz_JxtmK-xtkjxWjciOQho,2859
12
- zrb/builtin/llm/chat_session.py,sha256=S7IIY1ZGiNI0jfg1LhFZBKM9edHutiQws_WgwNXzZZ4,7586
13
- zrb/builtin/llm/history.py,sha256=cnkOyO43uiMQ9cEvmqk-pPoCk1zCAH_fwAqSgBtsjzY,3079
12
+ zrb/builtin/llm/chat_session.py,sha256=1DMy6j24jfTVkQfsZAHvazniXrWfUW8E0ZwTAxi7WAU,7593
13
+ zrb/builtin/llm/history.py,sha256=jCMeRCHUsDFnQWyDoH9SOBptzceOs_wACvVpYkDOoTk,3086
14
14
  zrb/builtin/llm/input.py,sha256=Nw-26uTWp2QhUgKJcP_IMHmtk-b542CCSQ_vCOjhvhM,877
15
- zrb/builtin/llm/llm_ask.py,sha256=A7MmDybKSdlO0T-Wted9t1tEtw6ULjV5aG4SAwpkt-w,4532
15
+ zrb/builtin/llm/llm_ask.py,sha256=oozfQwa1i2PnXV4qWbn60Pmd3fS0kgmhYCbfKlhr25o,4549
16
16
  zrb/builtin/llm/previous-session.js,sha256=xMKZvJoAbrwiyHS0OoPrWuaKxWYLoyR5sguePIoCjTY,816
17
17
  zrb/builtin/llm/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- zrb/builtin/llm/tool/api.py,sha256=yR9I0ZsI96OeQl9pgwORMASVuXsAL0a89D_iPS4C8Dc,1699
19
- zrb/builtin/llm/tool/cli.py,sha256=_CNEmEc6K2Z0i9ppYeM7jGpqaEdT3uxaWQatmxP3jKE,858
20
- zrb/builtin/llm/tool/code.py,sha256=t_0-D1ToSm3ATYGiHfkHBpvkRGMnrmwWSYk_M73AVXs,8090
21
- zrb/builtin/llm/tool/file.py,sha256=OFmQYh2m27mgCLwlbKDxNOhp6qkoOtslT3fsso-PMPU,22757
22
- zrb/builtin/llm/tool/rag.py,sha256=yqx7vXXyrOCJjhQJl4s0TnLL-2uQUTuKRnkWlSQBW0M,7883
23
- zrb/builtin/llm/tool/sub_agent.py,sha256=Xz_nwNA8hW52gCeNdNBT7TXDUU3x7Ube-t17FYxx0-E,4671
24
- zrb/builtin/llm/tool/web.py,sha256=SeTT59yRaBJQILi4TETaLDMna2ooeYStYMkAnn0uTZc,5465
18
+ zrb/builtin/llm/tool/api.py,sha256=OhmfLc2TwWKQYIMweGelqb5s4JF4nB-YynbSO4yb_Jk,2342
19
+ zrb/builtin/llm/tool/cli.py,sha256=QqIil29dVOjbTxwb9Gib4KhlaJcOcto-OxEX5hHmA1s,1377
20
+ zrb/builtin/llm/tool/code.py,sha256=EROMSmeVtVSqLVF6DZLAo97oj6rVOpGfnG7VNagWzfE,8799
21
+ zrb/builtin/llm/tool/file.py,sha256=2_S5KCgB-9mhwc_w2YKsQkH_zAW42GTrM6qvYoV_2_o,22737
22
+ zrb/builtin/llm/tool/rag.py,sha256=wB74JV7bxs0ec77b_09Z2lPjoR1WzPUvZbuXOdb9Q9g,9675
23
+ zrb/builtin/llm/tool/sub_agent.py,sha256=7Awa9dpXqtJAZhxyXaKeZv5oIE2N_OqXhAbNmsOG49Y,4951
24
+ zrb/builtin/llm/tool/web.py,sha256=gQlUsmYCJOFJtNjwpjK-xk13LMvrMSpSaFHXUTnIayQ,7090
25
25
  zrb/builtin/md5.py,sha256=690RV2LbW7wQeTFxY-lmmqTSVEEZv3XZbjEUW1Q3XpE,1480
26
26
  zrb/builtin/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
27
  zrb/builtin/project/add/fastapp/fastapp_input.py,sha256=MKlWR_LxWhM_DcULCtLfL_IjTxpDnDBkn9KIqNmajFs,310
@@ -209,7 +209,7 @@ zrb/builtin/shell/autocomplete/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
209
209
  zrb/builtin/shell/autocomplete/bash.py,sha256=-7YDVV7txgJH9mAYSYN0jmvUEeDIzWFvVNY-cY0myF8,1181
210
210
  zrb/builtin/shell/autocomplete/subcmd.py,sha256=WZI6cGWJcn80zSyxOHG7sCMO3Ucix3mZf4xm_xyB_Y0,606
211
211
  zrb/builtin/shell/autocomplete/zsh.py,sha256=9hlq0Wt3fhRz326mAQTypEd4_4lZdrbBx_3A-Ti3mvw,1022
212
- zrb/builtin/todo.py,sha256=1d_gKqGdgjbKDdMbFkehaGcm6cPDO89hOc3BjXund_E,11855
212
+ zrb/builtin/todo.py,sha256=EIqz0nmB1tW4OhWZbTv8y4CvppQOG6u8-Esw5__ThPY,11862
213
213
  zrb/builtin/uuid.py,sha256=lIdhSGzPQ1rixRzMXxQDcgFgV7W-gUduHIudZXlzZzg,5393
214
214
  zrb/callback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
215
  zrb/callback/any_callback.py,sha256=PqEJYX_RigXEmoPniSeZusZBZSLWEoVIHvHk8MZ0Mvg,253
@@ -217,7 +217,10 @@ zrb/callback/callback.py,sha256=PFhCqzfxdk6IAthmXcZ13DokT62xtBzJr_ciLw6I8Zg,4030
217
217
  zrb/cmd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
218
  zrb/cmd/cmd_result.py,sha256=L8bQJzWCpcYexIxHBNsXj2pT3BtLmWex0iJSMkvimOA,597
219
219
  zrb/cmd/cmd_val.py,sha256=7Doowyg6BK3ISSGBLt-PmlhzaEkBjWWm51cED6fAUOQ,1014
220
- zrb/config.py,sha256=PbtmVWIdCTCFdeAIF5Y-J7wa99ZhLWIe_GMYqpZzhXk,10576
220
+ zrb/config/config.py,sha256=PbtmVWIdCTCFdeAIF5Y-J7wa99ZhLWIe_GMYqpZzhXk,10576
221
+ zrb/config/llm_config.py,sha256=c9ySC40hToXP91FZ2wylXVnvRDLkwhBr1Skqw8RmvHU,19006
222
+ zrb/config/llm_rate_limitter.py,sha256=0U0qm4qgCWqBjohPdwANNUzLR3joJCFYr6oW6Xpccfo,4436
223
+ zrb/config/web_auth_config.py,sha256=_PXatQTYh2mX9H3HSYSQKp13zm1RlLyVIoeIr6KYMQ8,6279
221
224
  zrb/content_transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
225
  zrb/content_transformer/any_content_transformer.py,sha256=v8ZUbcix1GGeDQwB6OKX_1TjpY__ksxWVeqibwa_iZA,850
223
226
  zrb/content_transformer/content_transformer.py,sha256=STl77wW-I69QaGzCXjvkppngYFLufow8ybPLSyAvlHs,2404
@@ -225,7 +228,7 @@ zrb/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
228
  zrb/context/any_context.py,sha256=2hgVKbbDwmwrEl1h1L1FaTUjuUYaDd_b7YRGkaorW6Q,6362
226
229
  zrb/context/any_shared_context.py,sha256=p1i9af_CUDz5Mf1h1kBZMAa2AEhf17I3O5IgAcjRLoY,1768
227
230
  zrb/context/context.py,sha256=3p43LTTqkcaX00wSBwLFVTyoEdlPnMYMASqnXUxdU_U,6706
228
- zrb/context/shared_context.py,sha256=w6cJH41nmhTzYlUrquRMbOexXrXgadfTd5awLnKAq4Q,2801
231
+ zrb/context/shared_context.py,sha256=TMQF_KH5rw5M2ybjJBSMI872yRPExJWfr0mIe1sRjE8,2808
229
232
  zrb/dot_dict/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
230
233
  zrb/dot_dict/dot_dict.py,sha256=ubw_x8I7AOJ59xxtFVJ00VGmq_IYdZP3mUhNlO4nEK0,556
231
234
  zrb/env/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -245,35 +248,32 @@ zrb/input/int_input.py,sha256=UhxCFYlZdJcgUSGGEkz301zOgRVpK0KDG_IxxWpQfMU,1457
245
248
  zrb/input/option_input.py,sha256=TQB82ko5odgzkULEizBZi0e9TIHEbIgvdP0AR3RhA74,2135
246
249
  zrb/input/password_input.py,sha256=szBojWxSP9QJecgsgA87OIYwQrY2AQ3USIKdDZY6snU,1465
247
250
  zrb/input/str_input.py,sha256=NevZHX9rf1g8eMatPyy-kUX3DglrVAQpzvVpKAzf7bA,81
248
- zrb/input/text_input.py,sha256=6T3MngWdUs0u0ZVs5Dl11w5KS7nN1RkgrIR_zKumzPM,3695
249
- zrb/llm_config.py,sha256=XjicvJDfygFW-pwnRCIyBc4kd6xps-Jo3NJvmQ1XHsQ,18902
250
- zrb/llm_rate_limitter.py,sha256=uM9zmSgV10fQq1dlaDGLDrv72uLj6ldBxMoGjO2Az14,4429
251
+ zrb/input/text_input.py,sha256=UCkC497V6L12cPjupOgIZ5XW2eBbBDydQi5IIYtknek,3702
251
252
  zrb/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
- zrb/runner/cli.py,sha256=y_n7O4kQKXpiLAsBsf1WnHNfWgKlrxE9TU0MU1ICUMg,6989
253
+ zrb/runner/cli.py,sha256=EjnTtEEkTDdTURh20Jie3SMoAG5NJQneCR3esgbPmuE,6996
253
254
  zrb/runner/common_util.py,sha256=JDMcwvQ8cxnv9kQrAoKVLA40Q1omfv-u5_d5MvvwHeE,1373
254
- zrb/runner/web_app.py,sha256=L61fwHBKbG1BuoC8JASCUwoPYjBt2h90HtPQBpZALLs,2789
255
- zrb/runner/web_auth_config.py,sha256=XAznxFk-CThhAJJIWAHhXFJC2ZH1aVIlrgYg2yjUAv4,6272
255
+ zrb/runner/web_app.py,sha256=n8iXtQ5DGIfRcFsHdBafm9VJisVSDD159XFPpEXQTN0,2796
256
256
  zrb/runner/web_route/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
- zrb/runner/web_route/docs_route.py,sha256=Ftv4BbxnF_GZs2cJwen4hV7Z_UKQassFugB_bePdrPw,543
258
- zrb/runner/web_route/error_page/serve_default_404.py,sha256=srQSyOHoTZLScSvSUQnzUAVFOFSO_NQ2XEQZSvPd05c,1072
259
- zrb/runner/web_route/error_page/show_error_page.py,sha256=ck5u_LQiLHtgzwpVgX9Xs_60zPonfnoefXDYYBoR3gI,1301
257
+ zrb/runner/web_route/docs_route.py,sha256=Y8zTROzIOfmJuU_E9KZljdjgkd65DcvLeX3k0xO-o_k,550
258
+ zrb/runner/web_route/error_page/serve_default_404.py,sha256=LvEq4RnCoP_plQnlZBDTd9MHg7i1YxbuR_aVVYtAhjk,1072
259
+ zrb/runner/web_route/error_page/show_error_page.py,sha256=gvdpVR-BiAx7ibV3B-_1oWeGRLw3W8xYOQ5A9n19TzE,1308
260
260
  zrb/runner/web_route/error_page/view.html,sha256=iYH52t2CQ9_ubgweELwnUXtqzhleC0Nv1oa9ecREM64,544
261
261
  zrb/runner/web_route/home_page/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
262
- zrb/runner/web_route/home_page/home_page_route.py,sha256=dVOlQ_Nk5wQZkkRCC43aiACQRGAxzzCRYfTYRRHnm3M,2606
262
+ zrb/runner/web_route/home_page/home_page_route.py,sha256=RtD8BJgS7Tiufkjg-bG-a3q0lkIr-4iF9oKunVqLqok,2613
263
263
  zrb/runner/web_route/home_page/view.html,sha256=oWvirSGh74ABHHDPYboQueZI6_xMeMLDf5LZNLZO52k,422
264
- zrb/runner/web_route/login_api_route.py,sha256=xzo8GyybsNJmnmo6GD08zmVjD9nWpckOnSxH92HqxkU,1151
265
- zrb/runner/web_route/login_page/login_page_route.py,sha256=Cs0VtIbu9Sq0Or2d7TRrT2d0_85y_XxsvBmPBzi9OsQ,1929
264
+ zrb/runner/web_route/login_api_route.py,sha256=5H41qGRoQZvCPwO93I21CYXXYEjmoDkAeWuJof_4CaI,1151
265
+ zrb/runner/web_route/login_page/login_page_route.py,sha256=ivSGo72CbOo97SGMRwIPNOUu_xmV_3lH8eAAUJU-xK4,1936
266
266
  zrb/runner/web_route/login_page/view.html,sha256=KLHZWm5MxcGCOQjeq_JtXMTLvDX8JyphSBbK6DDrkg8,1139
267
- zrb/runner/web_route/logout_api_route.py,sha256=VS5OvngwoAE5SXolWtEmja1vXpqSLQu8E-wiq5weeDA,633
268
- zrb/runner/web_route/logout_page/logout_page_route.py,sha256=JAzBJzgMR-deKJOaE_8VXnzA0RJdTS_rpUBRTmwobg4,1974
267
+ zrb/runner/web_route/logout_api_route.py,sha256=MqpyjcI129-abJCfA_b03s3rkj22BkGH-MAGlGVerMM,633
268
+ zrb/runner/web_route/logout_page/logout_page_route.py,sha256=dpfzEXScDrHNH1Yzq7I5SyoQafE_X72QLNhcOU2QDc0,1981
269
269
  zrb/runner/web_route/logout_page/view.html,sha256=P1S9cv7eXMbwUZTPfP4sshBNI-m9nWhLP-mrmtoEHCs,742
270
- zrb/runner/web_route/node_page/group/show_group_page.py,sha256=IBwCU8HykybPII89sCWvYXdM-OaBvSaQqixgBhdsPOg,1953
270
+ zrb/runner/web_route/node_page/group/show_group_page.py,sha256=grsWdn8ABhWiYBMhtwX2T8Wagml-E5oD4W4IoUv08fw,1960
271
271
  zrb/runner/web_route/node_page/group/view.html,sha256=3d1O2Vqc2PzxY-_xWt0Rsb2mG1yrvQ1TuaZXuYGolJw,566
272
- zrb/runner/web_route/node_page/node_page_route.py,sha256=7UjYGgtlDK6t2RR0ILmXwkZk04a1HJKOhDr09h46Rzw,2284
272
+ zrb/runner/web_route/node_page/node_page_route.py,sha256=ry3rLe3S_35r656Xm3Sm94kQtJMZFpd2Zfj5s6crN5k,2284
273
273
  zrb/runner/web_route/node_page/task/partial/input.html,sha256=X2jy0q7TLQGP853exZMed0lqPezL3gzn6mnhB5QKfkc,178
274
- zrb/runner/web_route/node_page/task/show_task_page.py,sha256=Fmov5Byqj10Rbkl-IXxZDoKt0L7rMP9TjMIcq2oNtmk,3355
274
+ zrb/runner/web_route/node_page/task/show_task_page.py,sha256=oee7znmRPkPu_kkrvOpzuvDvkKF0eI4GQwGrXG5iiWc,3362
275
275
  zrb/runner/web_route/node_page/task/view.html,sha256=mp_DeoPXhWPypAbKSZ6iTIDVlTRUQzIuJfDExxOWBWc,2598
276
- zrb/runner/web_route/refresh_token_api_route.py,sha256=UFrSwNxpbDRHQiDIRhtVndRNlwsMIRZOkL4glK5sS6c,1504
276
+ zrb/runner/web_route/refresh_token_api_route.py,sha256=480ekxghp645bqIZ4AmctB8_Fu-FkJb7tB_jbprW1qM,1504
277
277
  zrb/runner/web_route/static/global_template.html,sha256=fK5eBs4cH5zb_JhcWANygtnf0PMY4HAkFmN3hZI3rE4,1298
278
278
  zrb/runner/web_route/static/refresh-token.template.js,sha256=AWXhdxTMyuzBZoMftH7BjlU2CMIafwqWcbkZoiUEE50,1074
279
279
  zrb/runner/web_route/static/resources/common.css,sha256=Kk8o0mcArKTOxPllR0ecaa0ZRVVig0CG0KvLXIqmGJo,517
@@ -305,16 +305,16 @@ zrb/runner/web_route/static/resources/session/common-util.js,sha256=t7_s5DXgMyZl
305
305
  zrb/runner/web_route/static/resources/session/current-session.js,sha256=tzUdK7qJKnMBGlIaMZJIPc2oeL5csk1JTBbjTsjhrFA,7008
306
306
  zrb/runner/web_route/static/resources/session/event.js,sha256=X5OlSHefK0SDB9VkFCRyBKE_Pb7mqM319mW9jRGoDOk,4716
307
307
  zrb/runner/web_route/static/resources/session/past-session.js,sha256=RwGJYKSp75K8NZ-iZP58XppWgdzkiKFaiC5wgcMLxDo,5470
308
- zrb/runner/web_route/static/static_route.py,sha256=YRGKD7qiFuvciSRNewvo6oK0JLHQ_cK74eXWjffoQ70,1555
309
- zrb/runner/web_route/task_input_api_route.py,sha256=k5nQiJCL2ud6BhxaPGSbpK86XvMbsFliqTQ1FpEd-8Q,1767
310
- zrb/runner/web_route/task_session_api_route.py,sha256=CHbmcN-57FHixS-tVaxye5McMM3toHm8XcKFVmn1x6Y,6258
308
+ zrb/runner/web_route/static/static_route.py,sha256=QPs5XW4O_8CuzG0Wy4sHh5wRcLbU63CLDI4YNqkUxHA,1555
309
+ zrb/runner/web_route/task_input_api_route.py,sha256=6JIehRjXPhzclq9qGMYkztaKB0TzWsBBbim0m47-YmA,1767
310
+ zrb/runner/web_route/task_session_api_route.py,sha256=4U6VDzQ3rU_VjhH3LZ3NAy0fQjHFjohyZLlYpxmckxo,6258
311
311
  zrb/runner/web_schema/session.py,sha256=NwbuS2Sv-CXO52nU-EZv8OMlD4vgCQWNeLC_dT0FK7I,92
312
312
  zrb/runner/web_schema/token.py,sha256=Y7XCPS4WzrxslTDtHeLcPTTUpmWhPOkRcl4b99zrC7c,185
313
313
  zrb/runner/web_schema/user.py,sha256=Kp10amg4i-f8Y-4czogv1YN7rwy0HdbePFiuovYu1ts,1018
314
- zrb/runner/web_util/cookie.py,sha256=1_oRRGziv3wAvaEDV5uCKdwWxvEI8EcW6wHW5NpBcDE,1085
314
+ zrb/runner/web_util/cookie.py,sha256=O5vfZfeZOBL6ECvT7WqD4LihrsXO6okJLBUp6b7RMj0,1085
315
315
  zrb/runner/web_util/html.py,sha256=TuUHjX3eKCBzoa7TYdMt8dfWWy06idauyCaG66X4Ygc,1838
316
- zrb/runner/web_util/token.py,sha256=6Yqp6mQJJMAOsSkAN-6dvtdiQbAv5xtll9jOmNYzbUY,2687
317
- zrb/runner/web_util/user.py,sha256=vE61pDjHoaHw9K0YAv1Gu2zWX2WkM2aWG-8776_aAiM,2061
316
+ zrb/runner/web_util/token.py,sha256=uaQXSZ6mptiph1a_LOMdYtPYdcyOk3ygz5ZoLGOPkhE,2687
317
+ zrb/runner/web_util/user.py,sha256=wvFiF_TxUj580fgj_X7uB2Sw_MKZjH7ZIbGLDMBrg_A,2061
318
318
  zrb/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
319
319
  zrb/session/any_session.py,sha256=Z_R6lvg4exwAeDPH9nKRMwWJJTpgLCr8DVLs4MP53Rc,5204
320
320
  zrb/session/session.py,sha256=kkaddqyRhT_7qXeGAjHT8cfrAu_1gS8g1DQdp8UmEsE,10338
@@ -323,7 +323,7 @@ zrb/session_state_log/session_state_log.py,sha256=VVghDMU72PbrvnzQ7MJuc-KTJ5P5fX
323
323
  zrb/session_state_logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
324
324
  zrb/session_state_logger/any_session_state_logger.py,sha256=T_-aJv63HwoTeiDOmXKHp--eGl9MqAwgcLbiEPLhmDI,696
325
325
  zrb/session_state_logger/file_session_state_logger.py,sha256=NMyj_g2ImQc6ZRM9f35EpA-CM1UO-ZgoDnPkN1DSi9U,3915
326
- zrb/session_state_logger/session_state_logger_factory.py,sha256=2Jvvp2zqK3qD0Gw-pm84LJ3d5uvkoBRh9MNHvw3r_DA,181
326
+ zrb/session_state_logger/session_state_logger_factory.py,sha256=_oT1UIqm25nMwKhsUvXehnCdDvNqxCyuN8GLdv2D_U4,188
327
327
  zrb/task/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
328
328
  zrb/task/any_task.py,sha256=E4HA4Fumwv5dIsEnl2q0eE6t6LHnF6uyk0O5yQ2Mz6g,5826
329
329
  zrb/task/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -334,21 +334,21 @@ zrb/task/base/monitoring.py,sha256=UAOEcPiYNtZR4FFxzWCosuOEFE_P3c4GT5vAhQmohqI,5
334
334
  zrb/task/base/operators.py,sha256=uAMFqpZJsPnCrojgOl1FUDXTS15mtOa_IqiAXltyYRU,1576
335
335
  zrb/task/base_task.py,sha256=Y5JNzU6Y1E8RKGdj16HTlhny0v8N2I98GCA4D8h6Kmw,10962
336
336
  zrb/task/base_trigger.py,sha256=WSGcmBcGAZw8EzUXfmCjqJQkz8GEmi1RzogpF6A1V4s,6902
337
- zrb/task/cmd_task.py,sha256=irGi0txTcsvGhxjfem4_radR4csNXhgtfcxruSF1LFI,10853
337
+ zrb/task/cmd_task.py,sha256=myM8WZm6NrUD-Wv0Vb5sTOrutrAVZLt5LVsSBKwX6SM,10860
338
338
  zrb/task/http_check.py,sha256=Gf5rOB2Se2EdizuN9rp65HpGmfZkGc-clIAlHmPVehs,2565
339
339
  zrb/task/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
- zrb/task/llm/agent.py,sha256=IUGhU7vSfGVpVbd0rGLJ9kxIpt04Fm6UBjBWCVBVaZs,6695
341
- zrb/task/llm/config.py,sha256=WsO_kLXi0JXB6SPNL_dWm1Izu04KRrzmuX6DSrRYeBE,3483
340
+ zrb/task/llm/agent.py,sha256=BZHbz-YXgSdm1tTwGMR_maqcd3yMFGSdzLyDjuxT_XI,6702
341
+ zrb/task/llm/config.py,sha256=TlyH925_fboIlK2Ixf34tynmenqs9s9rfsnPs4jff78,3490
342
342
  zrb/task/llm/context.py,sha256=LGGQ_mb1dWorfshHjGgXEW_pRweGj-6MZcIUFq3AHy4,2213
343
- zrb/task/llm/context_enrichment.py,sha256=YJPUKmNc4SI3a_y4I0xfBB24uJNE1mVTQ_LxFAEETyE,6037
343
+ zrb/task/llm/context_enrichment.py,sha256=djY4fE9C0zUxJPrrb2xDboBXr_2kPUS_b4HjqslVpHg,6051
344
344
  zrb/task/llm/error.py,sha256=s5PSK3ibGupMzOM0P81nstHWrMr3205H0FSDwfhWUDA,3662
345
345
  zrb/task/llm/history.py,sha256=cpaNqoEzsNAgzZGPPdohA8U5nTrVWmZ3P1Y5RTtXDgc,7986
346
- zrb/task/llm/history_summarization.py,sha256=AhoBtzuGf4srANjxZqKC_0fKwyS-BxX6KXT54vo9E3w,6036
346
+ zrb/task/llm/history_summarization.py,sha256=V0G1BiISnxxmD8040PrvT0_dfqGE7zbLtk74KUpuqig,6050
347
347
  zrb/task/llm/print_node.py,sha256=zocTKi9gZDxl2I6KNu095TmMc13Yip6SNuWYnswS680,4060
348
- zrb/task/llm/prompt.py,sha256=obSsLHF4AHlwMIEQ8XTJmtEnkLlD5XTEkk0RJUmIz4Y,3410
348
+ zrb/task/llm/prompt.py,sha256=qhR8qS8RgaQ23D3amaHSHnBNv_NOnFB_1uxaQNc8KFw,3417
349
349
  zrb/task/llm/tool_wrapper.py,sha256=8_bL8m_WpRf-pVKSrvQIVqT-m2sUA87a1RBQG13lhp4,6457
350
350
  zrb/task/llm/typing.py,sha256=c8VAuPBw_4A3DxfYdydkgedaP-LU61W9_wj3m3CAX1E,58
351
- zrb/task/llm_task.py,sha256=EYU3TYhLrMu3nI2h-hid1vbfqpemYg54uht_Q8H8JBo,21056
351
+ zrb/task/llm_task.py,sha256=ELp71FsJ9SOGiMcgrAXHm00FB4OxchKjRiW-LtJ9t7c,21063
352
352
  zrb/task/make_task.py,sha256=PD3b_aYazthS8LHeJsLAhwKDEgdurQZpymJDKeN60u0,2265
353
353
  zrb/task/rsync_task.py,sha256=GSL9144bmp6F0EckT6m-2a1xG25AzrrWYzH4k3SVUKM,6370
354
354
  zrb/task/scaffolder.py,sha256=rME18w1HJUHXgi9eTYXx_T2G4JdqDYzBoNOkdOOo5-o,6806
@@ -380,7 +380,7 @@ zrb/util/file.py,sha256=tm_8qn0vEM8Hz46yXUcvFHfsLtQNqidQaEuB85xqhFE,2806
380
380
  zrb/util/git.py,sha256=gS_Y9sQgJbY0PfgSQiowLvV3Nf0y9C8nT3j6z6oEsG8,8186
381
381
  zrb/util/git_subtree.py,sha256=E_UB5OIgm8WkHL9beifRxpZ25_BB9p1H578OhLZTgRU,4611
382
382
  zrb/util/group.py,sha256=T82yr3qg9I5k10VPXkMyrIRIqyfzadSH813bqzwKEPI,4718
383
- zrb/util/init_path.py,sha256=n4BgLGeq3mPLS1la8VEqZpqJHx0vJRe2WRwTtbw-FjE,652
383
+ zrb/util/init_path.py,sha256=9eN7CkWNGhDBpjTQs2j9YHVMzui7Y8DEb1WP4aTPzeo,659
384
384
  zrb/util/load.py,sha256=DK0KYSlu48HCoGPqnW1IxnE3pHrZSPCstfz8Fjyqqv8,2140
385
385
  zrb/util/run.py,sha256=vu-mcSWDP_WuuvIKqM_--Gk3WkABO1oTXiHmBRTvVQk,546
386
386
  zrb/util/string/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -391,7 +391,7 @@ zrb/util/todo.py,sha256=r9_KYF2-hLKMNjsp6AFK9zivykMrywd-kJ4bCwfdafI,19323
391
391
  zrb/util/todo_model.py,sha256=0SJ8aLYfJAscDOk5JsH7pXP3h1rAG91VMCS20-c2Y6A,1576
392
392
  zrb/xcom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
393
393
  zrb/xcom/xcom.py,sha256=o79rxR9wphnShrcIushA0Qt71d_p3ZTxjNf7x9hJB78,1571
394
- zrb-1.9.4.dist-info/METADATA,sha256=tuGFlPCJqzMFk3D3UpOWxycH2am8H7s2blBVU9dwLbc,9597
395
- zrb-1.9.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
396
- zrb-1.9.4.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
397
- zrb-1.9.4.dist-info/RECORD,,
394
+ zrb-1.9.6.dist-info/METADATA,sha256=djvxyCdtBRZInrSwxMWqIxtpfmFpD1mo0Q5HFwdaTZA,9777
395
+ zrb-1.9.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
396
+ zrb-1.9.6.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
397
+ zrb-1.9.6.dist-info/RECORD,,