flock-core 0.4.0b44__tar.gz → 0.4.0b46__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.

Potentially problematic release.


This version of flock-core might be problematic. Click here for more details.

Files changed (599) hide show
  1. flock_core-0.4.0b46/.github/ISSUE_TEMPLATE/vulnerability_report.md +85 -0
  2. flock_core-0.4.0b46/CODE_OF_CONDUCT.md +128 -0
  3. flock_core-0.4.0b46/CONTRIBUTING.md +151 -0
  4. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/PKG-INFO +1 -1
  5. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/about/contributing.md +31 -5
  6. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/pyproject.toml +1 -1
  7. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/manage_agents.py +19 -4
  8. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/endpoints.py +1 -1
  9. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/flock_agent.py +31 -0
  10. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/static/css/chat.css +22 -7
  11. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/base.html +1 -1
  12. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/chat.html +7 -1
  13. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_agent_detail_form.html +4 -3
  14. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_agent_list.html +1 -1
  15. flock_core-0.4.0b46/src/flock/webapp/templates/partials/_chat_container.html +15 -0
  16. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/uv.lock +1 -1
  17. flock_core-0.4.0b44/src/flock/webapp/templates/partials/_chat_container.html +0 -9
  18. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.devcontainer/devcontainer.json +0 -0
  19. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.env_template +0 -0
  20. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  21. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  22. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  23. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.github/workflows/.gitkeep +0 -0
  24. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.github/workflows/deploy-documentation.yml +0 -0
  25. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.github/workflows/deploy-whiteduck-pypi.yml +0 -0
  26. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.gitignore +0 -0
  27. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.gitmodules +0 -0
  28. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.vscode/launch.json +0 -0
  29. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.vscode/settings.json +0 -0
  30. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/.vscode/tasks.json +0 -0
  31. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/LICENSE +0 -0
  32. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/README.md +0 -0
  33. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/about/changelog.md +0 -0
  34. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/drawio/architecture.drawio +0 -0
  35. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/cli_outputs/out.png +0 -0
  36. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/components_chart.png +0 -0
  37. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/examples/01_01.png +0 -0
  38. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/examples/01_02.png +0 -0
  39. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/examples/01_03.png +0 -0
  40. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/examples/01_04.png +0 -0
  41. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/examples/01_05.png +0 -0
  42. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/examples/01_06.png +0 -0
  43. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/flock.png +0 -0
  44. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/flock_cli.png +0 -0
  45. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/flow_chart.png +0 -0
  46. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/getting-started/first_agent_00.png +0 -0
  47. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/hummingbird.png +0 -0
  48. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/icon.png +0 -0
  49. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/icon.png~ +0 -0
  50. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/logo.png +0 -0
  51. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/memory_concepts.png +0 -0
  52. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/memory_flow.png +0 -0
  53. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/assets/images/memory_flow_chart.png +0 -0
  54. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/components/evaluators.md +0 -0
  55. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/components/index.md +0 -0
  56. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/components/modules.md +0 -0
  57. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/components/tools.md +0 -0
  58. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/core-concepts/agents.md +0 -0
  59. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/core-concepts/declarative.md +0 -0
  60. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/core-concepts/index.md +0 -0
  61. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/core-concepts/workflows.md +0 -0
  62. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/create_doc_boilerplate.py +0 -0
  63. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/deployment/index.md +0 -0
  64. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/deployment/temporal.md +0 -0
  65. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/getting-started/concepts.md +0 -0
  66. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/getting-started/configuration.md +0 -0
  67. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/getting-started/index.md +0 -0
  68. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/getting-started/installation.md +0 -0
  69. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/getting-started/quickstart.md +0 -0
  70. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/guides/chaining-agents.md +0 -0
  71. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/guides/custom-endpoints.md +0 -0
  72. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/guides/index.md +0 -0
  73. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/guides/temporal-configuration.md +0 -0
  74. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/index.md +0 -0
  75. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/interacting-with-flock/cli-tool.md +0 -0
  76. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/interacting-with-flock/index.md +0 -0
  77. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/interacting-with-flock/interactive-cli.md +0 -0
  78. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/interacting-with-flock/programmatic.md +0 -0
  79. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/interacting-with-flock/rest-api.md +0 -0
  80. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/interacting-with-flock/web-ui.md +0 -0
  81. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/reference/flock_agent.md +0 -0
  82. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/reference/index.md +0 -0
  83. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/release-notes/magpie.md +0 -0
  84. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/docs/stylesheets/extra.css +0 -0
  85. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/mkdocs.yml +0 -0
  86. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/requirements.txt +0 -0
  87. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/scripts/code_collector.py +0 -0
  88. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/scripts/create_docs.py +0 -0
  89. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/scripts/ensure_uv.py +0 -0
  90. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/__init__.py +0 -0
  91. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/assets/release_notes.md +0 -0
  92. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/config.py +0 -0
  93. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/constants.py +0 -0
  94. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/create_agent.py +0 -0
  95. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/create_flock.py +0 -0
  96. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/execute_flock.py +0 -0
  97. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/load_agent.py +0 -0
  98. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/load_examples.py +0 -0
  99. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/load_flock.py +0 -0
  100. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/load_release_notes.py +0 -0
  101. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/loaded_flock_cli.py +0 -0
  102. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/registry_management.py +0 -0
  103. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/runner.py +0 -0
  104. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/settings.py +0 -0
  105. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/utils.py +0 -0
  106. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/view_results.py +0 -0
  107. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/cli/yaml_editor.py +0 -0
  108. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/config.py +0 -0
  109. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/__init__.py +0 -0
  110. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/__init__.py +0 -0
  111. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/custom_endpoint.py +0 -0
  112. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/main.py +0 -0
  113. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/models.py +0 -0
  114. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/run_store.py +0 -0
  115. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/runner.py +0 -0
  116. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/service.py +0 -0
  117. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/ui/__init__.py +0 -0
  118. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/ui/routes.py +0 -0
  119. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/api/ui/utils.py +0 -0
  120. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/context/context.py +0 -0
  121. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/context/context_manager.py +0 -0
  122. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/context/context_vars.py +0 -0
  123. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/evaluation/utils.py +0 -0
  124. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/execution/batch_executor.py +0 -0
  125. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/execution/evaluation_executor.py +0 -0
  126. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/execution/local_executor.py +0 -0
  127. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/execution/temporal_executor.py +0 -0
  128. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/flock.py +0 -0
  129. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/flock_evaluator.py +0 -0
  130. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/flock_factory.py +0 -0
  131. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/flock_module.py +0 -0
  132. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/flock_registry.py +0 -0
  133. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/flock_router.py +0 -0
  134. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/interpreter/python_interpreter.py +0 -0
  135. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/__init__.py +0 -0
  136. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/formatters/enum_builder.py +0 -0
  137. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/formatters/theme_builder.py +0 -0
  138. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/formatters/themed_formatter.py +0 -0
  139. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/formatters/themes.py +0 -0
  140. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/logging.py +0 -0
  141. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/span_middleware/baggage_span_processor.py +0 -0
  142. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/telemetry.py +0 -0
  143. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/telemetry_exporter/base_exporter.py +0 -0
  144. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/telemetry_exporter/file_exporter.py +0 -0
  145. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/telemetry_exporter/sqlite_exporter.py +0 -0
  146. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/logging/trace_and_logged.py +0 -0
  147. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/mixin/dspy_integration.py +0 -0
  148. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/mixin/prompt_parser.py +0 -0
  149. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/serialization/__init__.py +0 -0
  150. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/serialization/callable_registry.py +0 -0
  151. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/serialization/flock_serializer.py +0 -0
  152. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/serialization/json_encoder.py +0 -0
  153. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/serialization/secure_serializer.py +0 -0
  154. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/serialization/serializable.py +0 -0
  155. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/serialization/serialization_utils.py +0 -0
  156. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/tools/azure_tools.py +0 -0
  157. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/tools/basic_tools.py +0 -0
  158. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/tools/dev_tools/github.py +0 -0
  159. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/tools/llm_tools.py +0 -0
  160. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/tools/markdown_tools.py +0 -0
  161. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/tools/zendesk_tools.py +0 -0
  162. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/util/cli_helper.py +0 -0
  163. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/util/file_path_utils.py +0 -0
  164. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/util/hydrator.py +0 -0
  165. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/util/input_resolver.py +0 -0
  166. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/util/loader.py +0 -0
  167. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/core/util/spliter.py +0 -0
  168. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/evaluators/declarative/declarative_evaluator.py +0 -0
  169. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/evaluators/memory/memory_evaluator.py +0 -0
  170. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/evaluators/test/test_case_evaluator.py +0 -0
  171. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/evaluators/zep/zep_evaluator.py +0 -0
  172. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/modules/assertion/assertion_module.py +0 -0
  173. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/modules/callback/callback_module.py +0 -0
  174. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/modules/memory/memory_module.py +0 -0
  175. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/modules/memory/memory_parser.py +0 -0
  176. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/modules/memory/memory_storage.py +0 -0
  177. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/modules/output/output_module.py +0 -0
  178. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/modules/performance/metrics_module.py +0 -0
  179. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/modules/zep/zep_module.py +0 -0
  180. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/platform/docker_tools.py +0 -0
  181. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/platform/jaeger_install.py +0 -0
  182. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/__init__.py +0 -0
  183. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/agent/__init__.py +0 -0
  184. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/agent/agent_router.py +0 -0
  185. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/agent/handoff_agent.py +0 -0
  186. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/conditional/conditional_router.py +0 -0
  187. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/default/__init__.py +0 -0
  188. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/default/default_router.py +0 -0
  189. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/feedback/feedback_router.py +0 -0
  190. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/list_generator/list_generator_router.py +0 -0
  191. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/llm/__init__.py +0 -0
  192. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/routers/llm/llm_router.py +0 -0
  193. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/3024-day.toml +0 -0
  194. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/3024-night.toml +0 -0
  195. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/aardvark-blue.toml +0 -0
  196. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/abernathy.toml +0 -0
  197. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/adventure.toml +0 -0
  198. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/adventuretime.toml +0 -0
  199. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/afterglow.toml +0 -0
  200. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/alabaster.toml +0 -0
  201. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/alienblood.toml +0 -0
  202. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/andromeda.toml +0 -0
  203. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/apple-classic.toml +0 -0
  204. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/apple-system-colors.toml +0 -0
  205. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/arcoiris.toml +0 -0
  206. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/argonaut copy.toml +0 -0
  207. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/argonaut.toml +0 -0
  208. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/arthur.toml +0 -0
  209. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ateliersulphurpool.toml +0 -0
  210. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/atom.toml +0 -0
  211. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/atom_test.toml +0 -0
  212. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/atomonelight.toml +0 -0
  213. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/aurora.toml +0 -0
  214. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ayu copy.toml +0 -0
  215. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ayu-light.toml +0 -0
  216. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ayu-mirage.toml +0 -0
  217. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ayu.toml +0 -0
  218. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/banana-blueberry.toml +0 -0
  219. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/batman.toml +0 -0
  220. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/belafonte-day.toml +0 -0
  221. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/belafonte-night.toml +0 -0
  222. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/birdsofparadise.toml +0 -0
  223. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/blazer.toml +0 -0
  224. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/blue-matrix.toml +0 -0
  225. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/blueberrypie.toml +0 -0
  226. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/bluedolphin.toml +0 -0
  227. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/blulocodark.toml +0 -0
  228. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/blulocolight.toml +0 -0
  229. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/borland.toml +0 -0
  230. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/breeze.toml +0 -0
  231. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/bright-lights.toml +0 -0
  232. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/broadcast.toml +0 -0
  233. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/brogrammer.toml +0 -0
  234. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/builtin-dark.toml +0 -0
  235. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/builtin-light.toml +0 -0
  236. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/builtin-pastel-dark.toml +0 -0
  237. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/builtin-solarized-dark.toml +0 -0
  238. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/builtin-solarized-light.toml +0 -0
  239. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/builtin-tango-dark.toml +0 -0
  240. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/builtin-tango-light.toml +0 -0
  241. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/c64.toml +0 -0
  242. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/calamity.toml +0 -0
  243. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/catppuccin-frappe.toml +0 -0
  244. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/catppuccin-latte.toml +0 -0
  245. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/catppuccin-macchiato.toml +0 -0
  246. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/catppuccin-mocha.toml +0 -0
  247. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/cga.toml +0 -0
  248. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/chalk.toml +0 -0
  249. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/chalkboard.toml +0 -0
  250. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/challengerdeep.toml +0 -0
  251. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/chester.toml +0 -0
  252. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ciapre.toml +0 -0
  253. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/clrs.toml +0 -0
  254. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/cobalt-neon.toml +0 -0
  255. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/cobalt2.toml +0 -0
  256. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/coffee-theme.toml +0 -0
  257. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/crayonponyfish.toml +0 -0
  258. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/cutiepro.toml +0 -0
  259. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/cyberdyne.toml +0 -0
  260. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/cyberpunk.toml +0 -0
  261. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/cyberpunkscarletprotocol.toml +0 -0
  262. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/dark+.toml +0 -0
  263. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/dark-pastel.toml +0 -0
  264. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/darkermatrix.toml +0 -0
  265. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/darkmatrix.toml +0 -0
  266. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/darkside.toml +0 -0
  267. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/dayfox.toml +0 -0
  268. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/deep.toml +0 -0
  269. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/desert.toml +0 -0
  270. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/dimidium.toml +0 -0
  271. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/dimmedmonokai.toml +0 -0
  272. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/django.toml +0 -0
  273. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/djangorebornagain.toml +0 -0
  274. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/djangosmooth.toml +0 -0
  275. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/doom-peacock.toml +0 -0
  276. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/doomone.toml +0 -0
  277. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/dotgov.toml +0 -0
  278. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/dracula+.toml +0 -0
  279. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/dracula.toml +0 -0
  280. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/duckbones.toml +0 -0
  281. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/duotone-dark.toml +0 -0
  282. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/earthsong.toml +0 -0
  283. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/elemental.toml +0 -0
  284. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/elementary.toml +0 -0
  285. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/encom.toml +0 -0
  286. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/espresso-libre.toml +0 -0
  287. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/espresso.toml +0 -0
  288. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/everblush.toml +0 -0
  289. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/fahrenheit.toml +0 -0
  290. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/fairyfloss.toml +0 -0
  291. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/farmhouse-dark.toml +0 -0
  292. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/farmhouse-light.toml +0 -0
  293. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/fideloper.toml +0 -0
  294. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/firefly-traditional.toml +0 -0
  295. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/firefoxdev.toml +0 -0
  296. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/firewatch.toml +0 -0
  297. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/fishtank.toml +0 -0
  298. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/flat.toml +0 -0
  299. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/flatland.toml +0 -0
  300. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/flexoki-dark.toml +0 -0
  301. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/flexoki-light.toml +0 -0
  302. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/floraverse.toml +0 -0
  303. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/forestblue.toml +0 -0
  304. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/framer.toml +0 -0
  305. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/frontenddelight.toml +0 -0
  306. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/funforrest.toml +0 -0
  307. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/galaxy.toml +0 -0
  308. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/galizur.toml +0 -0
  309. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/github-dark.toml +0 -0
  310. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/github.toml +0 -0
  311. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/glacier.toml +0 -0
  312. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/grape.toml +0 -0
  313. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/grass.toml +0 -0
  314. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/grey-green.toml +0 -0
  315. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/gruber-darker.toml +0 -0
  316. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/gruvboxdark.toml +0 -0
  317. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/gruvboxdarkhard.toml +0 -0
  318. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/gruvboxlight.toml +0 -0
  319. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/guezwhoz.toml +0 -0
  320. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hacktober.toml +0 -0
  321. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hardcore.toml +0 -0
  322. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/harper.toml +0 -0
  323. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hax0r-blue.toml +0 -0
  324. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hax0r-gr33n.toml +0 -0
  325. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hax0r-r3d.toml +0 -0
  326. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/highway.toml +0 -0
  327. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hipster-green.toml +0 -0
  328. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hivacruz.toml +0 -0
  329. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/homebrew.toml +0 -0
  330. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hopscotch.256.toml +0 -0
  331. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hopscotch.toml +0 -0
  332. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hurtado.toml +0 -0
  333. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/hybrid.toml +0 -0
  334. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ic-green-ppl.toml +0 -0
  335. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ic-orange-ppl.toml +0 -0
  336. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iceberg-dark.toml +0 -0
  337. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iceberg-light.toml +0 -0
  338. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/idea.toml +0 -0
  339. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/idletoes.toml +0 -0
  340. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ir-black.toml +0 -0
  341. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iterm2-dark-background.toml +0 -0
  342. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iterm2-default.toml +0 -0
  343. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iterm2-light-background.toml +0 -0
  344. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iterm2-pastel-dark-background.toml +0 -0
  345. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iterm2-smoooooth.toml +0 -0
  346. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iterm2-solarized-dark.toml +0 -0
  347. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iterm2-solarized-light.toml +0 -0
  348. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iterm2-tango-dark.toml +0 -0
  349. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/iterm2-tango-light.toml +0 -0
  350. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/jackie-brown.toml +0 -0
  351. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/japanesque.toml +0 -0
  352. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/jellybeans.toml +0 -0
  353. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/jetbrains-darcula.toml +0 -0
  354. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/jubi.toml +0 -0
  355. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/kanagawabones.toml +0 -0
  356. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/kibble.toml +0 -0
  357. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/kolorit.toml +0 -0
  358. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/konsolas.toml +0 -0
  359. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/kurokula.toml +0 -0
  360. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/lab-fox.toml +0 -0
  361. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/laser.toml +0 -0
  362. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/later-this-evening.toml +0 -0
  363. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/lavandula.toml +0 -0
  364. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/liquidcarbon.toml +0 -0
  365. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/liquidcarbontransparent.toml +0 -0
  366. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/liquidcarbontransparentinverse.toml +0 -0
  367. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/lovelace.toml +0 -0
  368. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/man-page.toml +0 -0
  369. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/mariana.toml +0 -0
  370. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/material.toml +0 -0
  371. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/materialdark.toml +0 -0
  372. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/materialdarker.toml +0 -0
  373. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/materialdesigncolors.toml +0 -0
  374. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/materialocean.toml +0 -0
  375. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/mathias.toml +0 -0
  376. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/matrix.toml +0 -0
  377. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/medallion.toml +0 -0
  378. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/mellifluous.toml +0 -0
  379. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/midnight-in-mojave.toml +0 -0
  380. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/mirage.toml +0 -0
  381. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/misterioso.toml +0 -0
  382. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/molokai.toml +0 -0
  383. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/monalisa.toml +0 -0
  384. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/monokai-remastered.toml +0 -0
  385. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/monokai-soda.toml +0 -0
  386. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/monokai-vivid.toml +0 -0
  387. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/n0tch2k.toml +0 -0
  388. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/neobones-dark.toml +0 -0
  389. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/neobones-light.toml +0 -0
  390. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/neon.toml +0 -0
  391. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/neopolitan.toml +0 -0
  392. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/neutron.toml +0 -0
  393. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/night-owlish-light.toml +0 -0
  394. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/nightfox.toml +0 -0
  395. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/nightlion-v1.toml +0 -0
  396. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/nightlion-v2.toml +0 -0
  397. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/niji.toml +0 -0
  398. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/nocturnal-winter.toml +0 -0
  399. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/nord-light.toml +0 -0
  400. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/nord.toml +0 -0
  401. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/novel.toml +0 -0
  402. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/nvimdark.toml +0 -0
  403. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/nvimlight.toml +0 -0
  404. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/obsidian.toml +0 -0
  405. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ocean.toml +0 -0
  406. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/oceanic-next.toml +0 -0
  407. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/oceanicmaterial.toml +0 -0
  408. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ollie.toml +0 -0
  409. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/onehalfdark.toml +0 -0
  410. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/onehalflight.toml +0 -0
  411. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/operator-mono-dark.toml +0 -0
  412. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/overnight-slumber.toml +0 -0
  413. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/oxocarbon.toml +0 -0
  414. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/palenighthc.toml +0 -0
  415. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/pandora.toml +0 -0
  416. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/paraiso-dark.toml +0 -0
  417. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/paulmillr.toml +0 -0
  418. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/pencildark.toml +0 -0
  419. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/pencillight.toml +0 -0
  420. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/peppermint.toml +0 -0
  421. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/piatto-light.toml +0 -0
  422. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/pnevma.toml +0 -0
  423. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/popping-and-locking.toml +0 -0
  424. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/primary.toml +0 -0
  425. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/pro-light.toml +0 -0
  426. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/pro.toml +0 -0
  427. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/purple-rain.toml +0 -0
  428. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/purplepeter.toml +0 -0
  429. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/rapture.toml +0 -0
  430. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/raycast-dark.toml +0 -0
  431. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/raycast-light.toml +0 -0
  432. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/rebecca.toml +0 -0
  433. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/red-alert.toml +0 -0
  434. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/red-planet.toml +0 -0
  435. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/red-sands.toml +0 -0
  436. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/relaxed.toml +0 -0
  437. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/retro.toml +0 -0
  438. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/rippedcasts.toml +0 -0
  439. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/rose-pine-dawn.toml +0 -0
  440. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/rose-pine-moon.toml +0 -0
  441. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/rose-pine.toml +0 -0
  442. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/rouge-2.toml +0 -0
  443. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/royal.toml +0 -0
  444. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ryuuko.toml +0 -0
  445. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/sakura.toml +0 -0
  446. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/scarlet-protocol.toml +0 -0
  447. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/seafoam-pastel.toml +0 -0
  448. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/seashells.toml +0 -0
  449. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/seoulbones-dark.toml +0 -0
  450. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/seoulbones-light.toml +0 -0
  451. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/seti.toml +0 -0
  452. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/shades-of-purple.toml +0 -0
  453. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/shaman.toml +0 -0
  454. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/slate.toml +0 -0
  455. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/sleepyhollow.toml +0 -0
  456. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/smyck.toml +0 -0
  457. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/snazzy.toml +0 -0
  458. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/softserver.toml +0 -0
  459. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/solarized-darcula.toml +0 -0
  460. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/solarized-dark---patched.toml +0 -0
  461. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/solarized-dark-higher-contrast.toml +0 -0
  462. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/spacedust.toml +0 -0
  463. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/spacegray-eighties-dull.toml +0 -0
  464. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/spacegray-eighties.toml +0 -0
  465. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/spacegray.toml +0 -0
  466. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/spiderman.toml +0 -0
  467. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/spring.toml +0 -0
  468. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/square.toml +0 -0
  469. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/sublette.toml +0 -0
  470. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/subliminal.toml +0 -0
  471. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/sugarplum.toml +0 -0
  472. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/sundried.toml +0 -0
  473. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/symfonic.toml +0 -0
  474. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/synthwave-everything.toml +0 -0
  475. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/synthwave.toml +0 -0
  476. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/synthwavealpha.toml +0 -0
  477. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tango-adapted.toml +0 -0
  478. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tango-half-adapted.toml +0 -0
  479. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/teerb.toml +0 -0
  480. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/terafox.toml +0 -0
  481. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/terminal-basic.toml +0 -0
  482. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/thayer-bright.toml +0 -0
  483. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/the-hulk.toml +0 -0
  484. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tinacious-design-(dark).toml +0 -0
  485. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tinacious-design-(light).toml +0 -0
  486. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tokyonight-day.toml +0 -0
  487. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tokyonight-storm.toml +0 -0
  488. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tokyonight.toml +0 -0
  489. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tomorrow-night-blue.toml +0 -0
  490. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tomorrow-night-bright.toml +0 -0
  491. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tomorrow-night-burns.toml +0 -0
  492. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tomorrow-night-eighties.toml +0 -0
  493. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tomorrow-night.toml +0 -0
  494. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/tomorrow.toml +0 -0
  495. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/toychest.toml +0 -0
  496. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/treehouse.toml +0 -0
  497. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/twilight.toml +0 -0
  498. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ubuntu.toml +0 -0
  499. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ultradark.toml +0 -0
  500. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/ultraviolent.toml +0 -0
  501. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/underthesea.toml +0 -0
  502. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/unikitty.toml +0 -0
  503. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/urple.toml +0 -0
  504. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/vaughn.toml +0 -0
  505. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/vesper.toml +0 -0
  506. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/vibrantink.toml +0 -0
  507. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/vimbones.toml +0 -0
  508. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/violet-dark.toml +0 -0
  509. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/violet-light.toml +0 -0
  510. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/warmneon.toml +0 -0
  511. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/wez.toml +0 -0
  512. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/whimsy.toml +0 -0
  513. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/wildcherry.toml +0 -0
  514. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/wilmersdorf.toml +0 -0
  515. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/wombat.toml +0 -0
  516. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/wryan.toml +0 -0
  517. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/xcodedark.toml +0 -0
  518. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/xcodedarkhc.toml +0 -0
  519. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/xcodelight.toml +0 -0
  520. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/xcodelighthc.toml +0 -0
  521. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/xcodewwdc.toml +0 -0
  522. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/zenbones-dark.toml +0 -0
  523. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/zenbones-light.toml +0 -0
  524. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/zenbones.toml +0 -0
  525. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/zenburn.toml +0 -0
  526. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/zenburned.toml +0 -0
  527. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/zenwritten-dark.toml +0 -0
  528. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/themes/zenwritten-light.toml +0 -0
  529. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/__init__.py +0 -0
  530. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/__init__.py +0 -0
  531. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/api/__init__.py +0 -0
  532. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/api/agent_management.py +0 -0
  533. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/api/execution.py +0 -0
  534. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/api/flock_management.py +0 -0
  535. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/api/registry_viewer.py +0 -0
  536. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/chat.py +0 -0
  537. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/config.py +0 -0
  538. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/dependencies.py +0 -0
  539. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/main.py +0 -0
  540. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/models_ui.py +0 -0
  541. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/services/__init__.py +0 -0
  542. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/services/flock_service.py +0 -0
  543. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/templates/theme_mapper.html +0 -0
  544. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/theme_mapper.py +0 -0
  545. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/app/utils.py +0 -0
  546. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/run.py +0 -0
  547. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/static/css/components.css +0 -0
  548. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/static/css/header.css +0 -0
  549. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/static/css/layout.css +0 -0
  550. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/static/css/sidebar.css +0 -0
  551. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/chat_settings.html +0 -0
  552. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/flock_editor.html +0 -0
  553. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/index.html +0 -0
  554. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_agent_manager_view.html +0 -0
  555. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_agent_tools_checklist.html +0 -0
  556. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_chat_messages.html +0 -0
  557. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_chat_settings_form.html +0 -0
  558. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_create_flock_form.html +0 -0
  559. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_dashboard_flock_detail.html +0 -0
  560. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_dashboard_flock_file_list.html +0 -0
  561. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_dashboard_flock_properties_preview.html +0 -0
  562. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_dashboard_upload_flock_form.html +0 -0
  563. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_dynamic_input_form_content.html +0 -0
  564. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_env_vars_table.html +0 -0
  565. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_execution_form.html +0 -0
  566. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_execution_view_container.html +0 -0
  567. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_flock_file_list.html +0 -0
  568. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_flock_properties_form.html +0 -0
  569. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_flock_upload_form.html +0 -0
  570. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_header_flock_status.html +0 -0
  571. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_load_manager_view.html +0 -0
  572. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_registry_table.html +0 -0
  573. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_registry_viewer_content.html +0 -0
  574. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_results_display.html +0 -0
  575. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_settings_env_content.html +0 -0
  576. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_settings_theme_content.html +0 -0
  577. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_settings_view.html +0 -0
  578. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_sidebar.html +0 -0
  579. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_structured_data_view.html +0 -0
  580. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/partials/_theme_preview.html +0 -0
  581. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/webapp/templates/registry_viewer.html +0 -0
  582. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/workflow/__init__.py +0 -0
  583. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/workflow/activities.py +0 -0
  584. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/workflow/agent_activities.py +0 -0
  585. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/workflow/agent_execution_activity.py +0 -0
  586. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/workflow/flock_workflow.py +0 -0
  587. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/workflow/temporal_config.py +0 -0
  588. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/src/flock/workflow/temporal_setup.py +0 -0
  589. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/__init__.py +0 -0
  590. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/api/test_custom_endpoints.py +0 -0
  591. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/core/test_flock_batch.py +0 -0
  592. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/core/test_flock_core.py +0 -0
  593. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/serialization/__init__.py +0 -0
  594. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/serialization/test_enhanced_serialization.py +0 -0
  595. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/serialization/test_file_path_serialization.py +0 -0
  596. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/serialization/test_flock_serializer.py +0 -0
  597. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/serialization/test_nested_serialization.py +0 -0
  598. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/serialization/test_yaml_serialization.py +0 -0
  599. {flock_core-0.4.0b44 → flock_core-0.4.0b46}/tests/tools/test_zendesk_tools.py +0 -0
@@ -0,0 +1,85 @@
1
+ ---
2
+ name: Vulnerability Report
3
+ about: Report a security vulnerability in the project
4
+ title: "[Vulnerability] <Brief Summary of the Vulnerability>"
5
+ labels: vulnerability, security
6
+ assignees: ''
7
+ ---
8
+
9
+ <!--
10
+ Note: Please search to see if an issue already exists for the vulnerability you encountered.
11
+ -->
12
+
13
+
14
+ # Vulnerability Details
15
+
16
+ **Title:**
17
+ <!-- A brief title summarizing the vulnerability (e.g. "SQL Injection in Agent Tool xyz") -->
18
+
19
+ **Description:**
20
+ <!--
21
+ A detailed description of the vulnerability.
22
+ Explain what the vulnerability is, what components
23
+ of the framework it affects, and any specific configurations
24
+ or conditions that may lead to exploitation.
25
+ -->
26
+
27
+ **Impact:**
28
+ <!--
29
+ Explain the potential impact of the vulnerability on the framework and users, including
30
+ what information could be exposed, altered, or destroyed.
31
+
32
+
33
+ Include any possible scenarios in which the vulnerability could be exploited.
34
+ -->
35
+
36
+ ## Steps to Reproduce
37
+
38
+ <!--
39
+
40
+ Please provide a clear and concise list of steps to reproduce the vulnerability:
41
+
42
+ -->
43
+
44
+ ## Evidence:
45
+
46
+ <!--
47
+
48
+ If possible, please provide any screenshots, logs, or console outputs that
49
+ demonstrate the vulnerability.
50
+
51
+ This helps to convey the issue effectively.
52
+ -->
53
+
54
+ ## Environment
55
+
56
+ <!--
57
+
58
+ Please provide details about the environment in which you discovered the vulnerability:
59
+
60
+ - **Operating System:** (e.g., Windows 10, Ubuntu 20.04)
61
+ - **Browser:** (e.g., Chrome 92, Firefox 89)
62
+ - **Application Version:** (e.g., 1.2.3)
63
+ - **Library Versions:** (list any libraries or dependencies relevant to the vulnerability)
64
+
65
+ -->
66
+
67
+ ## Suggested Mitigation
68
+
69
+ <!--
70
+
71
+ If you have thoughts on how to fix or mitigate the vulnerabilit, please provide them below.
72
+ This could include code changes, configurations, or references to best practices.
73
+
74
+ -->
75
+
76
+ ## Additional Context
77
+
78
+ <!--
79
+ Provide any additional context or information that you believe is necessary for understanding
80
+ the vulnerability or its implications.
81
+ -->
82
+ ---
83
+
84
+ **Thank you for reporting!**
85
+ We appreciate your efforts in helping us keep this project secure
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ info@whiteduck.de.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.
@@ -0,0 +1,151 @@
1
+ <!-- TOC --><a name="contributing-to-flock"></a>
2
+ # Contributing to Flock
3
+
4
+ First off, thanks for taking the time to contribute!
5
+ Flock is still in early development but we value outside input. ❤️
6
+
7
+ We follow the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
8
+
9
+ ## Table of Contents:
10
+ <!-- TOC start -->
11
+
12
+ - [Contributing to Flock](#contributing-to-flock)
13
+ * [🗒️ Getting Started:](#-getting-started)
14
+ * [❗ Reporting Issues:](#-reporting-issues)
15
+ * [🚋 Pull Requests: ](#-pull-requests)
16
+ * [💻 Coding Standards: ](#-coding-standards)
17
+ + [General Standards:](#general-standards)
18
+ + [A few best practices for writing good code:](#a-few-best-practices-for-writing-good-code)
19
+ - [Embrace Declarative Programming Principles:](#embrace-declarative-programming-principles)
20
+ - [Consistent Code Formatting:](#consistent-code-formatting)
21
+ - [Meaningful Naming Conventions:](#meaningful-naming-conventions)
22
+ - [Modular and Composable Code:](#modular-and-composable-code)
23
+ * [📖 Documentation Guidelines: ](#-documentation-guidelines)
24
+ + [A few best practices for writing good documentation:](#a-few-best-practices-for-writing-good-documentation)
25
+ * [🔭 Testing and Reliability:](#-testing-and-reliability)
26
+ * [Release Process:](#release-process)
27
+
28
+ <!-- TOC end -->
29
+
30
+ <!-- TOC --><a name="-getting-started"></a>
31
+ ## 🗒️ Getting Started:
32
+ 1. Fork the repo & create your feature branch (`git checkout -b feat/my-awesome-thing`).
33
+ 2. Install dev dependencies: `uv pip install -r requirements.txt && uv pip install -r requirements-dev.txt.`
34
+ 3. Run tests: `pytest -q` (they should pass before and after your change).
35
+ 4. Make changes – keep them atomic and well-documented.
36
+ 5. Lint & type-check: `ruff .` and `mypy src/.`
37
+ 6. Commit following Conventional Commits (`feat:`, `fix:`, `docs:` etc.).
38
+ 7. Open a PR against main. Include a description, screenshots, and linked issues.
39
+
40
+
41
+ <!-- TOC --><a name="-reporting-issues"></a>
42
+ ## ❗ Reporting Issues:
43
+ - Before submitting a new issue, pleas check [existing issues](https://github.com/whiteducksoftware/flock/issues) if it has already been reported.
44
+ - To submit a new issue, please use the provided **Issue Templates** and provide a clear and descriptive title along with a detailed description of the problem or feature request, including steps to reproduce if it's a bug.
45
+
46
+ <!-- TOC --><a name="-pull-requests"></a>
47
+ ## 🚋 Pull Requests:
48
+ - Ensure your code is well-tested and adheres to the [Coding Standards](#code-standards) outlined below.
49
+ - Write clear commit messages that explain the changes made.
50
+ - Clearly outline and communicate breaking API-changes.
51
+ - Before submitting a pull request, make sure your branch is up to date with the base branch (`main`) of the [main repository](https://github.com/whiteducksoftware/flock).
52
+ - Open a pull request with a summary of your changes and any relevant issue numbers.
53
+
54
+ <!-- TOC --><a name="-coding-standards"></a>
55
+ ## 💻 Coding Standards:
56
+ - Flock follows a **declarative** approach and design philosophy. Make sure that your code follows this principle.
57
+ - Follow the coding conventions used within the existing codebase.
58
+ - Keep code modular and readable. Prefer clarity over brevity.
59
+ - Include comments where necessary and explain complex logic.
60
+
61
+ <!-- TOC --><a name="general-standards"></a>
62
+ ### General Standards:
63
+ - Python `3.10.+`. Use type hints everywhere.
64
+ - Follow [`ruff`](https://docs.astral.sh/ruff/) default rules + [`black`](https://black.readthedocs.io/en/stable/index.html) formatting.
65
+ - Keep imports sorted (`ruff format`)
66
+ - Write **async-friendly** code. (non-blocking I/O)
67
+
68
+ <!-- TOC --><a name="a-few-best-practices-for-writing-good-code"></a>
69
+ ### A few best practices for writing good code:
70
+
71
+ <!-- TOC --><a name="embrace-declarative-programming-principles"></a>
72
+ #### Embrace Declarative Programming Principles:
73
+ - **Favor Declarative Styles**:
74
+ - Exposed API-Code should express the desired results rather than detailing the control flow of the program.
75
+ - Use declarative constructs to define behavior instead of imperative constructs where applicable.
76
+ - Aim for expressiveness and clarity in stating "what" should happen rather than "how" it should happen.
77
+ - **Use High-Level Abstractions**:
78
+ - Leverage Flock's existing abstractions to minimize boilerplate code and simplify the implementation.
79
+ - This makes the code easier to read and understand.
80
+ <!-- TOC --><a name="consistent-code-formatting"></a>
81
+ #### Consistent Code Formatting:
82
+ - **Adhere to Existing Code Style**: Consistency in formatting enhances readability and helps developers navigate the codebase.
83
+ <!-- TOC --><a name="meaningful-naming-conventions"></a>
84
+ #### Meaningful Naming Conventions:
85
+ - **Use Descriptive Names**:
86
+ - Choose variable, function, and class names that clearly describe their purpose.
87
+ - Be consistent. Stick to the naming conventions in Flock's existing code-base.
88
+ <!-- TOC --><a name="modular-and-composable-code"></a>
89
+ #### Modular and Composable Code:
90
+ - **Write Modular Code**: Break down complex logic into smaller, reusable components.
91
+ - **Avoid Side Effects**: Aim to minimize side effects where possible.
92
+
93
+
94
+ <!-- TOC --><a name="-documentation-guidelines"></a>
95
+ ## 📖 Documentation Guidelines:
96
+ - Documentation lives under [`docs/`](https://github.com/whiteducksoftware/flock/tree/master/docs), and is built with [MkDocs Material](https://github.com/squidfunk/mkdocs-material).
97
+ - Good documentation is crucial for the usability of Flock. When adding or updating code, please also update the relevant documentation.
98
+ - Use clear, concise language and include examples where applicable. (On that note: If you want to, you may also provide an example for the [example showcase](https://github.com/whiteducksoftware/flock-showcase)
99
+ - Maintain consistency in formatting and style throughout the documentation.
100
+ - Use American English
101
+ - Keep sentences short; favour lists & tables.
102
+ - Add code blocks with triple-backticks and language.
103
+
104
+ <!-- TOC --><a name="a-few-best-practices-for-writing-good-documentation"></a>
105
+ ### A few best practices for writing good documentation:
106
+ 1. Document the **Why**, not just the how:
107
+ - Documentation should explain the rational behind your decisions, rather than just describing the "how".
108
+ - This helps other developers understand the context and reasoning for the implementation, making the code more maintainable and modifyiable.
109
+ 2. Keep it Up to Date:
110
+ - Your documentation should evolve alongside the code. If you change the behavior of an existing component of Flock, please also take care to make sure the documentation reflects this fact.
111
+ 3. Write for the Reader:
112
+ - Consider the audience for your documentation.
113
+ - It should be accessible and understandable for developers who are not intimately familiar with the code.
114
+ 4. Document Intent and Design:
115
+ - Refering to Point 1, Document your decisions of **why** you chose to implement a new component or code change the way you did, if it is not immediately obvious.
116
+ 5. Code as Documentation:
117
+ - Well-written code can serve as it's own documentation.
118
+ - Code should be clear, expressive and self-explanatory where possible.
119
+ - Using meaningful names for variables, functions, and classes can reduce the need for excessive comments.
120
+ 6. Provide Examples:
121
+ - Examples can help other developers understand your changes and are therefore encouraged.
122
+ 7. Use Comments Wisely:
123
+ - Aviod redundant comments that merely restate what the code does, which can clutter the codebase and detract from its readability.
124
+ 8. Be Pragmatic:
125
+ - There is no need for you to excessively comment every line of code you provide.
126
+ - Add documentation where necessary and focus on keeping documentation on a high level.
127
+
128
+ <!-- TOC --><a name="-testing-and-reliability"></a>
129
+ ## 🔭 Testing and Reliability:
130
+ Flock aims to provide a easy and reliable way to implement agentic applications. Therefore, well tested code is crucial.
131
+
132
+ - Test your changes thoroughly! Ensure that existing tests pass and add **new tests** for any new functionality.
133
+ - Follow Flock's testing conventions and use the provided testing framework.
134
+ - Run the tests before submitting your pull request to confirm that nothing is broken.
135
+ - Test can be run locally with `pytest -q`
136
+ - Place new tests in `tests/` mirroring the package path.
137
+ - Use [`pytest`](https://docs.pytest.org/en/stable/) fixtures instead of duplicating setup code.
138
+ - For Temporal code, rely on the *Temporal Test Server* fixture.
139
+
140
+
141
+ <!-- TOC --><a name="release-process"></a>
142
+ ## Release Process:
143
+ 1. Maintainer bumps versiion in `pyproject.toml` following **SemVer**.
144
+ 2. Changelog entry added in `docs/about/changelog.md`.
145
+ 3. `uv pip install -e .[all] && pytest`
146
+ 4. `git tag v.X.Y.Z && git push --tags`
147
+ 5. GitHub Action publishes to PyPI.
148
+
149
+ Thank you for contributing to Flock, the declarative Agent-Framework. 🦆💓
150
+
151
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flock-core
3
- Version: 0.4.0b44
3
+ Version: 0.4.0b46
4
4
  Summary: Declarative LLM Orchestration at Scale
5
5
  Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
6
6
  License-File: LICENSE
@@ -21,7 +21,14 @@ First off, thanks for taking the time to contribute! Flock is still early but w
21
21
 
22
22
  ---
23
23
 
24
- ## 2. Docs Contributions
24
+
25
+ ## 2. Reporting Issues:
26
+ * Before submitting a new issue, pleas check [existing issues](https://github.com/whiteducksoftware/flock/issues) if it has already been reported.
27
+ * To submit a new issue, please use the provided **Issue Templates** and provide a clear and descriptive title along with a detailed description of the problem or feature request, including steps to reproduce if it's a bug.
28
+
29
+ ---
30
+
31
+ ## 3. Docs Contributions
25
32
 
26
33
  Docs live under `docs/` and are built with **MkDocs Material**.
27
34
 
@@ -32,10 +39,13 @@ mkdocs serve # live-reload at http://localhost:8000
32
39
  * Use American English.
33
40
  * Keep sentences short; favour lists & tables.
34
41
  * Add code blocks with triple-backticks and language.
42
+ * Good documentation is crucial for the usability of Flock. When adding or updating code, please also update the relevant documentation.
43
+ * Use clear, concise language and include examples where applicable. (On that note: If you want to, you may also provide an example for the [example showcase](https://github.com/whiteducksoftware/flock-showcase)
44
+ * Maintain consistency in formatting and style throughout the documentation.
35
45
 
36
46
  ---
37
47
 
38
- ## 3. Coding Standards
48
+ ## 4. Coding Standards
39
49
 
40
50
  * Python `3.10+`. Use type hints everywhere.
41
51
  * Follow `ruff` default rules + `black` formatting.
@@ -44,15 +54,27 @@ mkdocs serve # live-reload at http://localhost:8000
44
54
 
45
55
  ---
46
56
 
47
- ## 4. Tests
57
+ ## 5. Tests
48
58
 
49
59
  * Place new tests in `tests/` mirroring the package path.
50
60
  * Use `pytest` fixtures instead of duplicating setup code.
51
61
  * For Temporal code, rely on the *Temporal Test Server* fixture.
62
+ * Test your changes thoroughly! Ensure that existing tests pass and add **new tests** for any new functionality.
63
+ * Follow Flock's testing conventions and use the provided testing framework.
64
+ * Run the tests before submitting your pull request to confirm that nothing is broken.
65
+
66
+ ---
52
67
 
68
+ ## 6. Pull Requests:
69
+ - Ensure your code is well-tested and adheres to the Coding-Standards.
70
+ - Write clear commit messages that explain the changes made.
71
+ - Clearly outline and communicate breaking API-changes.
72
+ - Before submitting a pull request, make sure your branch is up to date with the base branch (`main`) of the [main repository](https://github.com/whiteducksoftware/flock).
73
+ - Open a pull request with a summary of your changes and any relevant issue numbers.
74
+
53
75
  ---
54
76
 
55
- ## 5. Release Process
77
+ ## 7. Release Process
56
78
 
57
79
  1. Maintainer bumps version in `pyproject.toml` following *SemVer*.
58
80
  2. Changelog entry added in `docs/about/changelog.md`.
@@ -60,6 +82,10 @@ mkdocs serve # live-reload at http://localhost:8000
60
82
  4. `git tag vX.Y.Z && git push --tags`.
61
83
  5. GitHub Action publishes to PyPI.
62
84
 
63
- ---
85
+ ---
86
+
87
+
88
+
89
+
64
90
 
65
91
  Happy hacking! 🐦
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "flock-core"
3
- version = "0.4.0b-44"
3
+ version = "0.4.0b-46"
4
4
  description = "Declarative LLM Orchestration at Scale"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -5,6 +5,7 @@ including listing, adding, editing, and removing agents.
5
5
  """
6
6
 
7
7
  import questionary
8
+ from rich.box import Box
8
9
  from rich.console import Console
9
10
  from rich.panel import Panel
10
11
  from rich.table import Table
@@ -104,9 +105,11 @@ def _list_agents(flock: Flock):
104
105
  model = agent.model or flock.model or "Default"
105
106
 
106
107
  # Format description (truncate if too long)
107
- description = str(agent.description)
108
- if len(description) > 30:
108
+ description = agent.resolved_description
109
+ if description and len(description) > 30:
109
110
  description = description[:27] + "..."
111
+ elif not description:
112
+ description = "N/A"
110
113
 
111
114
  # Format input/output (truncate if too long)
112
115
  input_str = str(agent.input)
@@ -156,13 +159,13 @@ def _view_agent_details(agent: FlockAgent):
156
159
  )
157
160
 
158
161
  # Create a panel for each section
159
- basic_info = Table(show_header=False, box=None)
162
+ basic_info = Table(show_header=False, box=Box.ROUNDED, padding=(0, 2))
160
163
  basic_info.add_column("Property", style="cyan")
161
164
  basic_info.add_column("Value", style="green")
162
165
 
163
166
  basic_info.add_row("Name", agent.name)
164
167
  basic_info.add_row("Model", str(agent.model or "Default"))
165
- basic_info.add_row("Description", str(agent.description))
168
+ basic_info.add_row("Description", agent.resolved_description if agent.resolved_description else "N/A")
166
169
  basic_info.add_row("Input", str(agent.input))
167
170
  basic_info.add_row("Output", str(agent.output))
168
171
  basic_info.add_row("Write to File", str(agent.write_to_file))
@@ -329,6 +332,18 @@ def _edit_agent(flock: Flock):
329
332
 
330
333
  agent = flock._agents[agent_name]
331
334
 
335
+ if not agent:
336
+ console.print(f"[bold red]Agent '{agent_name}' not found.[/]")
337
+ return
338
+
339
+ console.print(f"\n[bold underline]Details for Agent: {agent.name}[/]")
340
+ basic_info = Table(show_header=False, box=Box.ROUNDED, padding=(0, 2))
341
+ basic_info.add_row("Name", agent.name)
342
+ description = agent.resolved_description
343
+ basic_info.add_row("Description", description if description else "N/A")
344
+ basic_info.add_row("Model", agent.model or "Flock Default")
345
+ basic_info.add_row("Input Signature", str(agent.input))
346
+
332
347
  # Choose edit method
333
348
  edit_choice = questionary.select(
334
349
  "How would you like to edit this agent?",
@@ -246,7 +246,7 @@ def create_api_router() -> APIRouter:
246
246
  """List all available agents in the currently loaded Flock."""
247
247
  logger.debug("API request: list agents")
248
248
  agents_list = [
249
- {"name": agent.name, "description": agent.description or agent.name}
249
+ {"name": agent.name, "description": agent.resolved_description or agent.name}
250
250
  for agent in flock_instance.agents.values()
251
251
  ]
252
252
  return {"agents": agents_list}
@@ -195,6 +195,37 @@ class FlockAgent(BaseModel, Serializable, DSPyIntegrationMixin, ABC):
195
195
  """Get a list of currently enabled modules attached to this agent."""
196
196
  return [m for m in self.modules.values() if m.config.enabled]
197
197
 
198
+ @property
199
+ def resolved_description(self) -> str | None:
200
+ """Returns the resolved agent description.
201
+ If the description is a callable, it attempts to call it.
202
+ Returns None if the description is None or a callable that fails.
203
+ """
204
+ if callable(self.description):
205
+ try:
206
+ # Attempt to call without context first.
207
+ # If callables consistently need context, this might need adjustment
208
+ # or the template-facing property might need to be simpler,
209
+ # relying on prior resolution via resolve_callables.
210
+ return self.description()
211
+ except TypeError:
212
+ # Log a warning that context might be needed?
213
+ # For now, treat as unresolvable in this simple property.
214
+ logger.warning(
215
+ f"Callable description for agent '{self.name}' could not be resolved "
216
+ f"without context via the simple 'resolved_description' property. "
217
+ f"Consider calling 'agent.resolve_callables(context)' beforehand if context is required."
218
+ )
219
+ return None # Or a placeholder like "[Callable Description]"
220
+ except Exception as e:
221
+ logger.error(
222
+ f"Error resolving callable description for agent '{self.name}': {e}"
223
+ )
224
+ return None
225
+ elif isinstance(self.description, str):
226
+ return self.description
227
+ return None
228
+
198
229
  # --- Lifecycle Hooks (Keep as they were) ---
199
230
  async def initialize(self, inputs: dict[str, Any]) -> None:
200
231
  """Initialize agent and run module initializers."""
@@ -29,7 +29,7 @@ body.chat-page {
29
29
  padding: 1rem 1.5rem;
30
30
  display: flex;
31
31
  flex-direction: column;
32
- min-height: 60vh;
32
+ min-height: 0;
33
33
  gap: 1rem;
34
34
  background-color: rgba(0, 0, 0, 0.05);
35
35
  background-image:
@@ -118,7 +118,7 @@ body.chat-page {
118
118
  box-shadow: 0 0 0 2px rgba(var(--pico-primary-rgb, 0, 123, 255), 0.25);
119
119
  }
120
120
 
121
- #chat-form button {
121
+ #chat-container form button[type="submit"] {
122
122
  flex: 0 0 auto;
123
123
  min-width: auto;
124
124
  width: 150px; /* Wider send button */
@@ -132,7 +132,7 @@ body.chat-page {
132
132
  height: 3rem;
133
133
  }
134
134
 
135
- #chat-form button:hover {
135
+ #chat-container form button[type="submit"]:hover {
136
136
  background: var(--pico-primary-hover, var(--pico-primary));
137
137
  transform: translateY(-2px);
138
138
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
@@ -185,11 +185,11 @@ body.chat-page {
185
185
  ------------------------------------------------------------------------- */
186
186
  body:not(.chat-page) #chat-container,
187
187
  body:not(.chat-page) .chat-container {
188
- height: auto;
189
- min-height: 60vh;
190
- /* share same centering rules */
188
+ height: 100%;
189
+ min-height: 100%;
190
+ /* allow full width inside the main content area */
191
191
  width: 100%;
192
- max-width: 80%;
192
+ max-width: 100%;
193
193
  margin: 0 auto;
194
194
  }
195
195
 
@@ -225,3 +225,18 @@ body:not(.chat-page) .chat-settings-form .grid button:first-child {
225
225
  flex: 0 0 auto;
226
226
  width: auto;
227
227
  }
228
+
229
+ /* -------------------------------------------------------------------------
230
+ Container flex area to ensure chat-log grows/shrinks as needed
231
+ ------------------------------------------------------------------------- */
232
+ #chat-content-area {
233
+ display: flex;
234
+ flex-direction: column;
235
+ flex: 1 1 auto;
236
+ overflow: hidden;
237
+ }
238
+
239
+ /* Prevent double scrollbars when chat is embedded */
240
+ main.main-content:has(#chat-container) {
241
+ overflow: hidden;
242
+ }
@@ -32,7 +32,7 @@
32
32
 
33
33
  <body>
34
34
  <header class="top-header">
35
- <span><strong>🐧 Flock UI 🐤</strong></span>
35
+ <span><strong>🐧 Flock Playground 🐤</strong></span>
36
36
  <span id="header-flock-status-container" hx-get="/ui/htmx/header-flock-status?ui_mode={{ ui_mode }}"
37
37
  hx-trigger="load, flockLoaded from:body, flockCleared from:body" hx-swap="innerHTML">
38
38
  <small>Loading status...</small> {# Placeholder while loading #}
@@ -33,7 +33,13 @@
33
33
  <p><em>Loading chat…</em></p>
34
34
  </div>
35
35
 
36
- <form id="chat-form" hx-post="/chat/send" hx-target="#chat-log" hx-swap="innerHTML" hx-on::after-request="this.reset()">
36
+ <form id="chat-form-standalone"
37
+ hx-post="/chat/send"
38
+ hx-target="#chat-log"
39
+ hx-swap="innerHTML"
40
+ hx-disabled-elt="input[name='message'], button[type='submit']"
41
+ hx-on::before-request="htmx.find('#chat-form-standalone button[type=\'submit\']').textContent = 'Sending...'"
42
+ hx-on::after-request="htmx.find('#chat-form-standalone button[type=\'submit\']').textContent = 'Send'; this.reset();">
37
43
  <input type="text" name="message" placeholder="Type a message…" required autofocus>
38
44
  <button type="submit">Send</button>
39
45
  </form>
@@ -23,12 +23,13 @@
23
23
  hx-indicator="#agent-detail-loading-indicator">
24
24
 
25
25
  <fieldset>
26
- <label for="agent_name_field">Name *</label>
27
- <input type="text" id="agent_name_field" name="agent_name" value="{{ agent.name if agent and not form_errors else (form_data.agent_name if form_data else '') }}" required placeholder="my_processing_agent">
26
+ <legend>Core Agent Configuration</legend>
27
+ <label for="agent_name_field">Agent Name *</label>
28
+ <input type="text" id="agent_name_field" name="agent_name" value="{{ agent.name if agent and not form_errors else (form_data.agent_name if form_data else '') }}" required placeholder="Unique name for the agent">
28
29
  {% if form_errors and form_errors.agent_name %}<small class="field-error">{{ form_errors.agent_name }}</small>{% endif %}
29
30
 
30
31
  <label for="agent_description_field">Description</label>
31
- <textarea id="agent_description_field" name="agent_description" placeholder="Briefly describe what this agent does.">{{ agent.description if agent and not form_errors else (form_data.agent_description if form_data else '') }}</textarea>
32
+ <textarea id="agent_description_field" name="agent_description" placeholder="Briefly describe what this agent does.">{{ agent.resolved_description if agent and not form_errors else (form_data.agent_description if form_data else '') }}</textarea>
32
33
 
33
34
  <label for="agent_model_field">Model Override (Optional)</label>
34
35
  <input type="text" id="agent_model_field" name="agent_model" value="{{ agent.model if agent and agent.model and not form_errors else (form_data.agent_model if form_data else '') }}" placeholder="e.g., openai/gpt-3.5-turbo (uses Flock default if blank)">