zrb 1.15.11__py3-none-any.whl → 1.15.12__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.
@@ -1,4 +1,4 @@
1
- You are a memory management AI. Your ONLY purpose is to manage the conversation history by calling tools. You MUST NOT output any conversational text, explanations, or apologies.
1
+ You are a memory management AI. Your goal is to curate the conversation history by calling `write_past_conversation_summary`, `write_past_conversation_transcript`, `write_long_term_note` and `write_contextual_note`.
2
2
 
3
3
  Follow these steps precisely:
4
4
 
@@ -14,7 +14,3 @@ Follow these steps precisely:
14
14
  3. Call `write_contextual_note` AT MOST ONCE. Use it to add or update facts specific to the current project or directory (`context_path`).
15
15
  4. **CRITICAL:** When calling `write_contextual_note`, you MUST determine the correct `context_path` by analyzing the `Recent Conversation`. For example, if a fact was established when the working directory was `/app`, the `context_path` MUST be `/app`.
16
16
  5. **CRITICAL:** The content for notes must be raw, unformatted text. Do not use Markdown. Notes should be timeless facts, not a log of events. Only update notes if the information has actually changed.
17
-
18
- **Step 3: Finalize**
19
-
20
- After making all necessary tool calls, your FINAL RESPONSE must be a single word "DONE" marking the end of this session.
@@ -22,7 +22,7 @@ if TYPE_CHECKING:
22
22
  from pydantic_ai import Tool
23
23
 
24
24
 
25
- class UserDisapproval(ValueError):
25
+ class ToolExecutionCancelled(ValueError):
26
26
  pass
27
27
 
28
28
 
@@ -113,7 +113,7 @@ def _create_wrapper(
113
113
  if not is_yolo_mode and not ctx.is_web_mode and ctx.is_tty:
114
114
  approval, reason = await _ask_for_approval(ctx, func, args, kwargs)
115
115
  if not approval:
116
- raise UserDisapproval(f"User disapproving: {reason}")
116
+ raise ToolExecutionCancelled(f"User disapproving: {reason}")
117
117
  return await run_async(func(*args, **kwargs))
118
118
  except KeyboardInterrupt as e:
119
119
  raise e
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: zrb
3
- Version: 1.15.11
3
+ Version: 1.15.12
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
@@ -223,7 +223,7 @@ zrb/config/default_prompt/interactive_system_prompt.md,sha256=XvXI51dMpQmuuYah_L
223
223
  zrb/config/default_prompt/persona.md,sha256=GfUJ4-Mlf_Bm1YTzxFNkPkdVbAi06ZDVYh-iIma3NOs,253
224
224
  zrb/config/default_prompt/repo_extractor_system_prompt.md,sha256=EGZ-zj78RlMEg2jduRBs8WzO4VJTkXHR96IpBepZMsY,3881
225
225
  zrb/config/default_prompt/repo_summarizer_system_prompt.md,sha256=RNy37Wg7ibXj3DlsFKaYvgMpMS-lyXlM1LZlc59_4ic,2009
226
- zrb/config/default_prompt/summarization_prompt.md,sha256=aD89YDQbRTqJu6wT3H_zArL-v6uvARBcV32fhDQJW88,1708
226
+ zrb/config/default_prompt/summarization_prompt.md,sha256=SWaZvy9FBEPvaZ4xmR3NaNFrM9MANiqIKQlYwx2LmTw,1602
227
227
  zrb/config/default_prompt/system_prompt.md,sha256=gEb6N-cFg6VvOV-7ZffNwVt39DavAGesMqn9u0epbRc,2282
228
228
  zrb/config/llm_config.py,sha256=xt-Xf8ZuNoUT_GKCSFz5yy0BhbeHzxP-jrezB06WeiY,8857
229
229
  zrb/config/llm_context/config.py,sha256=PDsrKAduQfsEUMYt4jirG0F7KDkY7jqhrbsptxdMOEg,4962
@@ -357,7 +357,7 @@ zrb/task/llm/error.py,sha256=QR-nIohS6pBpC_16cWR-fw7Mevo1sNYAiXMBsh_CJDE,4157
357
357
  zrb/task/llm/history_summarization.py,sha256=_eWFP4cAn3tTfyt7YPjnPwm_PgMhMChPg9g2q2Gsf0c,8172
358
358
  zrb/task/llm/print_node.py,sha256=fNTL0LtoZBQQPHYCAUaOFP97nNNfobPXvY2RlxewQCE,7556
359
359
  zrb/task/llm/prompt.py,sha256=FGXWYHecWtrNNkPnjg-uhnkqp7fYt8V91-AjFM_5fpA,11550
360
- zrb/task/llm/tool_wrapper.py,sha256=k_QJOrL1KqchGOcmn8DrJ71kPxyUFdHZp-_Scj7dYdc,9670
360
+ zrb/task/llm/tool_wrapper.py,sha256=IavXwW9C0ojI3ivGDY8j7XbMJE_NTJeI86TVbHNRwJ0,9684
361
361
  zrb/task/llm/typing.py,sha256=c8VAuPBw_4A3DxfYdydkgedaP-LU61W9_wj3m3CAX1E,58
362
362
  zrb/task/llm_task.py,sha256=0c9F_AjeMLxQX8VlAJHfZAkC52PhRaWbcKoqVOggcMg,14451
363
363
  zrb/task/make_task.py,sha256=PD3b_aYazthS8LHeJsLAhwKDEgdurQZpymJDKeN60u0,2265
@@ -408,7 +408,7 @@ zrb/util/todo_model.py,sha256=hhzAX-uFl5rsg7iVX1ULlJOfBtblwQ_ieNUxBWfc-Os,1670
408
408
  zrb/util/truncate.py,sha256=eSzmjBpc1Qod3lM3M73snNbDOcARHukW_tq36dWdPvc,921
409
409
  zrb/xcom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
410
410
  zrb/xcom/xcom.py,sha256=o79rxR9wphnShrcIushA0Qt71d_p3ZTxjNf7x9hJB78,1571
411
- zrb-1.15.11.dist-info/METADATA,sha256=p5Ba3Ux1jJAvbHHHmcQvw106MHve-Rtti7cZufW1OMs,9775
412
- zrb-1.15.11.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
413
- zrb-1.15.11.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
414
- zrb-1.15.11.dist-info/RECORD,,
411
+ zrb-1.15.12.dist-info/METADATA,sha256=KiHkwdLLBMFBj_uiZnvnEuet3XvcYqNDbYf22VGB5H8,9775
412
+ zrb-1.15.12.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
413
+ zrb-1.15.12.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
414
+ zrb-1.15.12.dist-info/RECORD,,
File without changes