zrb 1.9.3__tar.gz → 1.9.5__tar.gz

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.
Files changed (397) hide show
  1. {zrb-1.9.3 → zrb-1.9.5}/PKG-INFO +1 -1
  2. {zrb-1.9.3 → zrb-1.9.5}/pyproject.toml +1 -1
  3. zrb-1.9.5/src/zrb/__init__.py +134 -0
  4. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/__main__.py +1 -1
  5. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/__init__.py +0 -50
  6. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/chat_session.py +1 -1
  7. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/history.py +1 -1
  8. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/llm_ask.py +1 -1
  9. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/tool/code.py +1 -1
  10. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/tool/file.py +1 -1
  11. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/tool/rag.py +1 -1
  12. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/todo.py +1 -1
  13. {zrb-1.9.3/src/zrb → zrb-1.9.5/src/zrb/config}/config.py +2 -2
  14. {zrb-1.9.3/src/zrb → zrb-1.9.5/src/zrb/config}/llm_config.py +43 -28
  15. {zrb-1.9.3/src/zrb → zrb-1.9.5/src/zrb/config}/llm_rate_limitter.py +1 -1
  16. {zrb-1.9.3/src/zrb/runner → zrb-1.9.5/src/zrb/config}/web_auth_config.py +1 -1
  17. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/context/shared_context.py +1 -1
  18. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/text_input.py +1 -1
  19. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/cli.py +2 -2
  20. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_app.py +2 -2
  21. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/docs_route.py +1 -1
  22. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/error_page/serve_default_404.py +1 -1
  23. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/error_page/show_error_page.py +1 -1
  24. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/home_page/home_page_route.py +2 -2
  25. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/login_api_route.py +1 -1
  26. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/login_page/login_page_route.py +2 -2
  27. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/logout_api_route.py +1 -1
  28. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/logout_page/logout_page_route.py +2 -2
  29. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/node_page/group/show_group_page.py +1 -1
  30. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/node_page/node_page_route.py +1 -1
  31. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/node_page/task/show_task_page.py +1 -1
  32. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/refresh_token_api_route.py +1 -1
  33. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/static_route.py +1 -1
  34. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/task_input_api_route.py +1 -1
  35. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/task_session_api_route.py +1 -1
  36. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_util/cookie.py +1 -1
  37. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_util/token.py +1 -1
  38. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_util/user.py +1 -1
  39. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/session_state_logger/session_state_logger_factory.py +1 -1
  40. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/cmd_task.py +1 -1
  41. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/agent.py +1 -1
  42. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/config.py +1 -1
  43. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/context_enrichment.py +3 -3
  44. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/history_summarization.py +3 -3
  45. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/prompt.py +1 -1
  46. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm_task.py +1 -1
  47. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/init_path.py +1 -1
  48. zrb-1.9.3/src/zrb/__init__.py +0 -117
  49. {zrb-1.9.3 → zrb-1.9.5}/README.md +0 -0
  50. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/attr/__init__.py +0 -0
  51. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/attr/type.py +0 -0
  52. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/base64.py +0 -0
  53. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/git.py +0 -0
  54. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/git_subtree.py +0 -0
  55. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/group.py +0 -0
  56. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/http.py +0 -0
  57. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/jwt.py +0 -0
  58. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/input.py +0 -0
  59. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/previous-session.js +0 -0
  60. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/tool/__init__.py +0 -0
  61. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/tool/api.py +0 -0
  62. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/tool/cli.py +0 -0
  63. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/tool/sub_agent.py +0 -0
  64. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/llm/tool/web.py +0 -0
  65. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/md5.py +0 -0
  66. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/__init__.py +0 -0
  67. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_input.py +0 -0
  68. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_task.py +0 -0
  69. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/.coveragerc +0 -0
  70. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/.flake8 +0 -0
  71. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/.gitignore +0 -0
  72. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/README.md +0 -0
  73. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/__init__.py +0 -0
  74. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_task.py +0 -0
  75. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_util.py +0 -0
  76. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/config.py +0 -0
  77. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_task.py +0 -0
  78. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py +0 -0
  79. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/gateway/view/content/my-module/my-entity.html +0 -0
  80. {zrb-1.9.3 → zrb-1.9.5}/src/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 +0 -0
  81. {zrb-1.9.3 → zrb-1.9.5}/src/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 +0 -0
  82. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/my_module/service/my_entity/repository/my_entity_db_repository.py +0 -0
  83. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/my_module/service/my_entity/repository/my_entity_repository.py +0 -0
  84. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/my_module/service/my_entity/repository/my_entity_repository_factory.py +0 -0
  85. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/schema/my_entity.py +0 -0
  86. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/test/my_module/my_entity/test_create_my_entity.py +0 -0
  87. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/test/my_module/my_entity/test_delete_my_entity.py +0 -0
  88. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/test/my_module/my_entity/test_read_my_entity.py +0 -0
  89. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/test/my_module/my_entity/test_update_my_entity.py +0 -0
  90. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/client_method.py +0 -0
  91. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/gateway_subroute.py +0 -0
  92. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/navigation_config_file.py +0 -0
  93. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/format_task.py +0 -0
  94. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/group.py +0 -0
  95. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/input.py +0 -0
  96. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_task.py +0 -0
  97. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py +0 -0
  98. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/gateway/subroute/my_module.py +0 -0
  99. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/alembic.ini +0 -0
  100. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/client/my_module_api_client.py +0 -0
  101. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/client/my_module_client.py +0 -0
  102. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/client/my_module_client_factory.py +0 -0
  103. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/client/my_module_direct_client.py +0 -0
  104. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/migration/README +0 -0
  105. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/migration/env.py +0 -0
  106. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/migration/script.py.mako +0 -0
  107. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/migration/versions/.gitkeep +0 -0
  108. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/migration_metadata.py +0 -0
  109. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/route.py +0 -0
  110. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/service/__init__.py +0 -0
  111. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/module_task_definition.py +0 -0
  112. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/navigation_config_file.py +0 -0
  113. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/task.py +0 -0
  114. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/task_util.py +0 -0
  115. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/util.py +0 -0
  116. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/venv_task.py +0 -0
  117. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/__init__.py +0 -0
  118. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/app_factory.py +0 -0
  119. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/base_db_repository.py +0 -0
  120. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/base_service.py +0 -0
  121. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/db_engine_factory.py +0 -0
  122. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/error.py +0 -0
  123. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/logger_factory.py +0 -0
  124. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/parser_factory.py +0 -0
  125. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/schema.py +0 -0
  126. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/util/app.py +0 -0
  127. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/util/parser.py +0 -0
  128. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/util/user_agent.py +0 -0
  129. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/util/view.py +0 -0
  130. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/config.py +0 -0
  131. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/main.py +0 -0
  132. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/__init__.py +0 -0
  133. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/alembic.ini +0 -0
  134. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/client/auth_api_client.py +0 -0
  135. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/client/auth_client.py +0 -0
  136. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/client/auth_client_factory.py +0 -0
  137. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/client/auth_direct_client.py +0 -0
  138. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/migration/README +0 -0
  139. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/migration/env.py +0 -0
  140. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/migration/script.py.mako +0 -0
  141. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/migration/versions/3093c7336477_add_auth_tables.py +0 -0
  142. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/migration/versions/8ed025bcc845_create_permissions.py +0 -0
  143. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/migration_metadata.py +0 -0
  144. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/route.py +0 -0
  145. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/__init__.py +0 -0
  146. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/permission/__init__.py +0 -0
  147. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/permission/permission_service.py +0 -0
  148. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/permission/permission_service_factory.py +0 -0
  149. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/permission/repository/permission_db_repository.py +0 -0
  150. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/permission/repository/permission_repository.py +0 -0
  151. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/permission/repository/permission_repository_factory.py +0 -0
  152. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/role/__init__.py +0 -0
  153. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/role/repository/role_db_repository.py +0 -0
  154. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/role/repository/role_repository.py +0 -0
  155. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/role/repository/role_repository_factory.py +0 -0
  156. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/role/role_service.py +0 -0
  157. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/role/role_service_factory.py +0 -0
  158. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/user/__init__.py +0 -0
  159. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/user/repository/user_db_repository.py +0 -0
  160. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/user/repository/user_repository.py +0 -0
  161. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/user/repository/user_repository_factory.py +0 -0
  162. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/user/user_service.py +0 -0
  163. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/auth/service/user/user_service_factory.py +0 -0
  164. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/alembic.ini +0 -0
  165. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/config/navigation.py +0 -0
  166. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/migration/README +0 -0
  167. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/migration/env.py +0 -0
  168. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/migration/script.py.mako +0 -0
  169. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/migration/versions/.gitkeep +0 -0
  170. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/migration_metadata.py +0 -0
  171. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/route.py +0 -0
  172. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/schema/navigation.py +0 -0
  173. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/subroute/auth.py +0 -0
  174. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/util/auth.py +0 -0
  175. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/util/view.py +0 -0
  176. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/content/auth/permission.html +0 -0
  177. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/content/auth/role.html +0 -0
  178. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/content/auth/user.html +0 -0
  179. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/content/error.html +0 -0
  180. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/content/homepage.html +0 -0
  181. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/content/login.html +0 -0
  182. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/content/logout.html +0 -0
  183. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/common/util.js +0 -0
  184. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/crud/style.css +0 -0
  185. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/crud/util.js +0 -0
  186. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/default/pico-style.css +0 -0
  187. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/default/script.js +0 -0
  188. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/default/style.css +0 -0
  189. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/images/android-chrome-192x192.png +0 -0
  190. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/images/android-chrome-512x512.png +0 -0
  191. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/images/favicon-32x32.png +0 -0
  192. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.amber.min.css +0 -0
  193. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.blue.min.css +0 -0
  194. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.cyan.min.css +0 -0
  195. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.fuchsia.min.css +0 -0
  196. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.green.min.css +0 -0
  197. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.grey.min.css +0 -0
  198. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.indigo.min.css +0 -0
  199. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.jade.min.css +0 -0
  200. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.lime.min.css +0 -0
  201. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.min.css +0 -0
  202. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.orange.min.css +0 -0
  203. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.pink.min.css +0 -0
  204. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.pumpkin.min.css +0 -0
  205. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.purple.min.css +0 -0
  206. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.red.min.css +0 -0
  207. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.sand.min.css +0 -0
  208. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.slate.min.css +0 -0
  209. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.violet.min.css +0 -0
  210. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.yellow.min.css +0 -0
  211. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/static/pico-css/pico.zinc.min.css +0 -0
  212. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/module/gateway/view/template/default.html +0 -0
  213. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/requirements.txt +0 -0
  214. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/schema/__init__.py +0 -0
  215. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/schema/permission.py +0 -0
  216. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/schema/role.py +0 -0
  217. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/schema/user.py +0 -0
  218. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/template.env +0 -0
  219. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/_util/access_token.py +0 -0
  220. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/auth/permission/test_create_permission.py +0 -0
  221. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/auth/permission/test_delete_permission.py +0 -0
  222. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/auth/permission/test_read_permission.py +0 -0
  223. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/auth/permission/test_update_permission.py +0 -0
  224. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/auth/test_user_session.py +0 -0
  225. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_health_and_readiness.py +0 -0
  226. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_homepage.py +0 -0
  227. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_not_found_error.py +0 -0
  228. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test.sh +0 -0
  229. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/add/fastapp/fastapp_util.py +0 -0
  230. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/create/__init__.py +0 -0
  231. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/create/project-template/README.md +0 -0
  232. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/create/project-template/zrb_init.py +0 -0
  233. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/project/create/project_task.py +0 -0
  234. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/python.py +0 -0
  235. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/random.py +0 -0
  236. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/asdf/asdf.py +0 -0
  237. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/asdf/asdf_helper.py +0 -0
  238. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/common_input.py +0 -0
  239. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/latex/ubuntu.py +0 -0
  240. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/tmux/tmux.py +0 -0
  241. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/tmux/tmux_config.sh +0 -0
  242. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/tmux/tmux_helper.py +0 -0
  243. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/ubuntu.py +0 -0
  244. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/zsh/zsh.py +0 -0
  245. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/zsh/zsh_config.sh +0 -0
  246. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/setup/zsh/zsh_helper.py +0 -0
  247. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/shell/__init__.py +0 -0
  248. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/shell/autocomplete/__init__.py +0 -0
  249. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/shell/autocomplete/bash.py +0 -0
  250. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/shell/autocomplete/subcmd.py +0 -0
  251. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/shell/autocomplete/zsh.py +0 -0
  252. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/builtin/uuid.py +0 -0
  253. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/callback/__init__.py +0 -0
  254. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/callback/any_callback.py +0 -0
  255. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/callback/callback.py +0 -0
  256. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/cmd/__init__.py +0 -0
  257. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/cmd/cmd_result.py +0 -0
  258. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/cmd/cmd_val.py +0 -0
  259. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/content_transformer/__init__.py +0 -0
  260. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/content_transformer/any_content_transformer.py +0 -0
  261. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/content_transformer/content_transformer.py +0 -0
  262. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/context/__init__.py +0 -0
  263. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/context/any_context.py +0 -0
  264. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/context/any_shared_context.py +0 -0
  265. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/context/context.py +0 -0
  266. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/dot_dict/__init__.py +0 -0
  267. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/dot_dict/dot_dict.py +0 -0
  268. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/env/__init__.py +0 -0
  269. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/env/any_env.py +0 -0
  270. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/env/env.py +0 -0
  271. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/env/env_file.py +0 -0
  272. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/env/env_map.py +0 -0
  273. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/group/__init__.py +0 -0
  274. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/group/any_group.py +0 -0
  275. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/group/group.py +0 -0
  276. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/__init__.py +0 -0
  277. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/any_input.py +0 -0
  278. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/base_input.py +0 -0
  279. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/bool_input.py +0 -0
  280. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/float_input.py +0 -0
  281. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/int_input.py +0 -0
  282. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/option_input.py +0 -0
  283. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/password_input.py +0 -0
  284. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/input/str_input.py +0 -0
  285. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/__init__.py +0 -0
  286. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/common_util.py +0 -0
  287. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/__init__.py +0 -0
  288. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/error_page/view.html +0 -0
  289. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/home_page/__init__.py +0 -0
  290. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/home_page/view.html +0 -0
  291. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/login_page/view.html +0 -0
  292. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/logout_page/view.html +0 -0
  293. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/node_page/group/view.html +0 -0
  294. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/node_page/task/partial/input.html +0 -0
  295. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/node_page/task/view.html +0 -0
  296. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/global_template.html +0 -0
  297. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/refresh-token.template.js +0 -0
  298. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/common.css +0 -0
  299. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/common.js +0 -0
  300. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/favicon-32x32.png +0 -0
  301. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/login/event.js +0 -0
  302. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/logout/event.js +0 -0
  303. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.amber.min.css +0 -0
  304. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.blue.min.css +0 -0
  305. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.cyan.min.css +0 -0
  306. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.fuchsia.min.css +0 -0
  307. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.green.min.css +0 -0
  308. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.grey.min.css +0 -0
  309. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.indigo.min.css +0 -0
  310. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.jade.min.css +0 -0
  311. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.lime.min.css +0 -0
  312. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.min.css +0 -0
  313. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.orange.min.css +0 -0
  314. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.pink.min.css +0 -0
  315. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.pumpkin.min.css +0 -0
  316. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.purple.min.css +0 -0
  317. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.red.min.css +0 -0
  318. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.sand.min.css +0 -0
  319. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.slate.min.css +0 -0
  320. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.violet.min.css +0 -0
  321. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.yellow.min.css +0 -0
  322. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/pico-css/pico.zinc.min.css +0 -0
  323. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/session/common-util.js +0 -0
  324. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/session/current-session.js +0 -0
  325. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/session/event.js +0 -0
  326. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_route/static/resources/session/past-session.js +0 -0
  327. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_schema/session.py +0 -0
  328. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_schema/token.py +0 -0
  329. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_schema/user.py +0 -0
  330. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/runner/web_util/html.py +0 -0
  331. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/session/__init__.py +0 -0
  332. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/session/any_session.py +0 -0
  333. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/session/session.py +0 -0
  334. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/session_state_log/__init__.py +0 -0
  335. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/session_state_log/session_state_log.py +0 -0
  336. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/session_state_logger/__init__.py +0 -0
  337. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/session_state_logger/any_session_state_logger.py +0 -0
  338. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/session_state_logger/file_session_state_logger.py +0 -0
  339. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/__init__.py +0 -0
  340. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/any_task.py +0 -0
  341. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/base/__init__.py +0 -0
  342. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/base/context.py +0 -0
  343. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/base/execution.py +0 -0
  344. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/base/lifecycle.py +0 -0
  345. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/base/monitoring.py +0 -0
  346. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/base/operators.py +0 -0
  347. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/base_task.py +0 -0
  348. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/base_trigger.py +0 -0
  349. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/http_check.py +0 -0
  350. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/__init__.py +0 -0
  351. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/context.py +0 -0
  352. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/error.py +0 -0
  353. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/history.py +0 -0
  354. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/print_node.py +0 -0
  355. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/tool_wrapper.py +0 -0
  356. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/llm/typing.py +0 -0
  357. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/make_task.py +0 -0
  358. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/rsync_task.py +0 -0
  359. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/scaffolder.py +0 -0
  360. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/scheduler.py +0 -0
  361. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/task.py +0 -0
  362. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task/tcp_check.py +0 -0
  363. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task_status/__init__.py +0 -0
  364. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/task_status/task_status.py +0 -0
  365. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/__init__.py +0 -0
  366. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/attr.py +0 -0
  367. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/cli/__init__.py +0 -0
  368. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/cli/style.py +0 -0
  369. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/cli/subcommand.py +0 -0
  370. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/cmd/__init__.py +0 -0
  371. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/cmd/command.py +0 -0
  372. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/cmd/remote.py +0 -0
  373. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/__init__.py +0 -0
  374. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/modification_mode.py +0 -0
  375. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/modify_class.py +0 -0
  376. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/modify_class_parent.py +0 -0
  377. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/modify_class_property.py +0 -0
  378. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/modify_dict.py +0 -0
  379. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/modify_function.py +0 -0
  380. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/modify_function_call.py +0 -0
  381. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/modify_method.py +0 -0
  382. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/codemod/modify_module.py +0 -0
  383. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/cron.py +0 -0
  384. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/file.py +0 -0
  385. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/git.py +0 -0
  386. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/git_subtree.py +0 -0
  387. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/group.py +0 -0
  388. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/load.py +0 -0
  389. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/run.py +0 -0
  390. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/string/__init__.py +0 -0
  391. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/string/conversion.py +0 -0
  392. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/string/format.py +0 -0
  393. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/string/name.py +0 -0
  394. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/todo.py +0 -0
  395. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/util/todo_model.py +0 -0
  396. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/xcom/__init__.py +0 -0
  397. {zrb-1.9.3 → zrb-1.9.5}/src/zrb/xcom/xcom.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: zrb
3
- Version: 1.9.3
3
+ Version: 1.9.5
4
4
  Summary: Your Automation Powerhouse
5
5
  Home-page: https://github.com/state-alchemists/zrb
6
6
  License: AGPL-3.0-or-later
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "zrb"
3
- version = "1.9.3"
3
+ version = "1.9.5"
4
4
  description = "Your Automation Powerhouse"
5
5
  authors = ["Go Frendi Gunawan <gofrendiasgard@gmail.com>"]
6
6
  license = "AGPL-3.0-or-later"
@@ -0,0 +1,134 @@
1
+ import importlib
2
+ from typing import TYPE_CHECKING, Any
3
+
4
+ _LAZY_LOAD = {
5
+ "AnyAttr": "zrb.attr.type",
6
+ "BoolAttr": "zrb.attr.type",
7
+ "FloatAttr": "zrb.attr.type",
8
+ "IntAttr": "zrb.attr.type",
9
+ "StrAttr": "zrb.attr.type",
10
+ "StrDictAttr": "zrb.attr.type",
11
+ "fstring": "zrb.attr.type",
12
+ "AnyCallback": "zrb.callback.any_callback",
13
+ "Callback": "zrb.callback.callback",
14
+ "CmdResult": "zrb.cmd.cmd_result",
15
+ "Cmd": "zrb.cmd.cmd_val",
16
+ "CmdPath": "zrb.cmd.cmd_val",
17
+ "CFG": "zrb.config.config",
18
+ "AnyContentTransformer": "zrb.content_transformer.any_content_transformer",
19
+ "ContentTransformer": "zrb.content_transformer.content_transformer",
20
+ "AnyContext": "zrb.context.any_context",
21
+ "AnySharedContext": "zrb.context.any_shared_context",
22
+ "Context": "zrb.context.context",
23
+ "SharedContext": "zrb.context.shared_context",
24
+ "AnyEnv": "zrb.env.any_env",
25
+ "Env": "zrb.env.env",
26
+ "EnvFile": "zrb.env.env_file",
27
+ "EnvMap": "zrb.env.env_map",
28
+ "AnyGroup": "zrb.group.any_group",
29
+ "Group": "zrb.group.group",
30
+ "AnyInput": "zrb.input.any_input",
31
+ "BaseInput": "zrb.input.base_input",
32
+ "BoolInput": "zrb.input.bool_input",
33
+ "FloatInput": "zrb.input.float_input",
34
+ "IntInput": "zrb.input.int_input",
35
+ "OptionInput": "zrb.input.option_input",
36
+ "PasswordInput": "zrb.input.password_input",
37
+ "StrInput": "zrb.input.str_input",
38
+ "TextInput": "zrb.input.text_input",
39
+ "llm_config": "zrb.config.llm_config",
40
+ "llm_rate_limitter": "zrb.config.llm_rate_limitter",
41
+ "cli": "zrb.runner.cli",
42
+ "web_auth_config": "zrb.config.web_auth_config",
43
+ "User": "zrb.runner.web_schema.user",
44
+ "Session": "zrb.session.session",
45
+ "AnyTask": "zrb.task.any_task",
46
+ "BaseTask": "zrb.task.base_task",
47
+ "BaseTrigger": "zrb.task.base_trigger",
48
+ "CmdTask": "zrb.task.cmd_task",
49
+ "HttpCheck": "zrb.task.http_check",
50
+ "ConversationHistoryData": "zrb.task.llm.history",
51
+ "LLMTask": "zrb.task.llm_task",
52
+ "make_task": "zrb.task.make_task",
53
+ "RsyncTask": "zrb.task.rsync_task",
54
+ "Scaffolder": "zrb.task.scaffolder",
55
+ "Scheduler": "zrb.task.scheduler",
56
+ "Task": "zrb.task.task",
57
+ "TcpCheck": "zrb.task.tcp_check",
58
+ "load_file": "zrb.util.load",
59
+ "load_module": "zrb.util.load",
60
+ "Xcom": "zrb.xcom.xcom",
61
+ }
62
+
63
+ if TYPE_CHECKING:
64
+ from zrb.attr.type import (
65
+ AnyAttr,
66
+ BoolAttr,
67
+ FloatAttr,
68
+ IntAttr,
69
+ StrAttr,
70
+ StrDictAttr,
71
+ fstring,
72
+ )
73
+ from zrb.callback.any_callback import AnyCallback
74
+ from zrb.callback.callback import Callback
75
+ from zrb.cmd.cmd_result import CmdResult
76
+ from zrb.cmd.cmd_val import Cmd, CmdPath
77
+ from zrb.config.config import CFG
78
+ from zrb.config.llm_config import llm_config
79
+ from zrb.config.llm_rate_limitter import llm_rate_limitter
80
+ from zrb.config.web_auth_config import web_auth_config
81
+ from zrb.content_transformer.any_content_transformer import AnyContentTransformer
82
+ from zrb.content_transformer.content_transformer import ContentTransformer
83
+ from zrb.context.any_context import AnyContext
84
+ from zrb.context.any_shared_context import AnySharedContext
85
+ from zrb.context.context import Context
86
+ from zrb.context.shared_context import SharedContext
87
+ from zrb.env.any_env import AnyEnv
88
+ from zrb.env.env import Env
89
+ from zrb.env.env_file import EnvFile
90
+ from zrb.env.env_map import EnvMap
91
+ from zrb.group.any_group import AnyGroup
92
+ from zrb.group.group import Group
93
+ from zrb.input.any_input import AnyInput
94
+ from zrb.input.base_input import BaseInput
95
+ from zrb.input.bool_input import BoolInput
96
+ from zrb.input.float_input import FloatInput
97
+ from zrb.input.int_input import IntInput
98
+ from zrb.input.option_input import OptionInput
99
+ from zrb.input.password_input import PasswordInput
100
+ from zrb.input.str_input import StrInput
101
+ from zrb.input.text_input import TextInput
102
+ from zrb.runner.cli import cli
103
+ from zrb.runner.web_schema.user import User
104
+ from zrb.session.session import Session
105
+ from zrb.task.any_task import AnyTask
106
+ from zrb.task.base_task import BaseTask
107
+ from zrb.task.base_trigger import BaseTrigger
108
+ from zrb.task.cmd_task import CmdTask
109
+ from zrb.task.http_check import HttpCheck
110
+ from zrb.task.llm.history import ConversationHistoryData
111
+ from zrb.task.llm_task import LLMTask
112
+ from zrb.task.make_task import make_task
113
+ from zrb.task.rsync_task import RsyncTask
114
+ from zrb.task.scaffolder import Scaffolder
115
+ from zrb.task.scheduler import Scheduler
116
+ from zrb.task.task import Task
117
+ from zrb.task.tcp_check import TcpCheck
118
+ from zrb.util.load import load_file, load_module
119
+ from zrb.xcom.xcom import Xcom
120
+
121
+
122
+ def __getattr__(name: str) -> Any:
123
+ if name in _LAZY_LOAD:
124
+ module = importlib.import_module(_LAZY_LOAD[name])
125
+ return getattr(module, name)
126
+ raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
127
+
128
+
129
+ # Eager load CFG
130
+ CFG = __getattr__("CFG")
131
+ if CFG.LOAD_BUILTIN:
132
+ from zrb import builtin
133
+
134
+ assert builtin
@@ -2,7 +2,7 @@ import logging
2
2
  import os
3
3
  import sys
4
4
 
5
- from zrb.config import CFG
5
+ from zrb.config.config import CFG
6
6
  from zrb.runner.cli import cli
7
7
  from zrb.util.cli.style import stylize_error, stylize_faint, stylize_warning
8
8
  from zrb.util.group import NodeNotFoundError
@@ -43,53 +43,3 @@ from zrb.builtin.uuid import (
43
43
  validate_uuid_v4,
44
44
  validate_uuid_v5,
45
45
  )
46
-
47
- assert create_project
48
- assert add_fastapp_to_project
49
- assert get_shell_subcommands
50
- assert make_bash_autocomplete
51
- assert make_zsh_autocomplete
52
- assert encode_base64
53
- assert decode_base64
54
- assert validate_base64
55
- assert encode_jwt
56
- assert decode_jwt
57
- assert validate_jwt
58
- assert llm_ask
59
- assert hash_md5
60
- assert sum_md5
61
- assert validate_md5
62
- assert get_git_diff
63
- assert prune_local_branches
64
- assert format_python_code
65
- assert git_commit
66
- assert git_pull
67
- assert git_push
68
- assert git_add_subtree
69
- assert git_pull_subtree
70
- assert git_push_subtree
71
- assert list_todo
72
- assert add_todo
73
- assert archive_todo
74
- assert edit_todo
75
- assert complete_todo
76
- assert log_todo
77
- assert show_todo
78
- assert throw_dice
79
- assert shuffle_values
80
- assert setup_ubuntu
81
- assert setup_latex_on_ubuntu
82
- assert setup_asdf
83
- assert setup_tmux
84
- assert setup_zsh
85
- assert validate_uuid
86
- assert validate_uuid_v1
87
- assert validate_uuid_v3
88
- assert validate_uuid_v4
89
- assert validate_uuid_v5
90
- assert generate_uuid_v1
91
- assert generate_uuid_v3
92
- assert generate_uuid_v4
93
- assert generate_uuid_v5
94
- assert http_request
95
- assert generate_curl
@@ -7,8 +7,8 @@ conversation flow via XCom.
7
7
 
8
8
  import asyncio
9
9
 
10
+ from zrb.config.llm_config import llm_config
10
11
  from zrb.context.any_context import AnyContext
11
- from zrb.llm_config import llm_config
12
12
  from zrb.util.cli.style import stylize_bold_yellow, stylize_faint
13
13
 
14
14
 
@@ -2,7 +2,7 @@ import json
2
2
  import os
3
3
  from typing import Any
4
4
 
5
- from zrb.config import CFG
5
+ from zrb.config.config import CFG
6
6
  from zrb.context.any_shared_context import AnySharedContext
7
7
  from zrb.task.llm.history import ConversationHistoryData
8
8
  from zrb.util.file import read_file, write_file
@@ -22,7 +22,7 @@ from zrb.builtin.llm.tool.web import (
22
22
  search_wikipedia,
23
23
  )
24
24
  from zrb.callback.callback import Callback
25
- from zrb.config import CFG
25
+ from zrb.config.config import CFG
26
26
  from zrb.input.bool_input import BoolInput
27
27
  from zrb.input.str_input import StrInput
28
28
  from zrb.input.text_input import TextInput
@@ -3,8 +3,8 @@ import os
3
3
 
4
4
  from zrb.builtin.llm.tool.file import DEFAULT_EXCLUDED_PATTERNS, is_excluded
5
5
  from zrb.builtin.llm.tool.sub_agent import create_sub_agent_tool
6
+ from zrb.config.llm_rate_limitter import llm_rate_limitter
6
7
  from zrb.context.any_context import AnyContext
7
- from zrb.llm_rate_limitter import llm_rate_limitter
8
8
 
9
9
  _EXTRACT_INFO_FROM_REPO_SYSTEM_PROMPT = """
10
10
  You are an extraction info agent.
@@ -5,8 +5,8 @@ import re
5
5
  from typing import Any, Dict, List, Optional
6
6
 
7
7
  from zrb.builtin.llm.tool.sub_agent import create_sub_agent_tool
8
+ from zrb.config.llm_rate_limitter import llm_rate_limitter
8
9
  from zrb.context.any_context import AnyContext
9
- from zrb.llm_rate_limitter import llm_rate_limitter
10
10
  from zrb.util.file import read_file, read_file_with_line_numbers, write_file
11
11
 
12
12
  _EXTRACT_INFO_FROM_FILE_SYSTEM_PROMPT = """
@@ -8,7 +8,7 @@ from textwrap import dedent
8
8
 
9
9
  import ulid
10
10
 
11
- from zrb.config import CFG
11
+ from zrb.config.config import CFG
12
12
  from zrb.util.cli.style import stylize_error, stylize_faint
13
13
  from zrb.util.file import read_file
14
14
 
@@ -4,7 +4,7 @@ import os
4
4
  from typing import Any
5
5
 
6
6
  from zrb.builtin.group import todo_group
7
- from zrb.config import CFG
7
+ from zrb.config.config import CFG
8
8
  from zrb.context.any_context import AnyContext
9
9
  from zrb.input.str_input import StrInput
10
10
  from zrb.input.text_input import TextInput
@@ -167,11 +167,11 @@ class Config:
167
167
 
168
168
  @property
169
169
  def WEB_SUPER_ADMIN_USERNAME(self) -> str:
170
- return os.getenv("ZRB_WEB_SUPERADMIN_USERNAME", "admin")
170
+ return os.getenv("ZRB_WEB_SUPER_ADMIN_USERNAME", "admin")
171
171
 
172
172
  @property
173
173
  def WEB_SUPER_ADMIN_PASSWORD(self) -> str:
174
- return os.getenv("ZRB_WEB_SUPERADMIN_PASSWORD", "admin")
174
+ return os.getenv("ZRB_WEB_SUPER_ADMIN_PASSWORD", "admin")
175
175
 
176
176
  @property
177
177
  def WEB_ACCESS_TOKEN_COOKIE_NAME(self) -> str:
@@ -1,6 +1,6 @@
1
1
  from typing import TYPE_CHECKING
2
2
 
3
- from zrb.config import CFG
3
+ from zrb.config.config import CFG
4
4
 
5
5
  if TYPE_CHECKING:
6
6
  from pydantic_ai.models import Model
@@ -48,37 +48,52 @@ DEFAULT_SYSTEM_PROMPT = (
48
48
  ).strip()
49
49
 
50
50
  DEFAULT_SPECIAL_INSTRUCTION_PROMPT = (
51
- "If the user's request falls into a specialized category below, follow "
52
- "the associated protocol.\n\n"
51
+ "If the user's request falls into a specialized category below, you MUST "
52
+ "follow the associated protocol.\n\n"
53
53
  "---\n"
54
54
  "## Software Engineering Protocol\n"
55
- "This protocol applies to any request involving coding, debugging, or "
56
- "other software development tasks.\n\n"
57
- "### 1. Guiding Mandates\n"
58
- "- **Safety First:** Never perform destructive actions without explicit "
59
- "user confirmation. Explain critical commands before executing them.\n"
60
- "- **Adhere to Conventions:** Your changes must blend in seamlessly with "
61
- "the existing codebase. Match the formatting, naming, and architectural "
62
- "patterns. *Never assume* a project's conventions; use your tools to "
63
- "discover them.\n"
55
+ "This protocol applies to any request involving coding, debugging, "
56
+ "performance analysis, or other software development tasks.\n\n"
57
+ "### 1. Core Mandates\n"
58
+ "- **Safety First:** Never perform destructive actions (e.g., `rm -rf`) "
59
+ "without explicit user confirmation. Explain all critical commands before "
60
+ "executing them.\n"
61
+ "- **Adhere to Conventions:** Your changes MUST blend in seamlessly. "
62
+ "Match existing formatting, naming, and architectural patterns. *Never "
63
+ "assume* conventions; use your tools to discover them by reading "
64
+ "configuration files (e.g., `.gitignore`, `.flake8`), analyzing "
65
+ "neighboring code, and observing test patterns.\n"
64
66
  "- **No Assumptions on Dependencies:** Never assume a library or "
65
67
  "framework is available. Verify its presence in `package.json`, "
66
- "`requirements.txt`, or similar files first.\n\n"
67
- "### 2. Core Workflow\n"
68
- "1. **Understand:** Use your tools to analyze the relevant files and "
69
- "codebase. Announce what you are inspecting (e.g., 'Okay, I will read "
70
- "`main.py` and `utils.py` to understand the context.').\n"
71
- "2. **Plan:** Announce your step-by-step plan (e.g., 'Here is my plan: "
72
- "1. Add the function to `utils.py`. 2. Import and call it in `main.py`. "
73
- "3. Run the tests.').\n"
74
- "3. **Implement:** Execute the plan using your tools, following the "
75
- "mandates above.\n"
76
- "4. **Verify:** After making changes, run the relevant verification "
77
- "commands (e.g., tests, linters). Announce the command you will run "
78
- "(e.g., 'Now, I will run `npm test` to verify the changes.').\n"
79
- "5. **Conclude:** Report the results of the verification step. If "
80
- "successful, ask for the next step (e.g., 'All tests passed. Should I "
81
- "commit these changes?')."
68
+ "`requirements.txt`, `pyproject.toml`, or similar files first.\n\n"
69
+ "### 2. Diagnostic & Implementation Workflow\n"
70
+ "1. **Understand & Investigate (Tool-First):**\n"
71
+ " - **Initial Assessment:** Start by using tools to understand the "
72
+ "task and environment. Do not begin by simply reading files. Formulate "
73
+ "an investigation plan.\n"
74
+ " - **Information Gathering:** Use available tools to find relevant "
75
+ "information (e.g., project structure, framework, etc.) to complete the task.\n"
76
+ " - **For Performance/Bugs:** If the task is to fix a bug or analyze "
77
+ "performance, your first step is to try and reproduce it. Then, use "
78
+ "diagnostic tools. For performance, use a profiler (e.g., `cProfile`, etc.). "
79
+ "For bugs, run the tests and analyze logs.\n"
80
+ "2. **Plan:**\n"
81
+ " - Announce your step-by-step plan based on your investigation "
82
+ "(e.g., 'Here is my plan: 1. Add a profiling decorator to the slow "
83
+ "function. 2. Run the code to generate a profile. 3. Analyze the "
84
+ "results to identify the bottleneck.').\n"
85
+ "3. **Implement:**\n"
86
+ " - Execute the plan using your tools, strictly following the Core "
87
+ "Mandates.\n"
88
+ "4. **Verify:**\n"
89
+ " - After making changes, ALWAYS run the relevant verification "
90
+ "commands (e.g., tests, linters, build scripts). Announce the command "
91
+ "you will run (e.g., 'Now, I will run `pytest` to verify the "
92
+ "changes.').\n"
93
+ "5. **Conclude:**\n"
94
+ " - Report the results of the verification. If successful, the task "
95
+ "is complete. If it fails, return to step 1 to diagnose the new "
96
+ "problem."
82
97
  ).strip()
83
98
 
84
99
  DEFAULT_SUMMARIZATION_PROMPT = (
@@ -5,7 +5,7 @@ from typing import Callable
5
5
 
6
6
  import tiktoken
7
7
 
8
- from zrb.config import CFG
8
+ from zrb.config.config import CFG
9
9
 
10
10
 
11
11
  def _estimate_token(text: str) -> int:
@@ -1,6 +1,6 @@
1
1
  from typing import TYPE_CHECKING, Callable
2
2
 
3
- from zrb.config import CFG
3
+ from zrb.config.config import CFG
4
4
  from zrb.task.any_task import AnyTask
5
5
 
6
6
  if TYPE_CHECKING:
@@ -1,7 +1,7 @@
1
1
  import datetime
2
2
  from typing import Any
3
3
 
4
- from zrb.config import CFG
4
+ from zrb.config.config import CFG
5
5
  from zrb.context.any_shared_context import AnySharedContext
6
6
  from zrb.dot_dict.dot_dict import DotDict
7
7
  from zrb.session.any_session import AnySession
@@ -3,7 +3,7 @@ import subprocess
3
3
  import tempfile
4
4
  from collections.abc import Callable
5
5
 
6
- from zrb.config import CFG
6
+ from zrb.config.config import CFG
7
7
  from zrb.context.any_shared_context import AnySharedContext
8
8
  from zrb.input.base_input import BaseInput
9
9
  from zrb.util.file import read_file
@@ -1,13 +1,13 @@
1
1
  import sys
2
2
  from typing import Any
3
3
 
4
- from zrb.config import CFG
4
+ from zrb.config.config import CFG
5
+ from zrb.config.web_auth_config import web_auth_config
5
6
  from zrb.context.any_context import AnyContext
6
7
  from zrb.context.shared_context import SharedContext
7
8
  from zrb.group.any_group import AnyGroup
8
9
  from zrb.group.group import Group
9
10
  from zrb.runner.common_util import get_run_kwargs
10
- from zrb.runner.web_auth_config import web_auth_config
11
11
  from zrb.session.session import Session
12
12
  from zrb.session_state_logger.session_state_logger_factory import session_state_logger
13
13
  from zrb.task.any_task import AnyTask
@@ -2,9 +2,9 @@ import asyncio
2
2
  import sys
3
3
  from typing import TYPE_CHECKING
4
4
 
5
- from zrb.config import CFG
5
+ from zrb.config.config import CFG
6
+ from zrb.config.web_auth_config import WebAuthConfig
6
7
  from zrb.group.any_group import AnyGroup
7
- from zrb.runner.web_auth_config import WebAuthConfig
8
8
  from zrb.runner.web_route.docs_route import serve_docs
9
9
  from zrb.runner.web_route.error_page.serve_default_404 import serve_default_404
10
10
  from zrb.runner.web_route.home_page.home_page_route import serve_home_page
@@ -1,6 +1,6 @@
1
1
  from typing import TYPE_CHECKING
2
2
 
3
- from zrb.config import CFG
3
+ from zrb.config.config import CFG
4
4
 
5
5
  if TYPE_CHECKING:
6
6
  # We want fastapi to only be loaded when necessary to decrease footprint
@@ -1,7 +1,7 @@
1
1
  from typing import TYPE_CHECKING
2
2
 
3
+ from zrb.config.web_auth_config import WebAuthConfig
3
4
  from zrb.group.any_group import AnyGroup
4
- from zrb.runner.web_auth_config import WebAuthConfig
5
5
  from zrb.runner.web_route.error_page.show_error_page import show_error_page
6
6
  from zrb.runner.web_util.user import get_user_from_request
7
7
 
@@ -1,6 +1,6 @@
1
1
  import os
2
2
 
3
- from zrb.config import CFG
3
+ from zrb.config.config import CFG
4
4
  from zrb.group.any_group import AnyGroup
5
5
  from zrb.runner.web_schema.user import User
6
6
  from zrb.runner.web_util.html import get_html_auth_link
@@ -1,9 +1,9 @@
1
1
  import os
2
2
  from typing import TYPE_CHECKING
3
3
 
4
- from zrb.config import CFG
4
+ from zrb.config.config import CFG
5
+ from zrb.config.web_auth_config import WebAuthConfig
5
6
  from zrb.group.any_group import AnyGroup
6
- from zrb.runner.web_auth_config import WebAuthConfig
7
7
  from zrb.runner.web_util.html import (
8
8
  get_html_auth_link,
9
9
  get_html_subgroup_info,
@@ -1,6 +1,6 @@
1
1
  from typing import TYPE_CHECKING, Annotated
2
2
 
3
- from zrb.runner.web_auth_config import WebAuthConfig
3
+ from zrb.config.web_auth_config import WebAuthConfig
4
4
  from zrb.runner.web_util.cookie import set_auth_cookie
5
5
  from zrb.runner.web_util.token import generate_tokens_by_credentials
6
6
 
@@ -1,9 +1,9 @@
1
1
  import os
2
2
  from typing import TYPE_CHECKING
3
3
 
4
- from zrb.config import CFG
4
+ from zrb.config.config import CFG
5
+ from zrb.config.web_auth_config import WebAuthConfig
5
6
  from zrb.group.any_group import AnyGroup
6
- from zrb.runner.web_auth_config import WebAuthConfig
7
7
  from zrb.runner.web_util.html import get_html_auth_link
8
8
  from zrb.runner.web_util.user import get_user_from_request
9
9
  from zrb.util.file import read_file
@@ -1,6 +1,6 @@
1
1
  from typing import TYPE_CHECKING
2
2
 
3
- from zrb.runner.web_auth_config import WebAuthConfig
3
+ from zrb.config.web_auth_config import WebAuthConfig
4
4
 
5
5
  if TYPE_CHECKING:
6
6
  # We want fastapi to only be loaded when necessary to decrease footprint
@@ -1,9 +1,9 @@
1
1
  import os
2
2
  from typing import TYPE_CHECKING
3
3
 
4
- from zrb.config import CFG
4
+ from zrb.config.config import CFG
5
+ from zrb.config.web_auth_config import WebAuthConfig
5
6
  from zrb.group.any_group import AnyGroup
6
- from zrb.runner.web_auth_config import WebAuthConfig
7
7
  from zrb.runner.web_util.html import get_html_auth_link
8
8
  from zrb.runner.web_util.user import get_user_from_request
9
9
  from zrb.util.file import read_file
@@ -1,6 +1,6 @@
1
1
  import os
2
2
 
3
- from zrb.config import CFG
3
+ from zrb.config.config import CFG
4
4
  from zrb.group.any_group import AnyGroup
5
5
  from zrb.runner.web_schema.user import User
6
6
  from zrb.runner.web_util.html import (
@@ -1,9 +1,9 @@
1
1
  import os
2
2
  from typing import TYPE_CHECKING
3
3
 
4
+ from zrb.config.web_auth_config import WebAuthConfig
4
5
  from zrb.context.shared_context import SharedContext
5
6
  from zrb.group.any_group import AnyGroup
6
- from zrb.runner.web_auth_config import WebAuthConfig
7
7
  from zrb.runner.web_route.error_page.show_error_page import show_error_page
8
8
  from zrb.runner.web_route.node_page.group.show_group_page import show_group_page
9
9
  from zrb.runner.web_route.node_page.task.show_task_page import show_task_page
@@ -1,7 +1,7 @@
1
1
  import json
2
2
  import os
3
3
 
4
- from zrb.config import CFG
4
+ from zrb.config.config import CFG
5
5
  from zrb.group.any_group import AnyGroup
6
6
  from zrb.runner.web_schema.user import User
7
7
  from zrb.runner.web_util.html import get_html_auth_link
@@ -1,6 +1,6 @@
1
1
  from typing import TYPE_CHECKING
2
2
 
3
- from zrb.runner.web_auth_config import WebAuthConfig
3
+ from zrb.config.web_auth_config import WebAuthConfig
4
4
  from zrb.runner.web_schema.token import RefreshTokenRequest
5
5
  from zrb.runner.web_util.cookie import set_auth_cookie
6
6
  from zrb.runner.web_util.token import regenerate_tokens
@@ -1,7 +1,7 @@
1
1
  import os
2
2
  from typing import TYPE_CHECKING
3
3
 
4
- from zrb.runner.web_auth_config import WebAuthConfig
4
+ from zrb.config.web_auth_config import WebAuthConfig
5
5
  from zrb.util.file import read_file
6
6
 
7
7
  if TYPE_CHECKING:
@@ -1,9 +1,9 @@
1
1
  import json
2
2
  from typing import TYPE_CHECKING
3
3
 
4
+ from zrb.config.web_auth_config import WebAuthConfig
4
5
  from zrb.group.any_group import AnyGroup
5
6
  from zrb.runner.common_util import get_run_kwargs
6
- from zrb.runner.web_auth_config import WebAuthConfig
7
7
  from zrb.runner.web_util.user import get_user_from_request
8
8
  from zrb.task.any_task import AnyTask
9
9
  from zrb.util.group import NodeNotFoundError, extract_node_from_args
@@ -3,9 +3,9 @@ import os
3
3
  from datetime import datetime, timedelta
4
4
  from typing import TYPE_CHECKING, Any
5
5
 
6
+ from zrb.config.web_auth_config import WebAuthConfig
6
7
  from zrb.context.shared_context import SharedContext
7
8
  from zrb.group.any_group import AnyGroup
8
- from zrb.runner.web_auth_config import WebAuthConfig
9
9
  from zrb.runner.web_schema.session import NewSessionResponse
10
10
  from zrb.runner.web_util.user import get_user_from_request
11
11
  from zrb.session.session import Session
@@ -1,7 +1,7 @@
1
1
  from datetime import datetime, timedelta, timezone
2
2
  from typing import TYPE_CHECKING
3
3
 
4
- from zrb.runner.web_auth_config import WebAuthConfig
4
+ from zrb.config.web_auth_config import WebAuthConfig
5
5
  from zrb.runner.web_schema.token import Token
6
6
 
7
7
  if TYPE_CHECKING:
@@ -1,6 +1,6 @@
1
1
  from datetime import datetime, timedelta, timezone
2
2
 
3
- from zrb.runner.web_auth_config import WebAuthConfig
3
+ from zrb.config.web_auth_config import WebAuthConfig
4
4
  from zrb.runner.web_schema.token import Token
5
5
  from zrb.runner.web_util.user import get_user_by_credentials
6
6