zrb 1.9.3__py3-none-any.whl → 1.9.4__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/__init__.py +128 -111
- zrb/config.py +2 -2
- zrb/llm_config.py +42 -27
- zrb/task/llm/context_enrichment.py +1 -1
- zrb/task/llm/history_summarization.py +1 -1
- {zrb-1.9.3.dist-info → zrb-1.9.4.dist-info}/METADATA +1 -1
- {zrb-1.9.3.dist-info → zrb-1.9.4.dist-info}/RECORD +9 -9
- {zrb-1.9.3.dist-info → zrb-1.9.4.dist-info}/WHEEL +0 -0
- {zrb-1.9.3.dist-info → zrb-1.9.4.dist-info}/entry_points.txt +0 -0
zrb/__init__.py
CHANGED
@@ -1,116 +1,133 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
BoolAttr,
|
4
|
-
FloatAttr,
|
5
|
-
IntAttr,
|
6
|
-
StrAttr,
|
7
|
-
StrDictAttr,
|
8
|
-
fstring,
|
9
|
-
)
|
10
|
-
from zrb.callback.any_callback import AnyCallback
|
11
|
-
from zrb.callback.callback import Callback
|
12
|
-
from zrb.cmd.cmd_result import CmdResult
|
13
|
-
from zrb.cmd.cmd_val import Cmd, CmdPath
|
14
|
-
from zrb.config import CFG
|
15
|
-
from zrb.content_transformer.any_content_transformer import AnyContentTransformer
|
16
|
-
from zrb.content_transformer.content_transformer import ContentTransformer
|
17
|
-
from zrb.context.any_context import AnyContext
|
18
|
-
from zrb.context.any_shared_context import AnySharedContext
|
19
|
-
from zrb.context.context import Context
|
20
|
-
from zrb.context.shared_context import SharedContext
|
21
|
-
from zrb.env.any_env import AnyEnv
|
22
|
-
from zrb.env.env import Env
|
23
|
-
from zrb.env.env_file import EnvFile
|
24
|
-
from zrb.env.env_map import EnvMap
|
25
|
-
from zrb.group.any_group import AnyGroup
|
26
|
-
from zrb.group.group import Group
|
27
|
-
from zrb.input.any_input import AnyInput
|
28
|
-
from zrb.input.base_input import BaseInput
|
29
|
-
from zrb.input.bool_input import BoolInput
|
30
|
-
from zrb.input.float_input import FloatInput
|
31
|
-
from zrb.input.int_input import IntInput
|
32
|
-
from zrb.input.option_input import OptionInput
|
33
|
-
from zrb.input.password_input import PasswordInput
|
34
|
-
from zrb.input.str_input import StrInput
|
35
|
-
from zrb.input.text_input import TextInput
|
36
|
-
from zrb.llm_config import llm_config
|
37
|
-
from zrb.llm_rate_limitter import llm_rate_limitter
|
38
|
-
from zrb.runner.cli import cli
|
39
|
-
from zrb.runner.web_auth_config import web_auth_config
|
40
|
-
from zrb.runner.web_schema.user import User
|
41
|
-
from zrb.session.session import Session
|
42
|
-
from zrb.task.any_task import AnyTask
|
43
|
-
from zrb.task.base_task import BaseTask
|
44
|
-
from zrb.task.base_trigger import BaseTrigger
|
45
|
-
from zrb.task.cmd_task import CmdTask
|
46
|
-
from zrb.task.http_check import HttpCheck
|
47
|
-
from zrb.task.llm.history import ConversationHistoryData
|
48
|
-
from zrb.task.llm_task import LLMTask
|
49
|
-
from zrb.task.make_task import make_task
|
50
|
-
from zrb.task.rsync_task import RsyncTask
|
51
|
-
from zrb.task.scaffolder import Scaffolder
|
52
|
-
from zrb.task.scheduler import Scheduler
|
53
|
-
from zrb.task.task import Task
|
54
|
-
from zrb.task.tcp_check import TcpCheck
|
55
|
-
from zrb.util.load import load_file, load_module
|
56
|
-
from zrb.xcom.xcom import Xcom
|
1
|
+
import importlib
|
2
|
+
from typing import TYPE_CHECKING, Any
|
57
3
|
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
4
|
+
_LAZY_LOAD = {
|
5
|
+
"AnyAttr": "zrb.attr.type",
|
6
|
+
"BoolAttr": "zrb.attr.type",
|
7
|
+
"FloatAttr": "zrb.attr.type",
|
8
|
+
"IntAttr": "zrb.attr.type",
|
9
|
+
"StrAttr": "zrb.attr.type",
|
10
|
+
"StrDictAttr": "zrb.attr.type",
|
11
|
+
"fstring": "zrb.attr.type",
|
12
|
+
"AnyCallback": "zrb.callback.any_callback",
|
13
|
+
"Callback": "zrb.callback.callback",
|
14
|
+
"CmdResult": "zrb.cmd.cmd_result",
|
15
|
+
"Cmd": "zrb.cmd.cmd_val",
|
16
|
+
"CmdPath": "zrb.cmd.cmd_val",
|
17
|
+
"CFG": "zrb.config",
|
18
|
+
"AnyContentTransformer": "zrb.content_transformer.any_content_transformer",
|
19
|
+
"ContentTransformer": "zrb.content_transformer.content_transformer",
|
20
|
+
"AnyContext": "zrb.context.any_context",
|
21
|
+
"AnySharedContext": "zrb.context.any_shared_context",
|
22
|
+
"Context": "zrb.context.context",
|
23
|
+
"SharedContext": "zrb.context.shared_context",
|
24
|
+
"AnyEnv": "zrb.env.any_env",
|
25
|
+
"Env": "zrb.env.env",
|
26
|
+
"EnvFile": "zrb.env.env_file",
|
27
|
+
"EnvMap": "zrb.env.env_map",
|
28
|
+
"AnyGroup": "zrb.group.any_group",
|
29
|
+
"Group": "zrb.group.group",
|
30
|
+
"AnyInput": "zrb.input.any_input",
|
31
|
+
"BaseInput": "zrb.input.base_input",
|
32
|
+
"BoolInput": "zrb.input.bool_input",
|
33
|
+
"FloatInput": "zrb.input.float_input",
|
34
|
+
"IntInput": "zrb.input.int_input",
|
35
|
+
"OptionInput": "zrb.input.option_input",
|
36
|
+
"PasswordInput": "zrb.input.password_input",
|
37
|
+
"StrInput": "zrb.input.str_input",
|
38
|
+
"TextInput": "zrb.input.text_input",
|
39
|
+
"llm_config": "zrb.llm_config",
|
40
|
+
"llm_rate_limitter": "zrb.llm_rate_limitter",
|
41
|
+
"cli": "zrb.runner.cli",
|
42
|
+
"web_auth_config": "zrb.runner.web_auth_config",
|
43
|
+
"User": "zrb.runner.web_schema.user",
|
44
|
+
"Session": "zrb.session.session",
|
45
|
+
"AnyTask": "zrb.task.any_task",
|
46
|
+
"BaseTask": "zrb.task.base_task",
|
47
|
+
"BaseTrigger": "zrb.task.base_trigger",
|
48
|
+
"CmdTask": "zrb.task.cmd_task",
|
49
|
+
"HttpCheck": "zrb.task.http_check",
|
50
|
+
"ConversationHistoryData": "zrb.task.llm.history",
|
51
|
+
"LLMTask": "zrb.task.llm_task",
|
52
|
+
"make_task": "zrb.task.make_task",
|
53
|
+
"RsyncTask": "zrb.task.rsync_task",
|
54
|
+
"Scaffolder": "zrb.task.scaffolder",
|
55
|
+
"Scheduler": "zrb.task.scheduler",
|
56
|
+
"Task": "zrb.task.task",
|
57
|
+
"TcpCheck": "zrb.task.tcp_check",
|
58
|
+
"load_file": "zrb.util.load",
|
59
|
+
"load_module": "zrb.util.load",
|
60
|
+
"Xcom": "zrb.xcom.xcom",
|
61
|
+
}
|
113
62
|
|
63
|
+
if TYPE_CHECKING:
|
64
|
+
from zrb.attr.type import (
|
65
|
+
AnyAttr,
|
66
|
+
BoolAttr,
|
67
|
+
FloatAttr,
|
68
|
+
IntAttr,
|
69
|
+
StrAttr,
|
70
|
+
StrDictAttr,
|
71
|
+
fstring,
|
72
|
+
)
|
73
|
+
from zrb.callback.any_callback import AnyCallback
|
74
|
+
from zrb.callback.callback import Callback
|
75
|
+
from zrb.cmd.cmd_result import CmdResult
|
76
|
+
from zrb.cmd.cmd_val import Cmd, CmdPath
|
77
|
+
from zrb.config import CFG
|
78
|
+
from zrb.content_transformer.any_content_transformer import AnyContentTransformer
|
79
|
+
from zrb.content_transformer.content_transformer import ContentTransformer
|
80
|
+
from zrb.context.any_context import AnyContext
|
81
|
+
from zrb.context.any_shared_context import AnySharedContext
|
82
|
+
from zrb.context.context import Context
|
83
|
+
from zrb.context.shared_context import SharedContext
|
84
|
+
from zrb.env.any_env import AnyEnv
|
85
|
+
from zrb.env.env import Env
|
86
|
+
from zrb.env.env_file import EnvFile
|
87
|
+
from zrb.env.env_map import EnvMap
|
88
|
+
from zrb.group.any_group import AnyGroup
|
89
|
+
from zrb.group.group import Group
|
90
|
+
from zrb.input.any_input import AnyInput
|
91
|
+
from zrb.input.base_input import BaseInput
|
92
|
+
from zrb.input.bool_input import BoolInput
|
93
|
+
from zrb.input.float_input import FloatInput
|
94
|
+
from zrb.input.int_input import IntInput
|
95
|
+
from zrb.input.option_input import OptionInput
|
96
|
+
from zrb.input.password_input import PasswordInput
|
97
|
+
from zrb.input.str_input import StrInput
|
98
|
+
from zrb.input.text_input import TextInput
|
99
|
+
from zrb.llm_config import llm_config
|
100
|
+
from zrb.llm_rate_limitter import llm_rate_limitter
|
101
|
+
from zrb.runner.cli import cli
|
102
|
+
from zrb.runner.web_auth_config import web_auth_config
|
103
|
+
from zrb.runner.web_schema.user import User
|
104
|
+
from zrb.session.session import Session
|
105
|
+
from zrb.task.any_task import AnyTask
|
106
|
+
from zrb.task.base_task import BaseTask
|
107
|
+
from zrb.task.base_trigger import BaseTrigger
|
108
|
+
from zrb.task.cmd_task import CmdTask
|
109
|
+
from zrb.task.http_check import HttpCheck
|
110
|
+
from zrb.task.llm.history import ConversationHistoryData
|
111
|
+
from zrb.task.llm_task import LLMTask
|
112
|
+
from zrb.task.make_task import make_task
|
113
|
+
from zrb.task.rsync_task import RsyncTask
|
114
|
+
from zrb.task.scaffolder import Scaffolder
|
115
|
+
from zrb.task.scheduler import Scheduler
|
116
|
+
from zrb.task.task import Task
|
117
|
+
from zrb.task.tcp_check import TcpCheck
|
118
|
+
from zrb.util.load import load_file, load_module
|
119
|
+
from zrb.xcom.xcom import Xcom
|
120
|
+
|
121
|
+
|
122
|
+
def __getattr__(name: str) -> Any:
|
123
|
+
if name in _LAZY_LOAD:
|
124
|
+
module = importlib.import_module(_LAZY_LOAD[name])
|
125
|
+
return getattr(module, name)
|
126
|
+
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
127
|
+
|
128
|
+
|
129
|
+
# Eager load CFG
|
130
|
+
CFG = __getattr__("CFG")
|
114
131
|
if CFG.LOAD_BUILTIN:
|
115
132
|
from zrb import builtin
|
116
133
|
|
zrb/config.py
CHANGED
@@ -167,11 +167,11 @@ class Config:
|
|
167
167
|
|
168
168
|
@property
|
169
169
|
def WEB_SUPER_ADMIN_USERNAME(self) -> str:
|
170
|
-
return os.getenv("
|
170
|
+
return os.getenv("ZRB_WEB_SUPER_ADMIN_USERNAME", "admin")
|
171
171
|
|
172
172
|
@property
|
173
173
|
def WEB_SUPER_ADMIN_PASSWORD(self) -> str:
|
174
|
-
return os.getenv("
|
174
|
+
return os.getenv("ZRB_WEB_SUPER_ADMIN_PASSWORD", "admin")
|
175
175
|
|
176
176
|
@property
|
177
177
|
def WEB_ACCESS_TOKEN_COOKIE_NAME(self) -> str:
|
zrb/llm_config.py
CHANGED
@@ -48,37 +48,52 @@ DEFAULT_SYSTEM_PROMPT = (
|
|
48
48
|
).strip()
|
49
49
|
|
50
50
|
DEFAULT_SPECIAL_INSTRUCTION_PROMPT = (
|
51
|
-
"If the user's request falls into a specialized category below,
|
52
|
-
"the associated protocol.\n\n"
|
51
|
+
"If the user's request falls into a specialized category below, you MUST "
|
52
|
+
"follow the associated protocol.\n\n"
|
53
53
|
"---\n"
|
54
54
|
"## Software Engineering Protocol\n"
|
55
|
-
"This protocol applies to any request involving coding, debugging,
|
56
|
-
"other software development tasks.\n\n"
|
57
|
-
"### 1.
|
58
|
-
"- **Safety First:** Never perform destructive actions
|
59
|
-
"user confirmation. Explain critical commands before
|
60
|
-
"
|
61
|
-
"
|
62
|
-
"
|
63
|
-
"discover them
|
55
|
+
"This protocol applies to any request involving coding, debugging, "
|
56
|
+
"performance analysis, or other software development tasks.\n\n"
|
57
|
+
"### 1. Core Mandates\n"
|
58
|
+
"- **Safety First:** Never perform destructive actions (e.g., `rm -rf`) "
|
59
|
+
"without explicit user confirmation. Explain all critical commands before "
|
60
|
+
"executing them.\n"
|
61
|
+
"- **Adhere to Conventions:** Your changes MUST blend in seamlessly. "
|
62
|
+
"Match existing formatting, naming, and architectural patterns. *Never "
|
63
|
+
"assume* conventions; use your tools to discover them by reading "
|
64
|
+
"configuration files (e.g., `.gitignore`, `.flake8`), analyzing "
|
65
|
+
"neighboring code, and observing test patterns.\n"
|
64
66
|
"- **No Assumptions on Dependencies:** Never assume a library or "
|
65
67
|
"framework is available. Verify its presence in `package.json`, "
|
66
|
-
"`requirements.txt`, or similar files first.\n\n"
|
67
|
-
"### 2.
|
68
|
-
"1. **Understand
|
69
|
-
"
|
70
|
-
"
|
71
|
-
"
|
72
|
-
"
|
73
|
-
"
|
74
|
-
"
|
75
|
-
"
|
76
|
-
"
|
77
|
-
"
|
78
|
-
"
|
79
|
-
"
|
80
|
-
"
|
81
|
-
"
|
68
|
+
"`requirements.txt`, `pyproject.toml`, or similar files first.\n\n"
|
69
|
+
"### 2. Diagnostic & Implementation Workflow\n"
|
70
|
+
"1. **Understand & Investigate (Tool-First):**\n"
|
71
|
+
" - **Initial Assessment:** Start by using tools to understand the "
|
72
|
+
"task and environment. Do not begin by simply reading files. Formulate "
|
73
|
+
"an investigation plan.\n"
|
74
|
+
" - **Information Gathering:** Use available tools to find relevant "
|
75
|
+
"information (e.g., project structure, framework, etc.) to complete the task.\n"
|
76
|
+
" - **For Performance/Bugs:** If the task is to fix a bug or analyze "
|
77
|
+
"performance, your first step is to try and reproduce it. Then, use "
|
78
|
+
"diagnostic tools. For performance, use a profiler (e.g., `cProfile`, etc.). "
|
79
|
+
"For bugs, run the tests and analyze logs.\n"
|
80
|
+
"2. **Plan:**\n"
|
81
|
+
" - Announce your step-by-step plan based on your investigation "
|
82
|
+
"(e.g., 'Here is my plan: 1. Add a profiling decorator to the slow "
|
83
|
+
"function. 2. Run the code to generate a profile. 3. Analyze the "
|
84
|
+
"results to identify the bottleneck.').\n"
|
85
|
+
"3. **Implement:**\n"
|
86
|
+
" - Execute the plan using your tools, strictly following the Core "
|
87
|
+
"Mandates.\n"
|
88
|
+
"4. **Verify:**\n"
|
89
|
+
" - After making changes, ALWAYS run the relevant verification "
|
90
|
+
"commands (e.g., tests, linters, build scripts). Announce the command "
|
91
|
+
"you will run (e.g., 'Now, I will run `pytest` to verify the "
|
92
|
+
"changes.').\n"
|
93
|
+
"5. **Conclude:**\n"
|
94
|
+
" - Report the results of the verification. If successful, the task "
|
95
|
+
"is complete. If it fails, return to step 1 to diagnose the new "
|
96
|
+
"problem."
|
82
97
|
).strip()
|
83
98
|
|
84
99
|
DEFAULT_SUMMARIZATION_PROMPT = (
|
@@ -75,7 +75,7 @@ async def enrich_context(
|
|
75
75
|
return new_long_term_context
|
76
76
|
else:
|
77
77
|
ctx.log_warning("Context enrichment returned no data.")
|
78
|
-
except
|
78
|
+
except BaseException as e:
|
79
79
|
ctx.log_warning(f"Error during context enrichment LLM call: {e}")
|
80
80
|
traceback.print_exc()
|
81
81
|
|
@@ -122,7 +122,7 @@ async def summarize_history(
|
|
122
122
|
return new_summary
|
123
123
|
else:
|
124
124
|
ctx.log_warning("History summarization failed or returned no data.")
|
125
|
-
except
|
125
|
+
except BaseException as e:
|
126
126
|
ctx.log_warning(f"Error during history summarization: {e}")
|
127
127
|
traceback.print_exc()
|
128
128
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
zrb/__init__.py,sha256=
|
1
|
+
zrb/__init__.py,sha256=v0BgFP9Q22QpaJBAKqhzsWKOIsNflOcDxAA7H1xqDfE,5059
|
2
2
|
zrb/__main__.py,sha256=aeIpBjlLef8bfdp0CYumnn5jVkHDPS5bwAxfuCJVUNI,2650
|
3
3
|
zrb/attr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
zrb/attr/type.py,sha256=4TV5gPYMMrKh5V-yB6iRYKCbsXAH_AvGXMsjxKLHcUs,568
|
@@ -217,7 +217,7 @@ 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=
|
220
|
+
zrb/config.py,sha256=PbtmVWIdCTCFdeAIF5Y-J7wa99ZhLWIe_GMYqpZzhXk,10576
|
221
221
|
zrb/content_transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
222
222
|
zrb/content_transformer/any_content_transformer.py,sha256=v8ZUbcix1GGeDQwB6OKX_1TjpY__ksxWVeqibwa_iZA,850
|
223
223
|
zrb/content_transformer/content_transformer.py,sha256=STl77wW-I69QaGzCXjvkppngYFLufow8ybPLSyAvlHs,2404
|
@@ -246,7 +246,7 @@ zrb/input/option_input.py,sha256=TQB82ko5odgzkULEizBZi0e9TIHEbIgvdP0AR3RhA74,213
|
|
246
246
|
zrb/input/password_input.py,sha256=szBojWxSP9QJecgsgA87OIYwQrY2AQ3USIKdDZY6snU,1465
|
247
247
|
zrb/input/str_input.py,sha256=NevZHX9rf1g8eMatPyy-kUX3DglrVAQpzvVpKAzf7bA,81
|
248
248
|
zrb/input/text_input.py,sha256=6T3MngWdUs0u0ZVs5Dl11w5KS7nN1RkgrIR_zKumzPM,3695
|
249
|
-
zrb/llm_config.py,sha256=
|
249
|
+
zrb/llm_config.py,sha256=XjicvJDfygFW-pwnRCIyBc4kd6xps-Jo3NJvmQ1XHsQ,18902
|
250
250
|
zrb/llm_rate_limitter.py,sha256=uM9zmSgV10fQq1dlaDGLDrv72uLj6ldBxMoGjO2Az14,4429
|
251
251
|
zrb/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
252
252
|
zrb/runner/cli.py,sha256=y_n7O4kQKXpiLAsBsf1WnHNfWgKlrxE9TU0MU1ICUMg,6989
|
@@ -340,10 +340,10 @@ zrb/task/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
340
|
zrb/task/llm/agent.py,sha256=IUGhU7vSfGVpVbd0rGLJ9kxIpt04Fm6UBjBWCVBVaZs,6695
|
341
341
|
zrb/task/llm/config.py,sha256=WsO_kLXi0JXB6SPNL_dWm1Izu04KRrzmuX6DSrRYeBE,3483
|
342
342
|
zrb/task/llm/context.py,sha256=LGGQ_mb1dWorfshHjGgXEW_pRweGj-6MZcIUFq3AHy4,2213
|
343
|
-
zrb/task/llm/context_enrichment.py,sha256=
|
343
|
+
zrb/task/llm/context_enrichment.py,sha256=YJPUKmNc4SI3a_y4I0xfBB24uJNE1mVTQ_LxFAEETyE,6037
|
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=
|
346
|
+
zrb/task/llm/history_summarization.py,sha256=AhoBtzuGf4srANjxZqKC_0fKwyS-BxX6KXT54vo9E3w,6036
|
347
347
|
zrb/task/llm/print_node.py,sha256=zocTKi9gZDxl2I6KNu095TmMc13Yip6SNuWYnswS680,4060
|
348
348
|
zrb/task/llm/prompt.py,sha256=obSsLHF4AHlwMIEQ8XTJmtEnkLlD5XTEkk0RJUmIz4Y,3410
|
349
349
|
zrb/task/llm/tool_wrapper.py,sha256=8_bL8m_WpRf-pVKSrvQIVqT-m2sUA87a1RBQG13lhp4,6457
|
@@ -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.
|
395
|
-
zrb-1.9.
|
396
|
-
zrb-1.9.
|
397
|
-
zrb-1.9.
|
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,,
|
File without changes
|
File without changes
|