zrb 1.13.1__py3-none-any.whl → 1.21.33__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 +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/http.py +7 -8
- zrb/builtin/llm/attachment.py +40 -0
- zrb/builtin/llm/chat_completion.py +287 -0
- zrb/builtin/llm/chat_session.py +130 -144
- zrb/builtin/llm/chat_session_cmd.py +288 -0
- zrb/builtin/llm/chat_trigger.py +78 -0
- zrb/builtin/llm/history.py +4 -4
- zrb/builtin/llm/llm_ask.py +218 -110
- zrb/builtin/llm/tool/api.py +74 -62
- zrb/builtin/llm/tool/cli.py +56 -21
- zrb/builtin/llm/tool/code.py +57 -47
- zrb/builtin/llm/tool/file.py +292 -255
- zrb/builtin/llm/tool/note.py +84 -0
- zrb/builtin/llm/tool/rag.py +25 -18
- zrb/builtin/llm/tool/search/__init__.py +1 -0
- zrb/builtin/llm/tool/search/brave.py +66 -0
- zrb/builtin/llm/tool/search/searxng.py +61 -0
- zrb/builtin/llm/tool/search/serpapi.py +61 -0
- zrb/builtin/llm/tool/sub_agent.py +53 -26
- zrb/builtin/llm/tool/web.py +94 -157
- 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/setup/latex/ubuntu.py +1 -0
- zrb/builtin/setup/ubuntu.py +1 -1
- zrb/builtin/shell/autocomplete/bash.py +4 -3
- zrb/builtin/shell/autocomplete/zsh.py +4 -3
- zrb/config/config.py +297 -79
- zrb/config/default_prompt/file_extractor_system_prompt.md +109 -9
- zrb/config/default_prompt/interactive_system_prompt.md +25 -28
- 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 +29 -25
- zrb/config/llm_config.py +129 -24
- 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 +6 -8
- zrb/group/any_group.py +12 -5
- zrb/group/group.py +67 -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_route/task_session_api_route.py +1 -4
- 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 +130 -145
- zrb/task/llm/agent_runner.py +152 -0
- zrb/task/llm/config.py +45 -13
- 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 -192
- zrb/task/llm/print_node.py +192 -64
- zrb/task/llm/prompt.py +198 -153
- zrb/task/llm/subagent_conversation_history.py +41 -0
- zrb/task/llm/tool_confirmation_completer.py +41 -0
- zrb/task/llm/tool_wrapper.py +216 -55
- zrb/task/llm/workflow.py +76 -0
- zrb/task/llm_task.py +122 -70
- 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 +27 -11
- 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.13.1.dist-info → zrb-1.21.33.dist-info}/METADATA +40 -20
- {zrb-1.13.1.dist-info → zrb-1.21.33.dist-info}/RECORD +114 -83
- {zrb-1.13.1.dist-info → zrb-1.21.33.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.13.1.dist-info → zrb-1.21.33.dist-info}/entry_points.txt +0 -0
|
@@ -1,41 +1,61 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: zrb
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.21.33
|
|
4
4
|
Summary: Your Automation Powerhouse
|
|
5
|
-
Home-page: https://github.com/state-alchemists/zrb
|
|
6
5
|
License: AGPL-3.0-or-later
|
|
7
6
|
Keywords: Automation,Task Runner,Code Generator,Monorepo,Low Code
|
|
8
7
|
Author: Go Frendi Gunawan
|
|
9
8
|
Author-email: gofrendiasgard@gmail.com
|
|
10
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.11.0,<4.0.0
|
|
11
10
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
12
11
|
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
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 (>=
|
|
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:
|
|
36
|
-
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)
|
|
37
56
|
Requires-Dist: ulid-py (>=1.1.0,<2.0.0)
|
|
38
57
|
Project-URL: Documentation, https://github.com/state-alchemists/zrb
|
|
58
|
+
Project-URL: Homepage, https://github.com/state-alchemists/zrb
|
|
39
59
|
Project-URL: Repository, https://github.com/state-alchemists/zrb
|
|
40
60
|
Description-Content-Type: text/markdown
|
|
41
61
|
|
|
@@ -1,27 +1,36 @@
|
|
|
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=
|
|
10
|
-
zrb/builtin/http.py,sha256=
|
|
9
|
+
zrb/builtin/group.py,sha256=W_IA_4414c8Wi8QazqcT6Gq6UftrKwy95yMF114EJtI,2677
|
|
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=cWVju5ApC2OPGM3ZWGaXwSgLwgT9leKS_TbV4z610zc,12252
|
|
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=i6_lej2xYfY8k5-CMIUsdYQdUvBV9ma_DM6ZmgLaQIU,2673
|
|
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=9BCbB6S5gBladOWO9dJhPgMq8dqpB2LQEfC6druZPDs,2091
|
|
24
|
+
zrb/builtin/llm/tool/code.py,sha256=1sErE5tsticXGNhiE0bTjI21Zq6zHMgS2hVM6dsAcww,7916
|
|
25
|
+
zrb/builtin/llm/tool/file.py,sha256=pzaIWB64aaEuW2I3TyuZwpNQa_nMv-zqJzSfTfjT9GQ,20183
|
|
26
|
+
zrb/builtin/llm/tool/note.py,sha256=USDQe8F1ddQp5dhv2u35rUN9EfJQl5BaWJIs6Xg9ZZY,2597
|
|
27
|
+
zrb/builtin/llm/tool/rag.py,sha256=lmoA42IWHcBOWTsWzYGklLs1YoiEldvu_Bi5bp6gbts,9439
|
|
28
|
+
zrb/builtin/llm/tool/search/__init__.py,sha256=wiMaie_IYt00fak-LrioC1qEZDs0SwYz4UWwidHfpFU,49
|
|
29
|
+
zrb/builtin/llm/tool/search/brave.py,sha256=ifuq3qX1rWZjJWw1afGD8VNkqED9Vwv5GJaJYwXmYdM,2271
|
|
30
|
+
zrb/builtin/llm/tool/search/searxng.py,sha256=kSp3HhhHu43eR8RvuzgF5f9EwSy0-uQQyWBYaYfZ82I,2092
|
|
31
|
+
zrb/builtin/llm/tool/search/serpapi.py,sha256=t5AM5PJ_j8VQQWHxFN61-WkDmcXVuvC1ZrFQ1tXZw1w,2101
|
|
32
|
+
zrb/builtin/llm/tool/sub_agent.py,sha256=UNgsvZvSQ1b5ybB0nRzTiFCJpZG3g2RLj_nzjRZzXMY,5808
|
|
33
|
+
zrb/builtin/llm/tool/web.py,sha256=nBpCN9sZ66Ly6nzpnNnUunXN_OJqClmShGI-6saEWFk,4364
|
|
25
34
|
zrb/builtin/md5.py,sha256=690RV2LbW7wQeTFxY-lmmqTSVEEZv3XZbjEUW1Q3XpE,1480
|
|
26
35
|
zrb/builtin/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
36
|
zrb/builtin/project/add/fastapp/fastapp_input.py,sha256=MKlWR_LxWhM_DcULCtLfL_IjTxpDnDBkn9KIqNmajFs,310
|
|
@@ -35,7 +44,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_col
|
|
|
35
44
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_util.py,sha256=GycuEtcvO02OwqULfP-qRxnAnJDDhWx_hdRSmbfx5bo,10952
|
|
36
45
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/config.py,sha256=uviB4q2iZjoU9_fA1O4VrjpuVAqx2gj5hjospJ0Xzeg,885
|
|
37
46
|
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=
|
|
47
|
+
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py,sha256=zsQD5uQZ0qGfqcK08Wgu21QGcPLK3eYHBU8DLkk-thg,16711
|
|
39
48
|
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
49
|
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
50
|
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 +63,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/format_task.py
|
|
|
54
63
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/group.py,sha256=S0sKnnABSGy3YzaExH40xJjm4UsEX6AyDE1u94ewk6A,648
|
|
55
64
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/input.py,sha256=_LagLs2R9Eao4xJ1d2i_Yj1ELu7uZGNJnK90ruvY0O8,1511
|
|
56
65
|
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=
|
|
66
|
+
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py,sha256=E-dWVHzFIGNu_c-AfbwWuO2Um3Ibp9DZtflPWkE7F2c,8507
|
|
58
67
|
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
68
|
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
69
|
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,29 +195,31 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_health_an
|
|
|
186
195
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_homepage.py,sha256=NnhAjs8JParlmTKynRb-l65h8FvEG_Tap5m8kDYvxOM,618
|
|
187
196
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_not_found_error.py,sha256=SBqFRgGUldUtIz-uMf9a5DeWDPFeKbhvnvwiYr-jjns,502
|
|
188
197
|
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=
|
|
198
|
+
zrb/builtin/project/add/fastapp/fastapp_util.py,sha256=YXLuNw_9wtk8jyRvBte-m5drizPpUVAyTLFZ-BvkqUo,1537
|
|
190
199
|
zrb/builtin/project/create/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
200
|
zrb/builtin/project/create/project-template/README.md,sha256=BHeWF_txdTDzKewWdWfGhO3YOTiW8E3YwTMnd0T1LVA,39
|
|
192
201
|
zrb/builtin/project/create/project-template/zrb_init.py,sha256=kY0x5MrkIVl3l1GtN2ROrYGNpsfN2dgRT84LCcSrGUs,44
|
|
193
202
|
zrb/builtin/project/create/project_task.py,sha256=az-yd2FRDmGZ_7qxslmW11ryTeI3yttRmXtlFnZhF00,1132
|
|
194
203
|
zrb/builtin/python.py,sha256=e-yyVWovwlxCBLyXGsd9Ek3IAL_X-Q_hpNNOPoRjOgk,349
|
|
195
204
|
zrb/builtin/random.py,sha256=p9kCvosSiSJyuGQrlrXuIQT8TRDGxXhfiUbsm3GFPd0,1793
|
|
205
|
+
zrb/builtin/searxng/config/settings.yml,sha256=dUuIebTYSFYYnM0HG3ItT9-DZWf0RJPSdWzJrXQvc44,140353
|
|
206
|
+
zrb/builtin/searxng/start.py,sha256=ASvALrUR8MoQ202qgZ3jLR8W_2drtAZpxTCOqa5IMi8,679
|
|
196
207
|
zrb/builtin/setup/asdf/asdf.py,sha256=_k60yiRiKbRPh_eJVI4Nx_ZmmClOlOb9G0b0KhSGo1M,2444
|
|
197
208
|
zrb/builtin/setup/asdf/asdf_helper.py,sha256=6jARtyIAE1H82HKVQ84D25RrMAsAip_gD28X9ZlaTCk,1205
|
|
198
209
|
zrb/builtin/setup/common_input.py,sha256=zIVVsZsNlSoV2Fw8kyt7g5B8XAU8cWBsT865NPoddwo,848
|
|
199
|
-
zrb/builtin/setup/latex/ubuntu.py,sha256=
|
|
210
|
+
zrb/builtin/setup/latex/ubuntu.py,sha256=Wc6k2OJckXH11hqD9idJf6jWiJ_VoBEMPwDb_k5hssU,606
|
|
200
211
|
zrb/builtin/setup/tmux/tmux.py,sha256=cV-azDzLtNYtwxucmYqpPqoeSVz3lxP2GOc1-I1yhKs,1428
|
|
201
212
|
zrb/builtin/setup/tmux/tmux_config.sh,sha256=wQCb4Q-mNkxIPOcvpN84X9RUWkGY16u3Vd-pOhVidgg,416
|
|
202
213
|
zrb/builtin/setup/tmux/tmux_helper.py,sha256=M03l0wfL25TzGGp6lnVfX40ayT_x7N2lz-nz2chO7PU,396
|
|
203
|
-
zrb/builtin/setup/ubuntu.py,sha256=
|
|
214
|
+
zrb/builtin/setup/ubuntu.py,sha256=hNvkwYzUrjKcYUzjPhR1mncGUx57XU5hR7BGjVH2X1Q,1104
|
|
204
215
|
zrb/builtin/setup/zsh/zsh.py,sha256=wy7WSYIie6GprCqH4J2ygcTjWdOeRnxmOZcz8fRykcg,1845
|
|
205
216
|
zrb/builtin/setup/zsh/zsh_config.sh,sha256=SRkcXvVT3tdfS1UDT0-dSj2PKXPLohhyakY6tUEQPjc,4764
|
|
206
217
|
zrb/builtin/setup/zsh/zsh_helper.py,sha256=1zF1FH0oEPVAVhMA20tsdk1H0RPMCkLusYX8twsTbGI,393
|
|
207
218
|
zrb/builtin/shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
219
|
zrb/builtin/shell/autocomplete/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
|
-
zrb/builtin/shell/autocomplete/bash.py,sha256
|
|
220
|
+
zrb/builtin/shell/autocomplete/bash.py,sha256=KBpsbWqC1nqlOvRHivHvifgV1xN6OtqbFw4PljS8k3s,1257
|
|
210
221
|
zrb/builtin/shell/autocomplete/subcmd.py,sha256=WZI6cGWJcn80zSyxOHG7sCMO3Ucix3mZf4xm_xyB_Y0,606
|
|
211
|
-
zrb/builtin/shell/autocomplete/zsh.py,sha256=
|
|
222
|
+
zrb/builtin/shell/autocomplete/zsh.py,sha256=uPMspE3YgT1O6PBjF1Jvoul9RiNJJ6Ay2QZ-TzxG1uI,1098
|
|
212
223
|
zrb/builtin/todo.py,sha256=EIqz0nmB1tW4OhWZbTv8y4CvppQOG6u8-Esw5__ThPY,11862
|
|
213
224
|
zrb/builtin/uuid.py,sha256=lIdhSGzPQ1rixRzMXxQDcgFgV7W-gUduHIudZXlzZzg,5393
|
|
214
225
|
zrb/callback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -217,27 +228,28 @@ zrb/callback/callback.py,sha256=PFhCqzfxdk6IAthmXcZ13DokT62xtBzJr_ciLw6I8Zg,4030
|
|
|
217
228
|
zrb/cmd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
229
|
zrb/cmd/cmd_result.py,sha256=L8bQJzWCpcYexIxHBNsXj2pT3BtLmWex0iJSMkvimOA,597
|
|
219
230
|
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/
|
|
231
|
+
zrb/config/config.py,sha256=bqC_B9OpofNWJkWA11HvtWD-Ut0VeKseIso5OACU6v4,19889
|
|
232
|
+
zrb/config/default_prompt/file_extractor_system_prompt.md,sha256=cVqhI016-fKa8PKz2kIxQAC0hPExgMT2ks-rVlz4K60,3789
|
|
233
|
+
zrb/config/default_prompt/interactive_system_prompt.md,sha256=LewDZo_zXMP6U_42c5egAY0Hb4KYp4Tbf3rUd9bPK8k,2659
|
|
234
|
+
zrb/config/default_prompt/persona.md,sha256=GfUJ4-Mlf_Bm1YTzxFNkPkdVbAi06ZDVYh-iIma3NOs,253
|
|
235
|
+
zrb/config/default_prompt/repo_extractor_system_prompt.md,sha256=lmfMMc9BLLATHAVMmSEeXr7xTeiF4FWv_AWYedgcbDE,3786
|
|
236
|
+
zrb/config/default_prompt/repo_summarizer_system_prompt.md,sha256=-T_baTblam2XlW99e72jfgsrIBTjpABMBXRFI_7L6RA,1987
|
|
237
|
+
zrb/config/default_prompt/summarization_prompt.md,sha256=0FI7GO9wkOOP7I_CrJPECtrqDHE_SMNr9aKKHC1GtPI,3633
|
|
238
|
+
zrb/config/default_prompt/system_prompt.md,sha256=ipPaECOM4KQj5u2bzQj1f1w0J78vuZuLnxF5orZWElo,2857
|
|
239
|
+
zrb/config/llm_config.py,sha256=Nt7P0Q6bRpLbGi3IZ1WPeOxUsUUL438_8ufpML1WN28,12798
|
|
240
|
+
zrb/config/llm_context/config.py,sha256=WdqoFxc-PSwNh9aeTWhHMNiQZotbdQ8WaVr3YcezGNo,6487
|
|
241
|
+
zrb/config/llm_context/config_parser.py,sha256=PLfLfMgxPBj7Ryy-37gCZIHrweo1XiFQGnUqjvKXU_Y,1465
|
|
242
|
+
zrb/config/llm_context/workflow.py,sha256=cHkUYBk2Mc35RBuma7Vn3QCNaHd95Ajqr1N4L43FFZs,2681
|
|
243
|
+
zrb/config/llm_rate_limitter.py,sha256=sNi_fttwRKjMTCn1pBoqx-p2uI4wHSl8CAAP8poe94g,7012
|
|
232
244
|
zrb/config/web_auth_config.py,sha256=_PXatQTYh2mX9H3HSYSQKp13zm1RlLyVIoeIr6KYMQ8,6279
|
|
233
245
|
zrb/content_transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
234
246
|
zrb/content_transformer/any_content_transformer.py,sha256=v8ZUbcix1GGeDQwB6OKX_1TjpY__ksxWVeqibwa_iZA,850
|
|
235
247
|
zrb/content_transformer/content_transformer.py,sha256=STl77wW-I69QaGzCXjvkppngYFLufow8ybPLSyAvlHs,2404
|
|
236
248
|
zrb/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
237
249
|
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=
|
|
250
|
+
zrb/context/any_shared_context.py,sha256=PlB6mPOe98LRGUg9SCY1miy3ObcJDNhMWVNmE7zL9l0,2038
|
|
251
|
+
zrb/context/context.py,sha256=Kg5twyOmrehdcqiRdoqoQrprkizAW3WTURp3Eb0JWQg,7088
|
|
252
|
+
zrb/context/shared_context.py,sha256=vtp181CJc5qm_M7ss2DBSsmw9QsVSI01yQUywQPsRH4,2968
|
|
241
253
|
zrb/dot_dict/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
242
254
|
zrb/dot_dict/dot_dict.py,sha256=ubw_x8I7AOJ59xxtFVJ00VGmq_IYdZP3mUhNlO4nEK0,556
|
|
243
255
|
zrb/env/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -246,21 +258,21 @@ zrb/env/env.py,sha256=zT-xj0l5G_lp_ginV_InuBr5qTqZMcGaMKE_p5FoqlU,1061
|
|
|
246
258
|
zrb/env/env_file.py,sha256=dccsR_cjXp1Q_qz692YPaZSny3Xa049V5NAZ-WLDDEQ,746
|
|
247
259
|
zrb/env/env_map.py,sha256=CKMmXUbuvf6h2rgFWj-WvW_xLZNgG3TtWdfrqHDe4qk,1253
|
|
248
260
|
zrb/group/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
|
-
zrb/group/any_group.py,sha256=
|
|
250
|
-
zrb/group/group.py,sha256=
|
|
261
|
+
zrb/group/any_group.py,sha256=jOdjojUriyHitDvp3jW7W2BDhqPhHTcXWZOAvUDGFqA,1267
|
|
262
|
+
zrb/group/group.py,sha256=jt6GMxe3_9j49s3TfEDqA-EwzXKhVaW_npQ1gmyHre8,4298
|
|
251
263
|
zrb/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
-
zrb/input/any_input.py,sha256=
|
|
253
|
-
zrb/input/base_input.py,sha256=
|
|
264
|
+
zrb/input/any_input.py,sha256=3EQgg2Qk_2t2Ege_4pHV2G95tV3XAIThLLuFZ6uV6oM,1051
|
|
265
|
+
zrb/input/base_input.py,sha256=HCTxBZwnK-gP-F7XQGDbyyZHvwYR0fwNICzqVUw5Cg8,4169
|
|
254
266
|
zrb/input/bool_input.py,sha256=9ir8aTm8zaufrJ84_EerC5vOjyn4hHZ3BiLzFqPgPFM,1839
|
|
255
267
|
zrb/input/float_input.py,sha256=8G9lJKLlb_Upk9m5pBF9JwqlAAiYJLrbIItLnyzPxpg,1475
|
|
256
268
|
zrb/input/int_input.py,sha256=UhxCFYlZdJcgUSGGEkz301zOgRVpK0KDG_IxxWpQfMU,1457
|
|
257
|
-
zrb/input/option_input.py,sha256=
|
|
269
|
+
zrb/input/option_input.py,sha256=pG-7R5QboXRLyb4E63PXIUnhs5fHu2RCkGLBue46mmU,2687
|
|
258
270
|
zrb/input/password_input.py,sha256=szBojWxSP9QJecgsgA87OIYwQrY2AQ3USIKdDZY6snU,1465
|
|
259
271
|
zrb/input/str_input.py,sha256=NevZHX9rf1g8eMatPyy-kUX3DglrVAQpzvVpKAzf7bA,81
|
|
260
|
-
zrb/input/text_input.py,sha256=
|
|
272
|
+
zrb/input/text_input.py,sha256=9vpXJt7ASa_Gq2zFbVWT1p-PBjYf6DpyXfuhIH-rJgs,2969
|
|
261
273
|
zrb/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
262
|
-
zrb/runner/cli.py,sha256=
|
|
263
|
-
zrb/runner/common_util.py,sha256=
|
|
274
|
+
zrb/runner/cli.py,sha256=E5GGNJjCOBpFbhgnMM_iE1TVYhxMNDJKA6WxCRETTmA,6951
|
|
275
|
+
zrb/runner/common_util.py,sha256=yIJm9ivM7hvJ4Kb4Nt5RRE7oqAlt9EN89w6JDGyLkFE,1570
|
|
264
276
|
zrb/runner/web_app.py,sha256=n8iXtQ5DGIfRcFsHdBafm9VJisVSDD159XFPpEXQTN0,2796
|
|
265
277
|
zrb/runner/web_route/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
278
|
zrb/runner/web_route/docs_route.py,sha256=Y8zTROzIOfmJuU_E9KZljdjgkd65DcvLeX3k0xO-o_k,550
|
|
@@ -315,18 +327,18 @@ zrb/runner/web_route/static/resources/session/current-session.js,sha256=tzUdK7qJ
|
|
|
315
327
|
zrb/runner/web_route/static/resources/session/event.js,sha256=X5OlSHefK0SDB9VkFCRyBKE_Pb7mqM319mW9jRGoDOk,4716
|
|
316
328
|
zrb/runner/web_route/static/resources/session/past-session.js,sha256=RwGJYKSp75K8NZ-iZP58XppWgdzkiKFaiC5wgcMLxDo,5470
|
|
317
329
|
zrb/runner/web_route/static/static_route.py,sha256=QPs5XW4O_8CuzG0Wy4sHh5wRcLbU63CLDI4YNqkUxHA,1555
|
|
318
|
-
zrb/runner/web_route/task_input_api_route.py,sha256=
|
|
319
|
-
zrb/runner/web_route/task_session_api_route.py,sha256=
|
|
330
|
+
zrb/runner/web_route/task_input_api_route.py,sha256=1uTI9efQNXJ_S9jGWSudQFIyGSkINSLLYzSWCMcOtkc,1795
|
|
331
|
+
zrb/runner/web_route/task_session_api_route.py,sha256=U9fPOh_nmAzsmRnS5xe713KFUU15n0IkbbzU_Eg8YGI,6181
|
|
320
332
|
zrb/runner/web_schema/session.py,sha256=NwbuS2Sv-CXO52nU-EZv8OMlD4vgCQWNeLC_dT0FK7I,92
|
|
321
333
|
zrb/runner/web_schema/token.py,sha256=Y7XCPS4WzrxslTDtHeLcPTTUpmWhPOkRcl4b99zrC7c,185
|
|
322
334
|
zrb/runner/web_schema/user.py,sha256=Kp10amg4i-f8Y-4czogv1YN7rwy0HdbePFiuovYu1ts,1018
|
|
323
335
|
zrb/runner/web_util/cookie.py,sha256=O5vfZfeZOBL6ECvT7WqD4LihrsXO6okJLBUp6b7RMj0,1085
|
|
324
336
|
zrb/runner/web_util/html.py,sha256=TuUHjX3eKCBzoa7TYdMt8dfWWy06idauyCaG66X4Ygc,1838
|
|
325
337
|
zrb/runner/web_util/token.py,sha256=uaQXSZ6mptiph1a_LOMdYtPYdcyOk3ygz5ZoLGOPkhE,2687
|
|
326
|
-
zrb/runner/web_util/user.py,sha256=
|
|
338
|
+
zrb/runner/web_util/user.py,sha256=1m9apTJ5s_kCFv0B5GSc4-1P4Rjr4dH5oVNetS6Gz9Y,2116
|
|
327
339
|
zrb/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
328
|
-
zrb/session/any_session.py,sha256=
|
|
329
|
-
zrb/session/session.py,sha256=
|
|
340
|
+
zrb/session/any_session.py,sha256=zEc_9xbLUcqu4WG2NScvtDMtnb4vdUmjBaOm_MO_Cz4,5381
|
|
341
|
+
zrb/session/session.py,sha256=_Of9kX4khDB6csBvXcmVP3s2Mf9vKrIiT3fISwO4aTk,11118
|
|
330
342
|
zrb/session_state_log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
343
|
zrb/session_state_log/session_state_log.py,sha256=VVghDMU72PbrvnzQ7MJuc-KTJ5P5fX0FYuCh3Rlwd9M,709
|
|
332
344
|
zrb/session_state_logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -334,46 +346,63 @@ zrb/session_state_logger/any_session_state_logger.py,sha256=T_-aJv63HwoTeiDOmXKH
|
|
|
334
346
|
zrb/session_state_logger/file_session_state_logger.py,sha256=NMyj_g2ImQc6ZRM9f35EpA-CM1UO-ZgoDnPkN1DSi9U,3915
|
|
335
347
|
zrb/session_state_logger/session_state_logger_factory.py,sha256=_oT1UIqm25nMwKhsUvXehnCdDvNqxCyuN8GLdv2D_U4,188
|
|
336
348
|
zrb/task/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
|
-
zrb/task/any_task.py,sha256=
|
|
349
|
+
zrb/task/any_task.py,sha256=AXcBLnDWrJsiq_VihrXeNNMsQZuHzc5k6j-mS60qbyM,6443
|
|
338
350
|
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=
|
|
351
|
+
zrb/task/base/context.py,sha256=ptz9-Am1s4yq6EHZUpnSrB0Ps3k7BgyakVbE-ZpiBzc,3923
|
|
352
|
+
zrb/task/base/execution.py,sha256=ixWSk0byHDbBvT7lxh94eD8pmnbI6LRTIIkMmh0zing,11265
|
|
353
|
+
zrb/task/base/lifecycle.py,sha256=c2v977pUm7S4EqrTMcUJKhnYOWugACVwU3qORDKiLXQ,7639
|
|
354
|
+
zrb/task/base/monitoring.py,sha256=w4_q3e7dwcJureUfcJr7vhpwQ5RCikr0VHGlGA_crrM,5815
|
|
343
355
|
zrb/task/base/operators.py,sha256=uAMFqpZJsPnCrojgOl1FUDXTS15mtOa_IqiAXltyYRU,1576
|
|
344
|
-
zrb/task/base_task.py,sha256=
|
|
345
|
-
zrb/task/base_trigger.py,sha256=
|
|
356
|
+
zrb/task/base_task.py,sha256=upwuqAfwNDXTYM-uRDJhgZqqqARI03T6ksUbFHHLEH0,13321
|
|
357
|
+
zrb/task/base_trigger.py,sha256=nbhFY3QCLNZkXxRorjyC4k2sEJumzR8YCNjOhFBSjJ8,7165
|
|
346
358
|
zrb/task/cmd_task.py,sha256=myM8WZm6NrUD-Wv0Vb5sTOrutrAVZLt5LVsSBKwX6SM,10860
|
|
347
359
|
zrb/task/http_check.py,sha256=Gf5rOB2Se2EdizuN9rp65HpGmfZkGc-clIAlHmPVehs,2565
|
|
348
360
|
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/
|
|
361
|
+
zrb/task/llm/agent.py,sha256=FrwqAt2SKm78C1fXAPJrXOZfd8iu-13n_R3tVetJlfI,8333
|
|
362
|
+
zrb/task/llm/agent_runner.py,sha256=7VmLnhtF1oWfuV6xMCIwd4xPewpDXgfIPEJRoX9boiA,5202
|
|
363
|
+
zrb/task/llm/config.py,sha256=wCcwxcaW2dgjxsjrXnG1inyKpQWs37kXJ-L_CO-KJ5s,4486
|
|
364
|
+
zrb/task/llm/conversation_history.py,sha256=Fye5oryjdDN_JGBkxoPGUsjuU0FTHis1Ue6nTovo1Zo,7112
|
|
365
|
+
zrb/task/llm/conversation_history_model.py,sha256=2ScAuu5ne6X6F0bXm-21ckEoqcDlWDeuD5L4DPPdz-Q,2629
|
|
366
|
+
zrb/task/llm/default_workflow/coding/workflow.md,sha256=tGiZuR5SYtLvvILJ_AkHaWdvXn5wvLd3RqNyjnHq9NE,5474
|
|
367
|
+
zrb/task/llm/default_workflow/copywriting/workflow.md,sha256=CL9083lrMZHa-J6GlbyGxgRxa8CqJJQFMw_I7WFK13w,3182
|
|
368
|
+
zrb/task/llm/default_workflow/git/workflow.md,sha256=BBkIChqLkex-irkaWH9lQlQkVHed1SM28nfgx8K3yZA,4263
|
|
369
|
+
zrb/task/llm/default_workflow/golang/workflow.md,sha256=yezo6bCLjTluJLmSl_OCk9OsJ0eemqWiN1xBL4ioung,4929
|
|
370
|
+
zrb/task/llm/default_workflow/html-css/workflow.md,sha256=oSL27Zx4jsVXAzxCaEkJ27QkJTSaImryb32_oCJmdA4,5773
|
|
371
|
+
zrb/task/llm/default_workflow/java/workflow.md,sha256=w6JLjeC5RWRl0-rA5HXu5Cj96jj37tDfEzIq-dOcCzk,5968
|
|
372
|
+
zrb/task/llm/default_workflow/javascript/workflow.md,sha256=djE7oKLefHIW8iDXEBUPVWp8VkiGe59J555UgWUIk78,6857
|
|
373
|
+
zrb/task/llm/default_workflow/python/workflow.md,sha256=iGYOkZ0eGLTjBhs2NYN4JMmsCGJFJolQ0f08q4k_0uA,6630
|
|
374
|
+
zrb/task/llm/default_workflow/researching/workflow.md,sha256=DpMCJF1EuZTsDc1yFgUI1d3jf_7zHTMjvsApov4RyDQ,6765
|
|
375
|
+
zrb/task/llm/default_workflow/rust/workflow.md,sha256=fm1ISFxgqP_MV20jGBAZ62d-zU-tRuF7VbMDD5byZ2c,6537
|
|
376
|
+
zrb/task/llm/default_workflow/shell/workflow.md,sha256=_5aW5DEjOauiUANNWgbfEFmH5MdjCHagh9a56T1Zykw,7515
|
|
356
377
|
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/
|
|
378
|
+
zrb/task/llm/file_replacement.py,sha256=cUgtcfH9OlHzPwdZhSzWVNs7ZO0YYh0ajxqMwfIbvD0,7193
|
|
379
|
+
zrb/task/llm/file_tool_model.py,sha256=bNH-nrHamXtc_sUiPZ1TYI6CqefPIXj3tP4FbURiU1Y,1721
|
|
380
|
+
zrb/task/llm/history_processor.py,sha256=QQHoE2RNz8w75li-RC4PFgCelCLhVv4ObOiSQQ8JxDM,7684
|
|
381
|
+
zrb/task/llm/history_summarization.py,sha256=YqLm9Q5xzFVTL5XwnWu3XwaMgSxKskDFvoi2MIThRB0,927
|
|
382
|
+
zrb/task/llm/print_node.py,sha256=d7OMOJ2kj6iXZS2cC5cyuDF1QDFsA9FxDGX-xfirvxs,8674
|
|
383
|
+
zrb/task/llm/prompt.py,sha256=jlFNWa1IMCYNQh9Ccq9DB1dq9964IOQJ5jNSC9rMpkw,11366
|
|
384
|
+
zrb/task/llm/subagent_conversation_history.py,sha256=y8UbKF2GpjB-r1bc2xCpzepriVEq0wfdyFuHOwfpPfk,1647
|
|
385
|
+
zrb/task/llm/tool_confirmation_completer.py,sha256=rOYZdq5No9DfLUG889cr99cUX6XmoO29Yh9FUcdMMio,1534
|
|
386
|
+
zrb/task/llm/tool_wrapper.py,sha256=FfW2JcZ8vUVie0pekpwpQABQ8DhIv8EG7_kPSYGwsVw,12440
|
|
361
387
|
zrb/task/llm/typing.py,sha256=c8VAuPBw_4A3DxfYdydkgedaP-LU61W9_wj3m3CAX1E,58
|
|
362
|
-
zrb/task/
|
|
363
|
-
zrb/task/
|
|
364
|
-
zrb/task/
|
|
388
|
+
zrb/task/llm/workflow.py,sha256=eGpUXoIKgbPFPZJ7hHy_HkGYnGWWx9-B9FNjjNm3_8I,2968
|
|
389
|
+
zrb/task/llm_task.py,sha256=ZH5XN064tJy2dTEnjf43Tk32-cL3-0Ey9JISz1hooTw,16388
|
|
390
|
+
zrb/task/make_task.py,sha256=rWay-Wz2nAOr4mhMcJZuuehuWULfSBmZm5XcDN4ZN3c,2198
|
|
391
|
+
zrb/task/rsync_task.py,sha256=0M5g2E_b28uCNLXSq2vTsDP2TdGpHfhNn1sDv4MhzNw,7089
|
|
365
392
|
zrb/task/scaffolder.py,sha256=rME18w1HJUHXgi9eTYXx_T2G4JdqDYzBoNOkdOOo5-o,6806
|
|
366
|
-
zrb/task/scheduler.py,sha256=
|
|
393
|
+
zrb/task/scheduler.py,sha256=iC1BmXsf_59B-03Uqiu_yO4hsrAMDXVpedWr8w7R-iM,3127
|
|
367
394
|
zrb/task/task.py,sha256=KCrCaWYOQQvv1RJsYtHDeo9RBFmlXQ28oKyEFU4Q7pA,73
|
|
368
395
|
zrb/task/tcp_check.py,sha256=P_QgGqwd5dXDaud3oQRxe_WuxyxG4s7CTY2wDk9Qcu0,2511
|
|
369
396
|
zrb/task_status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
370
397
|
zrb/task_status/task_status.py,sha256=blZ8dxg9g_8MuViq-t7yJRLoE7yGUf5srgHf-PCsXNc,3069
|
|
371
398
|
zrb/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
372
|
-
zrb/util/attr.py,sha256=
|
|
399
|
+
zrb/util/attr.py,sha256=3-arwThz8pOnLf4PRA_D-5Pue9xKVEmLtESsIXHCBSE,5523
|
|
373
400
|
zrb/util/callable.py,sha256=b6OFXbCXp2twow3wh2E_h5hNHLs2pXaLfGQz4iVyiQc,771
|
|
374
401
|
zrb/util/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
|
+
zrb/util/cli/markdown.py,sha256=Uhuw8XR-jAG9AG3oNK8VHJpYOdU40Q_8yVN74uu0RJ8,384
|
|
375
403
|
zrb/util/cli/style.py,sha256=D_548KG1gXEirQGdkAVTc81vBdCeInXtnG1gV1yabBA,6655
|
|
376
404
|
zrb/util/cli/subcommand.py,sha256=umTZIlrL-9g-qc_eRRgdaQgK-whvXK1roFfvnbuY7NQ,1753
|
|
405
|
+
zrb/util/cli/text.py,sha256=kNg71NAdT6dAMoe0YN9DgWqV7udh8GlQr6ndXR_6NLA,968
|
|
377
406
|
zrb/util/cmd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
378
407
|
zrb/util/cmd/command.py,sha256=WpEMWVL9hBsxptvDHmRR93_cJ2zP05BJ2h9-tP93M1Y,7473
|
|
379
408
|
zrb/util/cmd/remote.py,sha256=NGQq2_IrUMDoZz3qmcgtnNYVGjMHaBKQpZxImf0yfXA,1296
|
|
@@ -388,25 +417,27 @@ zrb/util/codemod/modify_function_call.py,sha256=wbyoRRsM4V9fPYkT5kHN0zpBetpRDq2S
|
|
|
388
417
|
zrb/util/codemod/modify_method.py,sha256=5fioXjqNQmrf4CV2qlTZHpViF9PMnNer4FvuKam7byo,6344
|
|
389
418
|
zrb/util/codemod/modify_module.py,sha256=2mzi_NxJ-kNFo5G0U_Rqb3JoYQl1s6Izt7b_wAl10F0,715
|
|
390
419
|
zrb/util/cron.py,sha256=UWqqhhM7DDTPx6wjCIdBndnVh3NRu-sdKazp8aZkXh8,3833
|
|
391
|
-
zrb/util/file.py,sha256=
|
|
392
|
-
zrb/util/git.py,sha256=
|
|
420
|
+
zrb/util/file.py,sha256=BUWGfJwlS5FoaFgZ2CBG9LVcm-5cdqtFjaYda0VVs2s,3262
|
|
421
|
+
zrb/util/git.py,sha256=Zy8F22IDJy-PIHH7wNy6KpADetrm4us2l0s9JeMS_DM,8166
|
|
393
422
|
zrb/util/git_diff_model.py,sha256=Tg2q6oxQ5chryThzjs0cLcKFGM03CnqvusTo_Ug_oX4,369
|
|
394
423
|
zrb/util/git_subtree.py,sha256=AyQWCWEi2EIzEpYXRnYN55157KMUql0WHj70QNw5PHU,4612
|
|
395
424
|
zrb/util/git_subtree_model.py,sha256=P_gJ0zhOAc3gFM6sYcjc0Ack9dFBt75TI5fXdE0q320,871
|
|
396
425
|
zrb/util/group.py,sha256=T82yr3qg9I5k10VPXkMyrIRIqyfzadSH813bqzwKEPI,4718
|
|
397
426
|
zrb/util/init_path.py,sha256=9eN7CkWNGhDBpjTQs2j9YHVMzui7Y8DEb1WP4aTPzeo,659
|
|
398
|
-
zrb/util/llm/prompt.py,sha256=HMpKby27DE8lJWpytYKylp7Iw9ENwsYQI0nMMKCCi54,2190
|
|
399
427
|
zrb/util/load.py,sha256=DK0KYSlu48HCoGPqnW1IxnE3pHrZSPCstfz8Fjyqqv8,2140
|
|
428
|
+
zrb/util/markdown.py,sha256=UtXMKgUBBtFhR-fntNAMatG7jaKqZWI_D1yFb4tDQwU,2200
|
|
400
429
|
zrb/util/run.py,sha256=vu-mcSWDP_WuuvIKqM_--Gk3WkABO1oTXiHmBRTvVQk,546
|
|
401
430
|
zrb/util/string/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
|
-
zrb/util/string/conversion.py,sha256=
|
|
431
|
+
zrb/util/string/conversion.py,sha256=ovSQtogMCt2hQcyh1neSp_XdbFx4WX-Mw5xoUlyOnRQ,6271
|
|
403
432
|
zrb/util/string/format.py,sha256=MwWGAwSdtOgR_2uz-JCXlg_q-uRYUUI-G8CGkfdgqik,1198
|
|
404
433
|
zrb/util/string/name.py,sha256=SXEfxJ1-tDOzHqmSV8kvepRVyMqs2XdV_vyoh_9XUu0,1584
|
|
405
434
|
zrb/util/todo.py,sha256=r9_KYF2-hLKMNjsp6AFK9zivykMrywd-kJ4bCwfdafI,19323
|
|
406
435
|
zrb/util/todo_model.py,sha256=hhzAX-uFl5rsg7iVX1ULlJOfBtblwQ_ieNUxBWfc-Os,1670
|
|
436
|
+
zrb/util/truncate.py,sha256=eSzmjBpc1Qod3lM3M73snNbDOcARHukW_tq36dWdPvc,921
|
|
437
|
+
zrb/util/yaml.py,sha256=MXcqQTOYzx16onFxxg6HNdavxDK4RQjvKUi2NMKd19Y,6510
|
|
407
438
|
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.
|
|
439
|
+
zrb/xcom/xcom.py,sha256=W5BOF9w5fVX2ZBlbOTMsXHbY0yU8Advm-_oWJ3DJvDM,1824
|
|
440
|
+
zrb-1.21.33.dist-info/METADATA,sha256=8_GuNfrNEPw5ZvdP-LqhFH7HAP4CfApFxhli-t3TI3k,10622
|
|
441
|
+
zrb-1.21.33.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
442
|
+
zrb-1.21.33.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
|
|
443
|
+
zrb-1.21.33.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
|