zrb 1.15.1__py3-none-any.whl → 1.15.2__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.
@@ -44,7 +44,7 @@ class LLMContextConfig:
44
44
  for config_dir, sections in reversed(all_sections):
45
45
  for key, value in sections.items():
46
46
  if key.startswith("Context:"):
47
- context_path = key.replace("Context:", "").strip()
47
+ context_path = key[len("Context:") :].strip()
48
48
  if context_path == ".":
49
49
  context_path = config_dir
50
50
  elif not os.path.isabs(context_path):
@@ -64,9 +64,9 @@ class LLMContextConfig:
64
64
  for _, sections in reversed(all_sections):
65
65
  for key, value in sections.items():
66
66
  if key.startswith("Workflow:"):
67
+ workflow_name = key[len("Workflow:") :].strip()
67
68
  workflow_name = key.replace("Workflow:", "").lower().strip()
68
- if workflow_name not in workflows:
69
- workflows[workflow_name] = value
69
+ workflows[workflow_name] = value
70
70
  return workflows
71
71
 
72
72
  def write_context(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: zrb
3
- Version: 1.15.1
3
+ Version: 1.15.2
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
@@ -226,7 +226,7 @@ zrb/config/default_prompt/repo_summarizer_system_prompt.md,sha256=fpG5B416OK3oE4
226
226
  zrb/config/default_prompt/summarization_prompt.md,sha256=hRXH5E78TugSze_Hgp-KTbIhCeyrMcJg-pSXvXH3C9E,1629
227
227
  zrb/config/default_prompt/system_prompt.md,sha256=Jkne5n9HJcBCgfeENwxvqH-kbDO2CaiUzqR4VoWMRHY,3054
228
228
  zrb/config/llm_config.py,sha256=xt-Xf8ZuNoUT_GKCSFz5yy0BhbeHzxP-jrezB06WeiY,8857
229
- zrb/config/llm_context/config.py,sha256=6ipfKi_c8If-5nynw_kBTfweyS4MKjLZVQlSW4PWqZQ,4958
229
+ zrb/config/llm_context/config.py,sha256=PDsrKAduQfsEUMYt4jirG0F7KDkY7jqhrbsptxdMOEg,4962
230
230
  zrb/config/llm_context/config_parser.py,sha256=h95FbOjvVobhrsfGtG_BY3hxS-OLzQj-9F5vGZuehkY,1473
231
231
  zrb/config/llm_rate_limitter.py,sha256=P4vR7qxwiGwjlKx2kHcfdIxwGbJB98vdN-UQEH-Q2WU,4894
232
232
  zrb/config/web_auth_config.py,sha256=_PXatQTYh2mX9H3HSYSQKp13zm1RlLyVIoeIr6KYMQ8,6279
@@ -406,7 +406,7 @@ zrb/util/todo.py,sha256=r9_KYF2-hLKMNjsp6AFK9zivykMrywd-kJ4bCwfdafI,19323
406
406
  zrb/util/todo_model.py,sha256=hhzAX-uFl5rsg7iVX1ULlJOfBtblwQ_ieNUxBWfc-Os,1670
407
407
  zrb/xcom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
408
408
  zrb/xcom/xcom.py,sha256=o79rxR9wphnShrcIushA0Qt71d_p3ZTxjNf7x9hJB78,1571
409
- zrb-1.15.1.dist-info/METADATA,sha256=R-ZupKPzJzLZ2etZJrqYz1BdgJzzUbgv2aXaBX214pA,9807
410
- zrb-1.15.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
411
- zrb-1.15.1.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
412
- zrb-1.15.1.dist-info/RECORD,,
409
+ zrb-1.15.2.dist-info/METADATA,sha256=DGTvAoTQ6gl-buYjg9juPnZha4qwYckW6-7UmfG_0pY,9807
410
+ zrb-1.15.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
411
+ zrb-1.15.2.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
412
+ zrb-1.15.2.dist-info/RECORD,,
File without changes