zrb 1.15.3__py3-none-any.whl → 1.21.29__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.
Potentially problematic release.
This version of zrb might be problematic. Click here for more details.
- zrb/__init__.py +2 -6
- zrb/attr/type.py +10 -7
- zrb/builtin/__init__.py +2 -0
- zrb/builtin/git.py +12 -1
- zrb/builtin/group.py +31 -15
- zrb/builtin/llm/attachment.py +40 -0
- zrb/builtin/llm/chat_completion.py +274 -0
- zrb/builtin/llm/chat_session.py +126 -167
- zrb/builtin/llm/chat_session_cmd.py +288 -0
- zrb/builtin/llm/chat_trigger.py +79 -0
- zrb/builtin/llm/history.py +4 -4
- zrb/builtin/llm/llm_ask.py +217 -135
- zrb/builtin/llm/tool/api.py +74 -70
- zrb/builtin/llm/tool/cli.py +35 -21
- zrb/builtin/llm/tool/code.py +55 -73
- zrb/builtin/llm/tool/file.py +278 -344
- zrb/builtin/llm/tool/note.py +84 -0
- zrb/builtin/llm/tool/rag.py +27 -34
- zrb/builtin/llm/tool/sub_agent.py +54 -41
- zrb/builtin/llm/tool/web.py +74 -98
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py +7 -7
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py +5 -5
- zrb/builtin/project/add/fastapp/fastapp_util.py +1 -1
- zrb/builtin/searxng/config/settings.yml +5671 -0
- zrb/builtin/searxng/start.py +21 -0
- zrb/builtin/shell/autocomplete/bash.py +4 -3
- zrb/builtin/shell/autocomplete/zsh.py +4 -3
- zrb/config/config.py +202 -27
- zrb/config/default_prompt/file_extractor_system_prompt.md +109 -9
- zrb/config/default_prompt/interactive_system_prompt.md +24 -30
- zrb/config/default_prompt/persona.md +1 -1
- zrb/config/default_prompt/repo_extractor_system_prompt.md +31 -31
- zrb/config/default_prompt/repo_summarizer_system_prompt.md +27 -8
- zrb/config/default_prompt/summarization_prompt.md +57 -16
- zrb/config/default_prompt/system_prompt.md +36 -30
- zrb/config/llm_config.py +119 -23
- zrb/config/llm_context/config.py +127 -90
- zrb/config/llm_context/config_parser.py +1 -7
- zrb/config/llm_context/workflow.py +81 -0
- zrb/config/llm_rate_limitter.py +100 -47
- zrb/context/any_shared_context.py +7 -1
- zrb/context/context.py +8 -2
- zrb/context/shared_context.py +3 -7
- zrb/group/any_group.py +3 -3
- zrb/group/group.py +3 -3
- zrb/input/any_input.py +5 -1
- zrb/input/base_input.py +18 -6
- zrb/input/option_input.py +13 -1
- zrb/input/text_input.py +7 -24
- zrb/runner/cli.py +21 -20
- zrb/runner/common_util.py +24 -19
- zrb/runner/web_route/task_input_api_route.py +5 -5
- zrb/runner/web_util/user.py +7 -3
- zrb/session/any_session.py +12 -6
- zrb/session/session.py +39 -18
- zrb/task/any_task.py +24 -3
- zrb/task/base/context.py +17 -9
- zrb/task/base/execution.py +15 -8
- zrb/task/base/lifecycle.py +8 -4
- zrb/task/base/monitoring.py +12 -7
- zrb/task/base_task.py +69 -5
- zrb/task/base_trigger.py +12 -5
- zrb/task/llm/agent.py +128 -167
- zrb/task/llm/agent_runner.py +152 -0
- zrb/task/llm/config.py +39 -20
- zrb/task/llm/conversation_history.py +110 -29
- zrb/task/llm/conversation_history_model.py +4 -179
- zrb/task/llm/default_workflow/coding/workflow.md +41 -0
- zrb/task/llm/default_workflow/copywriting/workflow.md +68 -0
- zrb/task/llm/default_workflow/git/workflow.md +118 -0
- zrb/task/llm/default_workflow/golang/workflow.md +128 -0
- zrb/task/llm/default_workflow/html-css/workflow.md +135 -0
- zrb/task/llm/default_workflow/java/workflow.md +146 -0
- zrb/task/llm/default_workflow/javascript/workflow.md +158 -0
- zrb/task/llm/default_workflow/python/workflow.md +160 -0
- zrb/task/llm/default_workflow/researching/workflow.md +153 -0
- zrb/task/llm/default_workflow/rust/workflow.md +162 -0
- zrb/task/llm/default_workflow/shell/workflow.md +299 -0
- zrb/task/llm/file_replacement.py +206 -0
- zrb/task/llm/file_tool_model.py +57 -0
- zrb/task/llm/history_processor.py +206 -0
- zrb/task/llm/history_summarization.py +2 -193
- zrb/task/llm/print_node.py +184 -64
- zrb/task/llm/prompt.py +175 -179
- zrb/task/llm/subagent_conversation_history.py +41 -0
- zrb/task/llm/tool_wrapper.py +226 -85
- zrb/task/llm/workflow.py +76 -0
- zrb/task/llm_task.py +109 -71
- zrb/task/make_task.py +2 -3
- zrb/task/rsync_task.py +25 -10
- zrb/task/scheduler.py +4 -4
- zrb/util/attr.py +54 -39
- zrb/util/cli/markdown.py +12 -0
- zrb/util/cli/text.py +30 -0
- zrb/util/file.py +12 -3
- zrb/util/git.py +2 -2
- zrb/util/{llm/prompt.py → markdown.py} +2 -3
- zrb/util/string/conversion.py +1 -1
- zrb/util/truncate.py +23 -0
- zrb/util/yaml.py +204 -0
- zrb/xcom/xcom.py +10 -0
- {zrb-1.15.3.dist-info → zrb-1.21.29.dist-info}/METADATA +38 -18
- {zrb-1.15.3.dist-info → zrb-1.21.29.dist-info}/RECORD +105 -79
- {zrb-1.15.3.dist-info → zrb-1.21.29.dist-info}/WHEEL +1 -1
- zrb/task/llm/default_workflow/coding.md +0 -24
- zrb/task/llm/default_workflow/copywriting.md +0 -17
- zrb/task/llm/default_workflow/researching.md +0 -18
- {zrb-1.15.3.dist-info → zrb-1.21.29.dist-info}/entry_points.txt +0 -0
|
@@ -1,38 +1,58 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: zrb
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.21.29
|
|
4
4
|
Summary: Your Automation Powerhouse
|
|
5
5
|
License: AGPL-3.0-or-later
|
|
6
6
|
Keywords: Automation,Task Runner,Code Generator,Monorepo,Low Code
|
|
7
7
|
Author: Go Frendi Gunawan
|
|
8
8
|
Author-email: gofrendiasgard@gmail.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.11.0,<4.0.0
|
|
10
10
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
16
|
Provides-Extra: all
|
|
17
|
+
Provides-Extra: anthropic
|
|
18
|
+
Provides-Extra: bedrock
|
|
19
|
+
Provides-Extra: cohere
|
|
20
|
+
Provides-Extra: google
|
|
21
|
+
Provides-Extra: groq
|
|
22
|
+
Provides-Extra: huggingface
|
|
23
|
+
Provides-Extra: mistral
|
|
17
24
|
Provides-Extra: playwright
|
|
18
25
|
Provides-Extra: rag
|
|
19
|
-
|
|
20
|
-
Requires-Dist:
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist:
|
|
26
|
+
Provides-Extra: vertexai
|
|
27
|
+
Requires-Dist: anthropic (>=0.70.0) ; extra == "anthropic" or extra == "all"
|
|
28
|
+
Requires-Dist: beautifulsoup4 (>=4.14.2,<5.0.0)
|
|
29
|
+
Requires-Dist: black (>=25.11.0,<26.0.0)
|
|
30
|
+
Requires-Dist: boto3 (>=1.40.14) ; extra == "bedrock"
|
|
31
|
+
Requires-Dist: chromadb (>=1.3.5,<2.0.0) ; extra == "rag" or extra == "all"
|
|
32
|
+
Requires-Dist: cohere (>=5.18.0) ; extra == "cohere" or extra == "all"
|
|
33
|
+
Requires-Dist: fastapi[standard] (>=0.123.9,<0.124.0)
|
|
34
|
+
Requires-Dist: google-auth (>=2.36.0) ; extra == "vertexai" or extra == "all"
|
|
35
|
+
Requires-Dist: google-genai (>=1.51.0) ; extra == "google" or extra == "all"
|
|
36
|
+
Requires-Dist: groq (>=0.25.0) ; extra == "groq" or extra == "all"
|
|
37
|
+
Requires-Dist: huggingface-hub[inference] (>=0.33.5,<1.0.0) ; extra == "huggingface"
|
|
38
|
+
Requires-Dist: isort (>=7.0.0,<8.0.0)
|
|
39
|
+
Requires-Dist: libcst (>=1.8.6,<2.0.0)
|
|
40
|
+
Requires-Dist: markdownify (>=1.2.2,<2.0.0)
|
|
41
|
+
Requires-Dist: mcp (>1.18.0)
|
|
42
|
+
Requires-Dist: mistralai (>=1.9.10) ; extra == "mistral"
|
|
43
|
+
Requires-Dist: openai (>=2.11.0)
|
|
44
|
+
Requires-Dist: pdfplumber (>=0.11.7,<0.12.0)
|
|
45
|
+
Requires-Dist: playwright (>=1.56.0,<2.0.0) ; extra == "playwright" or extra == "all"
|
|
46
|
+
Requires-Dist: prompt-toolkit (>=3)
|
|
29
47
|
Requires-Dist: psutil (>=7.0.0,<8.0.0)
|
|
30
|
-
Requires-Dist: pydantic-ai-slim
|
|
48
|
+
Requires-Dist: pydantic-ai-slim (>=1.32.0,<1.33.0)
|
|
31
49
|
Requires-Dist: pyjwt (>=2.10.1,<3.0.0)
|
|
32
50
|
Requires-Dist: python-dotenv (>=1.1.1,<2.0.0)
|
|
33
|
-
Requires-Dist: python-jose[cryptography] (>=3.
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
51
|
+
Requires-Dist: python-jose[cryptography] (>=3.5.0,<4.0.0)
|
|
52
|
+
Requires-Dist: pyyaml (>=6.0.3,<7.0.0)
|
|
53
|
+
Requires-Dist: requests (>=2.32.5,<3.0.0)
|
|
54
|
+
Requires-Dist: rich (>=13)
|
|
55
|
+
Requires-Dist: tiktoken (>=0.12.0,<0.13.0)
|
|
36
56
|
Requires-Dist: ulid-py (>=1.1.0,<2.0.0)
|
|
37
57
|
Project-URL: Documentation, https://github.com/state-alchemists/zrb
|
|
38
58
|
Project-URL: Homepage, https://github.com/state-alchemists/zrb
|
|
@@ -1,27 +1,32 @@
|
|
|
1
|
-
zrb/__init__.py,sha256=
|
|
1
|
+
zrb/__init__.py,sha256=qkCV2EnAGIgvsawBHYvKgPAp0zzPcikYSmbQXATLzg4,5060
|
|
2
2
|
zrb/__main__.py,sha256=9SXH9MK4PVyU9lkEyHxiIUABbcsV2wseP94HmlqTR4M,2657
|
|
3
3
|
zrb/attr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
zrb/attr/type.py,sha256=
|
|
5
|
-
zrb/builtin/__init__.py,sha256=
|
|
4
|
+
zrb/attr/type.py,sha256=eAsYk4aW8Pyi82KU5hfNpQuy6-FLsqcacSj0hJOGNnk,742
|
|
5
|
+
zrb/builtin/__init__.py,sha256=X_uDUEeu86MrYLehHEFiLFdbqrRXMvHECEeIJJkKWh4,1724
|
|
6
6
|
zrb/builtin/base64.py,sha256=UjaFttE2oRx0T7_RpKtKfgMtWfiQXfJBAJmA16ek8Ic,1507
|
|
7
|
-
zrb/builtin/git.py,sha256=
|
|
7
|
+
zrb/builtin/git.py,sha256=HWxCHW78HJ9SCiph4BMHFfrIpM4V8-bR2MmHLDaWEQM,5810
|
|
8
8
|
zrb/builtin/git_subtree.py,sha256=7BKwOkVTWDrR0DXXQ4iJyHqeR6sV5VYRt8y_rEB0EHg,3505
|
|
9
|
-
zrb/builtin/group.py,sha256=
|
|
9
|
+
zrb/builtin/group.py,sha256=W_IA_4414c8Wi8QazqcT6Gq6UftrKwy95yMF114EJtI,2677
|
|
10
10
|
zrb/builtin/http.py,sha256=L6RE73c65wWwG5iHFN-tpOhyh56KsrgVskDd3c3YXtk,4246
|
|
11
11
|
zrb/builtin/jwt.py,sha256=3M5uaQhJZbKQLjTUft1OwPz_JxtmK-xtkjxWjciOQho,2859
|
|
12
|
-
zrb/builtin/llm/
|
|
13
|
-
zrb/builtin/llm/
|
|
12
|
+
zrb/builtin/llm/attachment.py,sha256=UwhOGtZY9Px9aebsKfTTw2_ZIpbsqx0XgoAonk6Ewkc,1344
|
|
13
|
+
zrb/builtin/llm/chat_completion.py,sha256=ybOo-LZaoUjhEBd1N8R-ZpN7MCV88VHGG9Phs3yLi1w,11060
|
|
14
|
+
zrb/builtin/llm/chat_session.py,sha256=TmXL7IkVT22blgWqG625qpr2_BnDMIm7ERYbR61BL4Q,9154
|
|
15
|
+
zrb/builtin/llm/chat_session_cmd.py,sha256=lGiN-YNtv957wYuuF_mXV0opbRN61U9pyxVVq-_Gwv8,10842
|
|
16
|
+
zrb/builtin/llm/chat_trigger.py,sha256=TZ4u5oQ4W7RGJB2yNrmGRfSEaBbMj4SXEGZHJrYjiJo,2672
|
|
17
|
+
zrb/builtin/llm/history.py,sha256=qNRYq6SlJH5iuzdra_FOJxevWXCDh5YMvN2qPNLjI8I,3099
|
|
14
18
|
zrb/builtin/llm/input.py,sha256=Nw-26uTWp2QhUgKJcP_IMHmtk-b542CCSQ_vCOjhvhM,877
|
|
15
|
-
zrb/builtin/llm/llm_ask.py,sha256=
|
|
19
|
+
zrb/builtin/llm/llm_ask.py,sha256=6fUbCFjgjFiTVf-88WJZ1RD5wgOzmsVEpD3dR16Jl_8,8598
|
|
16
20
|
zrb/builtin/llm/previous-session.js,sha256=xMKZvJoAbrwiyHS0OoPrWuaKxWYLoyR5sguePIoCjTY,816
|
|
17
21
|
zrb/builtin/llm/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
zrb/builtin/llm/tool/api.py,sha256=
|
|
19
|
-
zrb/builtin/llm/tool/cli.py,sha256=
|
|
20
|
-
zrb/builtin/llm/tool/code.py,sha256=
|
|
21
|
-
zrb/builtin/llm/tool/file.py,sha256=
|
|
22
|
-
zrb/builtin/llm/tool/
|
|
23
|
-
zrb/builtin/llm/tool/
|
|
24
|
-
zrb/builtin/llm/tool/
|
|
22
|
+
zrb/builtin/llm/tool/api.py,sha256=ItGJLr_1vhmLcitfIKeVDrnJEWdsyqucDnQ7enIC8fQ,2394
|
|
23
|
+
zrb/builtin/llm/tool/cli.py,sha256=iwQtiyPgd5RibUHEtO38c4KS6D4_oCdLqv_bZZqM160,1257
|
|
24
|
+
zrb/builtin/llm/tool/code.py,sha256=GdMKCc3Z3bllly0tgtUXMoWdIA9WDjyNcoKftNksJTk,7699
|
|
25
|
+
zrb/builtin/llm/tool/file.py,sha256=ktGWwGMl1nYtHFw1go10kuvKCbrtkjPkQ4bvDgWM5iY,19294
|
|
26
|
+
zrb/builtin/llm/tool/note.py,sha256=HD7qRldvZUpfHW0i4Dev6UZba5j5r4Z3CugB5umL3Wk,2566
|
|
27
|
+
zrb/builtin/llm/tool/rag.py,sha256=lmoA42IWHcBOWTsWzYGklLs1YoiEldvu_Bi5bp6gbts,9439
|
|
28
|
+
zrb/builtin/llm/tool/sub_agent.py,sha256=UNgsvZvSQ1b5ybB0nRzTiFCJpZG3g2RLj_nzjRZzXMY,5808
|
|
29
|
+
zrb/builtin/llm/tool/web.py,sha256=x7iHaGRr71yU3qjfKsoyHvht5SB_S3kWPXX2qliyy6k,6278
|
|
25
30
|
zrb/builtin/md5.py,sha256=690RV2LbW7wQeTFxY-lmmqTSVEEZv3XZbjEUW1Q3XpE,1480
|
|
26
31
|
zrb/builtin/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
32
|
zrb/builtin/project/add/fastapp/fastapp_input.py,sha256=MKlWR_LxWhM_DcULCtLfL_IjTxpDnDBkn9KIqNmajFs,310
|
|
@@ -35,7 +40,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_col
|
|
|
35
40
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_util.py,sha256=GycuEtcvO02OwqULfP-qRxnAnJDDhWx_hdRSmbfx5bo,10952
|
|
36
41
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/config.py,sha256=uviB4q2iZjoU9_fA1O4VrjpuVAqx2gj5hjospJ0Xzeg,885
|
|
37
42
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_task.py,sha256=W0ziCIhSwUbu8vBABEcTvLrTAegJmRbqui6TzG1xqlo,11183
|
|
38
|
-
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py,sha256=
|
|
43
|
+
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py,sha256=zsQD5uQZ0qGfqcK08Wgu21QGcPLK3eYHBU8DLkk-thg,16711
|
|
39
44
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/gateway/view/content/my-module/my-entity.html,sha256=hcF-HZ_7vDyod-Rn_7ODqCjsNOwHvH1ICZC0AMzis5s,13338
|
|
40
45
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/my_module/service/my_entity/my_entity_service.py,sha256=PgwTsHMHRiFS7JQeAe6wWmIHk6s-OfIybx_mJfuT_G4,3918
|
|
41
46
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/my_module/service/my_entity/my_entity_service_factory.py,sha256=lnhhpc_AflWnCQbLkYORrshiqIA5wy4SdxDuUxmn7Ts,372
|
|
@@ -54,7 +59,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/format_task.py
|
|
|
54
59
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/group.py,sha256=S0sKnnABSGy3YzaExH40xJjm4UsEX6AyDE1u94ewk6A,648
|
|
55
60
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/input.py,sha256=_LagLs2R9Eao4xJ1d2i_Yj1ELu7uZGNJnK90ruvY0O8,1511
|
|
56
61
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_task.py,sha256=_1sJd91bViSfEbpxNgqeCE7gBHP7yH9i7uJbPu9OvtY,4058
|
|
57
|
-
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py,sha256=
|
|
62
|
+
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py,sha256=E-dWVHzFIGNu_c-AfbwWuO2Um3Ibp9DZtflPWkE7F2c,8507
|
|
58
63
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/gateway/subroute/my_module.py,sha256=_5EgmEeATL5ZSX5MSJixkDgRQKGNTPG6watEuzv3eQI,418
|
|
59
64
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/alembic.ini,sha256=mgQyBAIwdkZZJWLu_FQWPx1FkyaARCNp6-rLqSVvMbA,3723
|
|
60
65
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/client/my_module_api_client.py,sha256=7Ffk0eF4HX1RLfmacqHvuhNlfWkWAtunUBdF_N-Gq38,186
|
|
@@ -186,13 +191,15 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_health_an
|
|
|
186
191
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_homepage.py,sha256=NnhAjs8JParlmTKynRb-l65h8FvEG_Tap5m8kDYvxOM,618
|
|
187
192
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_not_found_error.py,sha256=SBqFRgGUldUtIz-uMf9a5DeWDPFeKbhvnvwiYr-jjns,502
|
|
188
193
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test.sh,sha256=QIwe6InrlEkmxdtj6NTO9JozeECYN0O4vx-x-qid6go,148
|
|
189
|
-
zrb/builtin/project/add/fastapp/fastapp_util.py,sha256=
|
|
194
|
+
zrb/builtin/project/add/fastapp/fastapp_util.py,sha256=YXLuNw_9wtk8jyRvBte-m5drizPpUVAyTLFZ-BvkqUo,1537
|
|
190
195
|
zrb/builtin/project/create/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
196
|
zrb/builtin/project/create/project-template/README.md,sha256=BHeWF_txdTDzKewWdWfGhO3YOTiW8E3YwTMnd0T1LVA,39
|
|
192
197
|
zrb/builtin/project/create/project-template/zrb_init.py,sha256=kY0x5MrkIVl3l1GtN2ROrYGNpsfN2dgRT84LCcSrGUs,44
|
|
193
198
|
zrb/builtin/project/create/project_task.py,sha256=az-yd2FRDmGZ_7qxslmW11ryTeI3yttRmXtlFnZhF00,1132
|
|
194
199
|
zrb/builtin/python.py,sha256=e-yyVWovwlxCBLyXGsd9Ek3IAL_X-Q_hpNNOPoRjOgk,349
|
|
195
200
|
zrb/builtin/random.py,sha256=p9kCvosSiSJyuGQrlrXuIQT8TRDGxXhfiUbsm3GFPd0,1793
|
|
201
|
+
zrb/builtin/searxng/config/settings.yml,sha256=dUuIebTYSFYYnM0HG3ItT9-DZWf0RJPSdWzJrXQvc44,140353
|
|
202
|
+
zrb/builtin/searxng/start.py,sha256=ASvALrUR8MoQ202qgZ3jLR8W_2drtAZpxTCOqa5IMi8,679
|
|
196
203
|
zrb/builtin/setup/asdf/asdf.py,sha256=_k60yiRiKbRPh_eJVI4Nx_ZmmClOlOb9G0b0KhSGo1M,2444
|
|
197
204
|
zrb/builtin/setup/asdf/asdf_helper.py,sha256=6jARtyIAE1H82HKVQ84D25RrMAsAip_gD28X9ZlaTCk,1205
|
|
198
205
|
zrb/builtin/setup/common_input.py,sha256=zIVVsZsNlSoV2Fw8kyt7g5B8XAU8cWBsT865NPoddwo,848
|
|
@@ -206,9 +213,9 @@ zrb/builtin/setup/zsh/zsh_config.sh,sha256=SRkcXvVT3tdfS1UDT0-dSj2PKXPLohhyakY6t
|
|
|
206
213
|
zrb/builtin/setup/zsh/zsh_helper.py,sha256=1zF1FH0oEPVAVhMA20tsdk1H0RPMCkLusYX8twsTbGI,393
|
|
207
214
|
zrb/builtin/shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
215
|
zrb/builtin/shell/autocomplete/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
|
-
zrb/builtin/shell/autocomplete/bash.py,sha256
|
|
216
|
+
zrb/builtin/shell/autocomplete/bash.py,sha256=KBpsbWqC1nqlOvRHivHvifgV1xN6OtqbFw4PljS8k3s,1257
|
|
210
217
|
zrb/builtin/shell/autocomplete/subcmd.py,sha256=WZI6cGWJcn80zSyxOHG7sCMO3Ucix3mZf4xm_xyB_Y0,606
|
|
211
|
-
zrb/builtin/shell/autocomplete/zsh.py,sha256=
|
|
218
|
+
zrb/builtin/shell/autocomplete/zsh.py,sha256=uPMspE3YgT1O6PBjF1Jvoul9RiNJJ6Ay2QZ-TzxG1uI,1098
|
|
212
219
|
zrb/builtin/todo.py,sha256=EIqz0nmB1tW4OhWZbTv8y4CvppQOG6u8-Esw5__ThPY,11862
|
|
213
220
|
zrb/builtin/uuid.py,sha256=lIdhSGzPQ1rixRzMXxQDcgFgV7W-gUduHIudZXlzZzg,5393
|
|
214
221
|
zrb/callback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -217,27 +224,28 @@ zrb/callback/callback.py,sha256=PFhCqzfxdk6IAthmXcZ13DokT62xtBzJr_ciLw6I8Zg,4030
|
|
|
217
224
|
zrb/cmd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
225
|
zrb/cmd/cmd_result.py,sha256=L8bQJzWCpcYexIxHBNsXj2pT3BtLmWex0iJSMkvimOA,597
|
|
219
226
|
zrb/cmd/cmd_val.py,sha256=7Doowyg6BK3ISSGBLt-PmlhzaEkBjWWm51cED6fAUOQ,1014
|
|
220
|
-
zrb/config/config.py,sha256=
|
|
221
|
-
zrb/config/default_prompt/file_extractor_system_prompt.md,sha256=
|
|
222
|
-
zrb/config/default_prompt/interactive_system_prompt.md,sha256=
|
|
223
|
-
zrb/config/default_prompt/persona.md,sha256=
|
|
224
|
-
zrb/config/default_prompt/repo_extractor_system_prompt.md,sha256=
|
|
225
|
-
zrb/config/default_prompt/repo_summarizer_system_prompt.md,sha256
|
|
226
|
-
zrb/config/default_prompt/summarization_prompt.md,sha256=
|
|
227
|
-
zrb/config/default_prompt/system_prompt.md,sha256=
|
|
228
|
-
zrb/config/llm_config.py,sha256=
|
|
229
|
-
zrb/config/llm_context/config.py,sha256=
|
|
230
|
-
zrb/config/llm_context/config_parser.py,sha256=
|
|
231
|
-
zrb/config/
|
|
227
|
+
zrb/config/config.py,sha256=bqC_B9OpofNWJkWA11HvtWD-Ut0VeKseIso5OACU6v4,19889
|
|
228
|
+
zrb/config/default_prompt/file_extractor_system_prompt.md,sha256=cVqhI016-fKa8PKz2kIxQAC0hPExgMT2ks-rVlz4K60,3789
|
|
229
|
+
zrb/config/default_prompt/interactive_system_prompt.md,sha256=UKQBWrihzIHHipIzK4MrdE0ivxBd6JItJ6_eF4Fdr1E,2301
|
|
230
|
+
zrb/config/default_prompt/persona.md,sha256=GfUJ4-Mlf_Bm1YTzxFNkPkdVbAi06ZDVYh-iIma3NOs,253
|
|
231
|
+
zrb/config/default_prompt/repo_extractor_system_prompt.md,sha256=lmfMMc9BLLATHAVMmSEeXr7xTeiF4FWv_AWYedgcbDE,3786
|
|
232
|
+
zrb/config/default_prompt/repo_summarizer_system_prompt.md,sha256=-T_baTblam2XlW99e72jfgsrIBTjpABMBXRFI_7L6RA,1987
|
|
233
|
+
zrb/config/default_prompt/summarization_prompt.md,sha256=0FI7GO9wkOOP7I_CrJPECtrqDHE_SMNr9aKKHC1GtPI,3633
|
|
234
|
+
zrb/config/default_prompt/system_prompt.md,sha256=uyB50RrZBnxGXvBP32QVgdj40vnPECMbP56v48cP2pg,2635
|
|
235
|
+
zrb/config/llm_config.py,sha256=Nt7P0Q6bRpLbGi3IZ1WPeOxUsUUL438_8ufpML1WN28,12798
|
|
236
|
+
zrb/config/llm_context/config.py,sha256=WdqoFxc-PSwNh9aeTWhHMNiQZotbdQ8WaVr3YcezGNo,6487
|
|
237
|
+
zrb/config/llm_context/config_parser.py,sha256=PLfLfMgxPBj7Ryy-37gCZIHrweo1XiFQGnUqjvKXU_Y,1465
|
|
238
|
+
zrb/config/llm_context/workflow.py,sha256=cHkUYBk2Mc35RBuma7Vn3QCNaHd95Ajqr1N4L43FFZs,2681
|
|
239
|
+
zrb/config/llm_rate_limitter.py,sha256=sNi_fttwRKjMTCn1pBoqx-p2uI4wHSl8CAAP8poe94g,7012
|
|
232
240
|
zrb/config/web_auth_config.py,sha256=_PXatQTYh2mX9H3HSYSQKp13zm1RlLyVIoeIr6KYMQ8,6279
|
|
233
241
|
zrb/content_transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
234
242
|
zrb/content_transformer/any_content_transformer.py,sha256=v8ZUbcix1GGeDQwB6OKX_1TjpY__ksxWVeqibwa_iZA,850
|
|
235
243
|
zrb/content_transformer/content_transformer.py,sha256=STl77wW-I69QaGzCXjvkppngYFLufow8ybPLSyAvlHs,2404
|
|
236
244
|
zrb/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
237
245
|
zrb/context/any_context.py,sha256=2hgVKbbDwmwrEl1h1L1FaTUjuUYaDd_b7YRGkaorW6Q,6362
|
|
238
|
-
zrb/context/any_shared_context.py,sha256=
|
|
239
|
-
zrb/context/context.py,sha256=
|
|
240
|
-
zrb/context/shared_context.py,sha256=
|
|
246
|
+
zrb/context/any_shared_context.py,sha256=PlB6mPOe98LRGUg9SCY1miy3ObcJDNhMWVNmE7zL9l0,2038
|
|
247
|
+
zrb/context/context.py,sha256=Kg5twyOmrehdcqiRdoqoQrprkizAW3WTURp3Eb0JWQg,7088
|
|
248
|
+
zrb/context/shared_context.py,sha256=vtp181CJc5qm_M7ss2DBSsmw9QsVSI01yQUywQPsRH4,2968
|
|
241
249
|
zrb/dot_dict/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
242
250
|
zrb/dot_dict/dot_dict.py,sha256=ubw_x8I7AOJ59xxtFVJ00VGmq_IYdZP3mUhNlO4nEK0,556
|
|
243
251
|
zrb/env/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -246,21 +254,21 @@ zrb/env/env.py,sha256=zT-xj0l5G_lp_ginV_InuBr5qTqZMcGaMKE_p5FoqlU,1061
|
|
|
246
254
|
zrb/env/env_file.py,sha256=dccsR_cjXp1Q_qz692YPaZSny3Xa049V5NAZ-WLDDEQ,746
|
|
247
255
|
zrb/env/env_map.py,sha256=CKMmXUbuvf6h2rgFWj-WvW_xLZNgG3TtWdfrqHDe4qk,1253
|
|
248
256
|
zrb/group/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
|
-
zrb/group/any_group.py,sha256=
|
|
250
|
-
zrb/group/group.py,sha256=
|
|
257
|
+
zrb/group/any_group.py,sha256=jOdjojUriyHitDvp3jW7W2BDhqPhHTcXWZOAvUDGFqA,1267
|
|
258
|
+
zrb/group/group.py,sha256=jt6GMxe3_9j49s3TfEDqA-EwzXKhVaW_npQ1gmyHre8,4298
|
|
251
259
|
zrb/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
-
zrb/input/any_input.py,sha256=
|
|
253
|
-
zrb/input/base_input.py,sha256=
|
|
260
|
+
zrb/input/any_input.py,sha256=3EQgg2Qk_2t2Ege_4pHV2G95tV3XAIThLLuFZ6uV6oM,1051
|
|
261
|
+
zrb/input/base_input.py,sha256=HCTxBZwnK-gP-F7XQGDbyyZHvwYR0fwNICzqVUw5Cg8,4169
|
|
254
262
|
zrb/input/bool_input.py,sha256=9ir8aTm8zaufrJ84_EerC5vOjyn4hHZ3BiLzFqPgPFM,1839
|
|
255
263
|
zrb/input/float_input.py,sha256=8G9lJKLlb_Upk9m5pBF9JwqlAAiYJLrbIItLnyzPxpg,1475
|
|
256
264
|
zrb/input/int_input.py,sha256=UhxCFYlZdJcgUSGGEkz301zOgRVpK0KDG_IxxWpQfMU,1457
|
|
257
|
-
zrb/input/option_input.py,sha256=
|
|
265
|
+
zrb/input/option_input.py,sha256=pG-7R5QboXRLyb4E63PXIUnhs5fHu2RCkGLBue46mmU,2687
|
|
258
266
|
zrb/input/password_input.py,sha256=szBojWxSP9QJecgsgA87OIYwQrY2AQ3USIKdDZY6snU,1465
|
|
259
267
|
zrb/input/str_input.py,sha256=NevZHX9rf1g8eMatPyy-kUX3DglrVAQpzvVpKAzf7bA,81
|
|
260
|
-
zrb/input/text_input.py,sha256=
|
|
268
|
+
zrb/input/text_input.py,sha256=9vpXJt7ASa_Gq2zFbVWT1p-PBjYf6DpyXfuhIH-rJgs,2969
|
|
261
269
|
zrb/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
262
|
-
zrb/runner/cli.py,sha256=
|
|
263
|
-
zrb/runner/common_util.py,sha256=
|
|
270
|
+
zrb/runner/cli.py,sha256=E5GGNJjCOBpFbhgnMM_iE1TVYhxMNDJKA6WxCRETTmA,6951
|
|
271
|
+
zrb/runner/common_util.py,sha256=yIJm9ivM7hvJ4Kb4Nt5RRE7oqAlt9EN89w6JDGyLkFE,1570
|
|
264
272
|
zrb/runner/web_app.py,sha256=n8iXtQ5DGIfRcFsHdBafm9VJisVSDD159XFPpEXQTN0,2796
|
|
265
273
|
zrb/runner/web_route/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
274
|
zrb/runner/web_route/docs_route.py,sha256=Y8zTROzIOfmJuU_E9KZljdjgkd65DcvLeX3k0xO-o_k,550
|
|
@@ -315,7 +323,7 @@ zrb/runner/web_route/static/resources/session/current-session.js,sha256=tzUdK7qJ
|
|
|
315
323
|
zrb/runner/web_route/static/resources/session/event.js,sha256=X5OlSHefK0SDB9VkFCRyBKE_Pb7mqM319mW9jRGoDOk,4716
|
|
316
324
|
zrb/runner/web_route/static/resources/session/past-session.js,sha256=RwGJYKSp75K8NZ-iZP58XppWgdzkiKFaiC5wgcMLxDo,5470
|
|
317
325
|
zrb/runner/web_route/static/static_route.py,sha256=QPs5XW4O_8CuzG0Wy4sHh5wRcLbU63CLDI4YNqkUxHA,1555
|
|
318
|
-
zrb/runner/web_route/task_input_api_route.py,sha256=
|
|
326
|
+
zrb/runner/web_route/task_input_api_route.py,sha256=1uTI9efQNXJ_S9jGWSudQFIyGSkINSLLYzSWCMcOtkc,1795
|
|
319
327
|
zrb/runner/web_route/task_session_api_route.py,sha256=U9fPOh_nmAzsmRnS5xe713KFUU15n0IkbbzU_Eg8YGI,6181
|
|
320
328
|
zrb/runner/web_schema/session.py,sha256=NwbuS2Sv-CXO52nU-EZv8OMlD4vgCQWNeLC_dT0FK7I,92
|
|
321
329
|
zrb/runner/web_schema/token.py,sha256=Y7XCPS4WzrxslTDtHeLcPTTUpmWhPOkRcl4b99zrC7c,185
|
|
@@ -323,10 +331,10 @@ zrb/runner/web_schema/user.py,sha256=Kp10amg4i-f8Y-4czogv1YN7rwy0HdbePFiuovYu1ts
|
|
|
323
331
|
zrb/runner/web_util/cookie.py,sha256=O5vfZfeZOBL6ECvT7WqD4LihrsXO6okJLBUp6b7RMj0,1085
|
|
324
332
|
zrb/runner/web_util/html.py,sha256=TuUHjX3eKCBzoa7TYdMt8dfWWy06idauyCaG66X4Ygc,1838
|
|
325
333
|
zrb/runner/web_util/token.py,sha256=uaQXSZ6mptiph1a_LOMdYtPYdcyOk3ygz5ZoLGOPkhE,2687
|
|
326
|
-
zrb/runner/web_util/user.py,sha256=
|
|
334
|
+
zrb/runner/web_util/user.py,sha256=1m9apTJ5s_kCFv0B5GSc4-1P4Rjr4dH5oVNetS6Gz9Y,2116
|
|
327
335
|
zrb/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
328
|
-
zrb/session/any_session.py,sha256=
|
|
329
|
-
zrb/session/session.py,sha256=
|
|
336
|
+
zrb/session/any_session.py,sha256=zEc_9xbLUcqu4WG2NScvtDMtnb4vdUmjBaOm_MO_Cz4,5381
|
|
337
|
+
zrb/session/session.py,sha256=_Of9kX4khDB6csBvXcmVP3s2Mf9vKrIiT3fISwO4aTk,11118
|
|
330
338
|
zrb/session_state_log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
339
|
zrb/session_state_log/session_state_log.py,sha256=VVghDMU72PbrvnzQ7MJuc-KTJ5P5fX0FYuCh3Rlwd9M,709
|
|
332
340
|
zrb/session_state_logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -334,46 +342,62 @@ zrb/session_state_logger/any_session_state_logger.py,sha256=T_-aJv63HwoTeiDOmXKH
|
|
|
334
342
|
zrb/session_state_logger/file_session_state_logger.py,sha256=NMyj_g2ImQc6ZRM9f35EpA-CM1UO-ZgoDnPkN1DSi9U,3915
|
|
335
343
|
zrb/session_state_logger/session_state_logger_factory.py,sha256=_oT1UIqm25nMwKhsUvXehnCdDvNqxCyuN8GLdv2D_U4,188
|
|
336
344
|
zrb/task/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
|
-
zrb/task/any_task.py,sha256=
|
|
345
|
+
zrb/task/any_task.py,sha256=AXcBLnDWrJsiq_VihrXeNNMsQZuHzc5k6j-mS60qbyM,6443
|
|
338
346
|
zrb/task/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
|
-
zrb/task/base/context.py,sha256=
|
|
340
|
-
zrb/task/base/execution.py,sha256=
|
|
341
|
-
zrb/task/base/lifecycle.py,sha256=
|
|
342
|
-
zrb/task/base/monitoring.py,sha256=
|
|
347
|
+
zrb/task/base/context.py,sha256=ptz9-Am1s4yq6EHZUpnSrB0Ps3k7BgyakVbE-ZpiBzc,3923
|
|
348
|
+
zrb/task/base/execution.py,sha256=ixWSk0byHDbBvT7lxh94eD8pmnbI6LRTIIkMmh0zing,11265
|
|
349
|
+
zrb/task/base/lifecycle.py,sha256=c2v977pUm7S4EqrTMcUJKhnYOWugACVwU3qORDKiLXQ,7639
|
|
350
|
+
zrb/task/base/monitoring.py,sha256=w4_q3e7dwcJureUfcJr7vhpwQ5RCikr0VHGlGA_crrM,5815
|
|
343
351
|
zrb/task/base/operators.py,sha256=uAMFqpZJsPnCrojgOl1FUDXTS15mtOa_IqiAXltyYRU,1576
|
|
344
|
-
zrb/task/base_task.py,sha256=
|
|
345
|
-
zrb/task/base_trigger.py,sha256=
|
|
352
|
+
zrb/task/base_task.py,sha256=upwuqAfwNDXTYM-uRDJhgZqqqARI03T6ksUbFHHLEH0,13321
|
|
353
|
+
zrb/task/base_trigger.py,sha256=nbhFY3QCLNZkXxRorjyC4k2sEJumzR8YCNjOhFBSjJ8,7165
|
|
346
354
|
zrb/task/cmd_task.py,sha256=myM8WZm6NrUD-Wv0Vb5sTOrutrAVZLt5LVsSBKwX6SM,10860
|
|
347
355
|
zrb/task/http_check.py,sha256=Gf5rOB2Se2EdizuN9rp65HpGmfZkGc-clIAlHmPVehs,2565
|
|
348
356
|
zrb/task/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
|
-
zrb/task/llm/agent.py,sha256=
|
|
350
|
-
zrb/task/llm/
|
|
351
|
-
zrb/task/llm/
|
|
352
|
-
zrb/task/llm/
|
|
353
|
-
zrb/task/llm/
|
|
354
|
-
zrb/task/llm/default_workflow/
|
|
355
|
-
zrb/task/llm/default_workflow/
|
|
357
|
+
zrb/task/llm/agent.py,sha256=FrwqAt2SKm78C1fXAPJrXOZfd8iu-13n_R3tVetJlfI,8333
|
|
358
|
+
zrb/task/llm/agent_runner.py,sha256=7VmLnhtF1oWfuV6xMCIwd4xPewpDXgfIPEJRoX9boiA,5202
|
|
359
|
+
zrb/task/llm/config.py,sha256=wCcwxcaW2dgjxsjrXnG1inyKpQWs37kXJ-L_CO-KJ5s,4486
|
|
360
|
+
zrb/task/llm/conversation_history.py,sha256=Fye5oryjdDN_JGBkxoPGUsjuU0FTHis1Ue6nTovo1Zo,7112
|
|
361
|
+
zrb/task/llm/conversation_history_model.py,sha256=2ScAuu5ne6X6F0bXm-21ckEoqcDlWDeuD5L4DPPdz-Q,2629
|
|
362
|
+
zrb/task/llm/default_workflow/coding/workflow.md,sha256=tGiZuR5SYtLvvILJ_AkHaWdvXn5wvLd3RqNyjnHq9NE,5474
|
|
363
|
+
zrb/task/llm/default_workflow/copywriting/workflow.md,sha256=CL9083lrMZHa-J6GlbyGxgRxa8CqJJQFMw_I7WFK13w,3182
|
|
364
|
+
zrb/task/llm/default_workflow/git/workflow.md,sha256=BBkIChqLkex-irkaWH9lQlQkVHed1SM28nfgx8K3yZA,4263
|
|
365
|
+
zrb/task/llm/default_workflow/golang/workflow.md,sha256=yezo6bCLjTluJLmSl_OCk9OsJ0eemqWiN1xBL4ioung,4929
|
|
366
|
+
zrb/task/llm/default_workflow/html-css/workflow.md,sha256=oSL27Zx4jsVXAzxCaEkJ27QkJTSaImryb32_oCJmdA4,5773
|
|
367
|
+
zrb/task/llm/default_workflow/java/workflow.md,sha256=w6JLjeC5RWRl0-rA5HXu5Cj96jj37tDfEzIq-dOcCzk,5968
|
|
368
|
+
zrb/task/llm/default_workflow/javascript/workflow.md,sha256=djE7oKLefHIW8iDXEBUPVWp8VkiGe59J555UgWUIk78,6857
|
|
369
|
+
zrb/task/llm/default_workflow/python/workflow.md,sha256=iGYOkZ0eGLTjBhs2NYN4JMmsCGJFJolQ0f08q4k_0uA,6630
|
|
370
|
+
zrb/task/llm/default_workflow/researching/workflow.md,sha256=DpMCJF1EuZTsDc1yFgUI1d3jf_7zHTMjvsApov4RyDQ,6765
|
|
371
|
+
zrb/task/llm/default_workflow/rust/workflow.md,sha256=fm1ISFxgqP_MV20jGBAZ62d-zU-tRuF7VbMDD5byZ2c,6537
|
|
372
|
+
zrb/task/llm/default_workflow/shell/workflow.md,sha256=_5aW5DEjOauiUANNWgbfEFmH5MdjCHagh9a56T1Zykw,7515
|
|
356
373
|
zrb/task/llm/error.py,sha256=QR-nIohS6pBpC_16cWR-fw7Mevo1sNYAiXMBsh_CJDE,4157
|
|
357
|
-
zrb/task/llm/
|
|
358
|
-
zrb/task/llm/
|
|
359
|
-
zrb/task/llm/
|
|
360
|
-
zrb/task/llm/
|
|
374
|
+
zrb/task/llm/file_replacement.py,sha256=cUgtcfH9OlHzPwdZhSzWVNs7ZO0YYh0ajxqMwfIbvD0,7193
|
|
375
|
+
zrb/task/llm/file_tool_model.py,sha256=bNH-nrHamXtc_sUiPZ1TYI6CqefPIXj3tP4FbURiU1Y,1721
|
|
376
|
+
zrb/task/llm/history_processor.py,sha256=QQHoE2RNz8w75li-RC4PFgCelCLhVv4ObOiSQQ8JxDM,7684
|
|
377
|
+
zrb/task/llm/history_summarization.py,sha256=YqLm9Q5xzFVTL5XwnWu3XwaMgSxKskDFvoi2MIThRB0,927
|
|
378
|
+
zrb/task/llm/print_node.py,sha256=d7OMOJ2kj6iXZS2cC5cyuDF1QDFsA9FxDGX-xfirvxs,8674
|
|
379
|
+
zrb/task/llm/prompt.py,sha256=jlFNWa1IMCYNQh9Ccq9DB1dq9964IOQJ5jNSC9rMpkw,11366
|
|
380
|
+
zrb/task/llm/subagent_conversation_history.py,sha256=y8UbKF2GpjB-r1bc2xCpzepriVEq0wfdyFuHOwfpPfk,1647
|
|
381
|
+
zrb/task/llm/tool_wrapper.py,sha256=Ka1HaOwenioUDyZyBZba5rqxNGjqtyP0fv708SAmRV8,13704
|
|
361
382
|
zrb/task/llm/typing.py,sha256=c8VAuPBw_4A3DxfYdydkgedaP-LU61W9_wj3m3CAX1E,58
|
|
362
|
-
zrb/task/
|
|
363
|
-
zrb/task/
|
|
364
|
-
zrb/task/
|
|
383
|
+
zrb/task/llm/workflow.py,sha256=eGpUXoIKgbPFPZJ7hHy_HkGYnGWWx9-B9FNjjNm3_8I,2968
|
|
384
|
+
zrb/task/llm_task.py,sha256=8tNtyufjsWUu5jJQEo9-dpl1N6fycA1ugllaKgLvOao,16571
|
|
385
|
+
zrb/task/make_task.py,sha256=rWay-Wz2nAOr4mhMcJZuuehuWULfSBmZm5XcDN4ZN3c,2198
|
|
386
|
+
zrb/task/rsync_task.py,sha256=0M5g2E_b28uCNLXSq2vTsDP2TdGpHfhNn1sDv4MhzNw,7089
|
|
365
387
|
zrb/task/scaffolder.py,sha256=rME18w1HJUHXgi9eTYXx_T2G4JdqDYzBoNOkdOOo5-o,6806
|
|
366
|
-
zrb/task/scheduler.py,sha256=
|
|
388
|
+
zrb/task/scheduler.py,sha256=iC1BmXsf_59B-03Uqiu_yO4hsrAMDXVpedWr8w7R-iM,3127
|
|
367
389
|
zrb/task/task.py,sha256=KCrCaWYOQQvv1RJsYtHDeo9RBFmlXQ28oKyEFU4Q7pA,73
|
|
368
390
|
zrb/task/tcp_check.py,sha256=P_QgGqwd5dXDaud3oQRxe_WuxyxG4s7CTY2wDk9Qcu0,2511
|
|
369
391
|
zrb/task_status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
370
392
|
zrb/task_status/task_status.py,sha256=blZ8dxg9g_8MuViq-t7yJRLoE7yGUf5srgHf-PCsXNc,3069
|
|
371
393
|
zrb/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
372
|
-
zrb/util/attr.py,sha256=
|
|
394
|
+
zrb/util/attr.py,sha256=3-arwThz8pOnLf4PRA_D-5Pue9xKVEmLtESsIXHCBSE,5523
|
|
373
395
|
zrb/util/callable.py,sha256=b6OFXbCXp2twow3wh2E_h5hNHLs2pXaLfGQz4iVyiQc,771
|
|
374
396
|
zrb/util/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
397
|
+
zrb/util/cli/markdown.py,sha256=Uhuw8XR-jAG9AG3oNK8VHJpYOdU40Q_8yVN74uu0RJ8,384
|
|
375
398
|
zrb/util/cli/style.py,sha256=D_548KG1gXEirQGdkAVTc81vBdCeInXtnG1gV1yabBA,6655
|
|
376
399
|
zrb/util/cli/subcommand.py,sha256=umTZIlrL-9g-qc_eRRgdaQgK-whvXK1roFfvnbuY7NQ,1753
|
|
400
|
+
zrb/util/cli/text.py,sha256=kNg71NAdT6dAMoe0YN9DgWqV7udh8GlQr6ndXR_6NLA,968
|
|
377
401
|
zrb/util/cmd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
378
402
|
zrb/util/cmd/command.py,sha256=WpEMWVL9hBsxptvDHmRR93_cJ2zP05BJ2h9-tP93M1Y,7473
|
|
379
403
|
zrb/util/cmd/remote.py,sha256=NGQq2_IrUMDoZz3qmcgtnNYVGjMHaBKQpZxImf0yfXA,1296
|
|
@@ -388,25 +412,27 @@ zrb/util/codemod/modify_function_call.py,sha256=wbyoRRsM4V9fPYkT5kHN0zpBetpRDq2S
|
|
|
388
412
|
zrb/util/codemod/modify_method.py,sha256=5fioXjqNQmrf4CV2qlTZHpViF9PMnNer4FvuKam7byo,6344
|
|
389
413
|
zrb/util/codemod/modify_module.py,sha256=2mzi_NxJ-kNFo5G0U_Rqb3JoYQl1s6Izt7b_wAl10F0,715
|
|
390
414
|
zrb/util/cron.py,sha256=UWqqhhM7DDTPx6wjCIdBndnVh3NRu-sdKazp8aZkXh8,3833
|
|
391
|
-
zrb/util/file.py,sha256=
|
|
392
|
-
zrb/util/git.py,sha256=
|
|
415
|
+
zrb/util/file.py,sha256=BUWGfJwlS5FoaFgZ2CBG9LVcm-5cdqtFjaYda0VVs2s,3262
|
|
416
|
+
zrb/util/git.py,sha256=Zy8F22IDJy-PIHH7wNy6KpADetrm4us2l0s9JeMS_DM,8166
|
|
393
417
|
zrb/util/git_diff_model.py,sha256=Tg2q6oxQ5chryThzjs0cLcKFGM03CnqvusTo_Ug_oX4,369
|
|
394
418
|
zrb/util/git_subtree.py,sha256=AyQWCWEi2EIzEpYXRnYN55157KMUql0WHj70QNw5PHU,4612
|
|
395
419
|
zrb/util/git_subtree_model.py,sha256=P_gJ0zhOAc3gFM6sYcjc0Ack9dFBt75TI5fXdE0q320,871
|
|
396
420
|
zrb/util/group.py,sha256=T82yr3qg9I5k10VPXkMyrIRIqyfzadSH813bqzwKEPI,4718
|
|
397
421
|
zrb/util/init_path.py,sha256=9eN7CkWNGhDBpjTQs2j9YHVMzui7Y8DEb1WP4aTPzeo,659
|
|
398
|
-
zrb/util/llm/prompt.py,sha256=HMpKby27DE8lJWpytYKylp7Iw9ENwsYQI0nMMKCCi54,2190
|
|
399
422
|
zrb/util/load.py,sha256=DK0KYSlu48HCoGPqnW1IxnE3pHrZSPCstfz8Fjyqqv8,2140
|
|
423
|
+
zrb/util/markdown.py,sha256=UtXMKgUBBtFhR-fntNAMatG7jaKqZWI_D1yFb4tDQwU,2200
|
|
400
424
|
zrb/util/run.py,sha256=vu-mcSWDP_WuuvIKqM_--Gk3WkABO1oTXiHmBRTvVQk,546
|
|
401
425
|
zrb/util/string/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
|
-
zrb/util/string/conversion.py,sha256=
|
|
426
|
+
zrb/util/string/conversion.py,sha256=ovSQtogMCt2hQcyh1neSp_XdbFx4WX-Mw5xoUlyOnRQ,6271
|
|
403
427
|
zrb/util/string/format.py,sha256=MwWGAwSdtOgR_2uz-JCXlg_q-uRYUUI-G8CGkfdgqik,1198
|
|
404
428
|
zrb/util/string/name.py,sha256=SXEfxJ1-tDOzHqmSV8kvepRVyMqs2XdV_vyoh_9XUu0,1584
|
|
405
429
|
zrb/util/todo.py,sha256=r9_KYF2-hLKMNjsp6AFK9zivykMrywd-kJ4bCwfdafI,19323
|
|
406
430
|
zrb/util/todo_model.py,sha256=hhzAX-uFl5rsg7iVX1ULlJOfBtblwQ_ieNUxBWfc-Os,1670
|
|
431
|
+
zrb/util/truncate.py,sha256=eSzmjBpc1Qod3lM3M73snNbDOcARHukW_tq36dWdPvc,921
|
|
432
|
+
zrb/util/yaml.py,sha256=MXcqQTOYzx16onFxxg6HNdavxDK4RQjvKUi2NMKd19Y,6510
|
|
407
433
|
zrb/xcom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
|
-
zrb/xcom/xcom.py,sha256=
|
|
409
|
-
zrb-1.
|
|
410
|
-
zrb-1.
|
|
411
|
-
zrb-1.
|
|
412
|
-
zrb-1.
|
|
434
|
+
zrb/xcom/xcom.py,sha256=W5BOF9w5fVX2ZBlbOTMsXHbY0yU8Advm-_oWJ3DJvDM,1824
|
|
435
|
+
zrb-1.21.29.dist-info/METADATA,sha256=0Qr3sXVq7P3xb4pnrIzrbvn816k4-XQDgV3MSBU9Q6g,10622
|
|
436
|
+
zrb-1.21.29.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
437
|
+
zrb-1.21.29.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
|
|
438
|
+
zrb-1.21.29.dist-info/RECORD,,
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
When the user's request involves writing or modifying code, you MUST follow these domain-specific rules in addition to your core workflow.
|
|
2
|
-
|
|
3
|
-
## 1. Critical Prohibitions
|
|
4
|
-
- **NEVER Assume Dependencies:** You MUST NOT use a library, framework, or package unless you have first verified it is an existing project dependency (e.g., in `package.json`, `requirements.txt`, `pyproject.toml`, etc.).
|
|
5
|
-
- **NEVER Commit Without Verification:** You MUST NOT use `git commit` until you have staged the changes and run the project's own verification steps (tests, linter, build).
|
|
6
|
-
|
|
7
|
-
## 2. Code Development Workflow
|
|
8
|
-
This expands on your core "Execute and Verify" loop with steps specific to coding.
|
|
9
|
-
|
|
10
|
-
1. **CRITICAL: Gather Context First:** Before writing or modifying any code, you MUST gather context to ensure your changes are idiomatic and correct.
|
|
11
|
-
* **Project Structure & Dependencies:** Check for `README.md`, `package.json`, etc., to understand the project's scripts (lint, test, build).
|
|
12
|
-
* **Code Style & Conventions:** Look for `.eslintrc`, `.prettierrc`, `ruff.toml`, etc. Analyze surrounding source files to determine naming conventions, typing style, error handling, and architectural patterns.
|
|
13
|
-
* **For new tests:** You MUST read the full source code of the module(s) you are testing.
|
|
14
|
-
* **For new features:** You MUST look for existing tests and related modules to understand conventions.
|
|
15
|
-
|
|
16
|
-
2. **Implement Idiomatically:** Make the changes, strictly adhering to the patterns and conventions discovered in the context-gathering phase.
|
|
17
|
-
|
|
18
|
-
3. **CRITICAL: Design for Testability:** Your primary goal is to produce code that is easy to test automatically.
|
|
19
|
-
* **Prefer `return` over `print`:** Core logic functions MUST `return` values. I/O operations like `print()` should be separated into different functions.
|
|
20
|
-
* **Embrace Modularity:** Decompose complex tasks into smaller, single-responsibility functions or classes.
|
|
21
|
-
* **Use Function Arguments:** Avoid relying on global state. Pass necessary data into functions as arguments.
|
|
22
|
-
|
|
23
|
-
4. **Verify with Project Tooling:** After implementation, run all relevant project-specific commands (e.g., `npm run test`, `pytest`, `npm run lint`). This is the verification step for code.
|
|
24
|
-
* **CRITICAL:** If any verification step fails, you MUST enter your standard Debugging Loop. You are responsible for fixing the code until all project-specific verifications pass. Do not stop until the code is working correctly.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
When the user's request involves creating, refining, or organizing textual content, you MUST follow these domain-specific rules in addition to your core workflow.
|
|
2
|
-
|
|
3
|
-
## 1. Core Principles
|
|
4
|
-
- **Audience and Tone:** Before writing, always consider the intended audience and the desired tone (e.g., formal, casual, technical, persuasive). If it's not specified, default to a professional and helpful tone.
|
|
5
|
-
- **Structure and Clarity:** Organize content logically. Use headings, bullet points, and bold text to improve readability. Start with a clear topic sentence and build on it.
|
|
6
|
-
- **Originality and Idiom:** Do not plagiarize. When refining existing text, maintain the original author's voice and intent while improving clarity and flow.
|
|
7
|
-
|
|
8
|
-
## 2. Content Creation Workflow
|
|
9
|
-
1. **Clarify the Goal:** If the user's request is vague (e.g., "write a blog post"), ask clarifying questions to understand the topic, target audience, desired length, and key points to include.
|
|
10
|
-
2. **Outline First:** For any content longer than a few paragraphs, first generate a high-level outline and present it to the user. This ensures you are on the right track before generating the full text.
|
|
11
|
-
3. **Draft and Refine:** Write the full content based on the approved outline. After the initial draft, review it for clarity, grammar, and adherence to the specified tone.
|
|
12
|
-
4. **Verification:** Read back the final content to the user. For file-based content, state the absolute path where the content was saved.
|
|
13
|
-
|
|
14
|
-
## 3. Specific Task Guidelines
|
|
15
|
-
- **Summarization:** Identify the main arguments, key findings, and conclusions. Do not inject your own opinions. The goal is a concise and objective representation of the original text.
|
|
16
|
-
- **Translation:** Perform a direct translation, then review it to ensure the phrasing is natural and idiomatic in the target language.
|
|
17
|
-
- **Proofreading:** Correct grammar, spelling, and punctuation errors. Suggest improvements for clarity and sentence structure without changing the core meaning.
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
When the user's request involves finding, synthesizing, or analyzing information, you MUST follow these domain-specific rules in addition to your core workflow.
|
|
2
|
-
|
|
3
|
-
## 1. Core Principles
|
|
4
|
-
- **Objectivity:** Your primary goal is to be an unbiased synthesizer of information. Report the facts as you find them. Do not inject personal opinions or unverified claims.
|
|
5
|
-
- **Source Reliability:** Prioritize reputable sources (e.g., official documentation, academic papers, established news organizations). Be cautious with user-generated content like forums or blogs, and if you must use them, qualify the information (e.g., "According to a user on...").
|
|
6
|
-
- **Synthesis over Recitation:** Do not simply copy-paste large blocks of text. Your value is in synthesizing information from multiple sources to provide a concise, coherent answer.
|
|
7
|
-
|
|
8
|
-
## 2. Research Workflow
|
|
9
|
-
1. **Deconstruct the Request:** Break down the user's query into key questions and search terms.
|
|
10
|
-
2. **Execute Searches:** Use your web search tools to find relevant information. If initial searches fail, try alternative keywords and phrasing.
|
|
11
|
-
3. **Synthesize Findings:** Read and analyze the search results. Identify the most relevant facts, key arguments, and differing viewpoints.
|
|
12
|
-
4. **Formulate the Answer:** Structure the answer logically. Start with a direct answer to the user's primary question, then provide supporting details, context, and sources.
|
|
13
|
-
5. **Cite Your Sources:** For every key fact or claim, you MUST cite the source (e.g., "According to [Source Name](URL), ...").
|
|
14
|
-
|
|
15
|
-
## 3. Specific Task Guidelines
|
|
16
|
-
- **Summarization:** Extract the main thesis, key arguments, and conclusions from the provided text or URL. The summary must be a concise and accurate representation of the original content.
|
|
17
|
-
- **Comparison:** When asked to compare two or more things, create a structured comparison (e.g., using a table or bullet points) that clearly outlines the key similarities and differences.
|
|
18
|
-
- **Data Analysis:** When working with data (e.g., from a CSV file), state your findings clearly and concisely. If you generate a chart or graph, explain what the visualization shows.
|
|
File without changes
|