open-swarm 0.1.1745275181__py3-none-any.whl → 0.1.1748636295__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (307) hide show
  1. open_swarm-0.1.1748636295.dist-info/METADATA +257 -0
  2. open_swarm-0.1.1748636295.dist-info/RECORD +89 -0
  3. {open_swarm-0.1.1745275181.dist-info → open_swarm-0.1.1748636295.dist-info}/WHEEL +2 -1
  4. open_swarm-0.1.1748636295.dist-info/entry_points.txt +3 -0
  5. open_swarm-0.1.1748636295.dist-info/top_level.txt +1 -0
  6. swarm/__init__.py +2 -0
  7. swarm/agent/agent.py +49 -0
  8. swarm/auth.py +48 -113
  9. swarm/consumers.py +0 -19
  10. swarm/core.py +411 -0
  11. swarm/extensions/blueprint/__init__.py +16 -30
  12. swarm/extensions/blueprint/agent_utils.py +45 -0
  13. swarm/extensions/blueprint/blueprint_base.py +562 -0
  14. swarm/extensions/blueprint/blueprint_discovery.py +112 -0
  15. swarm/extensions/blueprint/django_utils.py +79 -181
  16. swarm/extensions/blueprint/interactive_mode.py +72 -67
  17. swarm/extensions/blueprint/output_utils.py +82 -0
  18. swarm/{core → extensions/blueprint}/spinner.py +21 -30
  19. swarm/extensions/cli/cli_args.py +0 -6
  20. swarm/extensions/cli/commands/blueprint_management.py +9 -47
  21. swarm/extensions/cli/commands/config_management.py +6 -5
  22. swarm/extensions/cli/commands/edit_config.py +7 -16
  23. swarm/extensions/cli/commands/list_blueprints.py +1 -1
  24. swarm/extensions/cli/commands/validate_env.py +4 -11
  25. swarm/extensions/cli/commands/validate_envvars.py +6 -6
  26. swarm/extensions/cli/interactive_shell.py +2 -16
  27. swarm/extensions/config/config_loader.py +345 -107
  28. swarm/{core → extensions/config}/config_manager.py +38 -50
  29. swarm/{core → extensions/config}/server_config.py +0 -32
  30. swarm/extensions/launchers/build_launchers.py +14 -0
  31. swarm/{core → extensions/launchers}/build_swarm_wrapper.py +0 -0
  32. swarm/extensions/launchers/swarm_api.py +64 -8
  33. swarm/extensions/launchers/swarm_cli.py +300 -8
  34. swarm/extensions/mcp/__init__.py +1 -0
  35. swarm/extensions/mcp/cache_utils.py +32 -0
  36. swarm/extensions/mcp/mcp_client.py +233 -0
  37. swarm/extensions/mcp/mcp_tool_provider.py +135 -0
  38. swarm/extensions/mcp/mcp_utils.py +260 -0
  39. swarm/llm/chat_completion.py +166 -0
  40. swarm/serializers.py +5 -96
  41. swarm/settings.py +133 -85
  42. swarm/types.py +91 -0
  43. swarm/urls.py +74 -57
  44. swarm/utils/context_utils.py +4 -10
  45. swarm/utils/general_utils.py +0 -21
  46. swarm/utils/redact.py +36 -23
  47. swarm/views/api_views.py +39 -48
  48. swarm/views/chat_views.py +76 -236
  49. swarm/views/core_views.py +87 -80
  50. swarm/views/model_views.py +121 -64
  51. swarm/views/utils.py +439 -65
  52. swarm/views/web_views.py +2 -2
  53. open_swarm-0.1.1745275181.dist-info/METADATA +0 -874
  54. open_swarm-0.1.1745275181.dist-info/RECORD +0 -319
  55. open_swarm-0.1.1745275181.dist-info/entry_points.txt +0 -4
  56. swarm/blueprints/README.md +0 -68
  57. swarm/blueprints/blueprint_audit_status.json +0 -27
  58. swarm/blueprints/chatbot/README.md +0 -40
  59. swarm/blueprints/chatbot/blueprint_chatbot.py +0 -471
  60. swarm/blueprints/chatbot/metadata.json +0 -23
  61. swarm/blueprints/chatbot/templates/chatbot/chatbot.html +0 -33
  62. swarm/blueprints/chucks_angels/README.md +0 -11
  63. swarm/blueprints/chucks_angels/blueprint_chucks_angels.py +0 -7
  64. swarm/blueprints/chucks_angels/test_basic.py +0 -3
  65. swarm/blueprints/codey/CODEY.md +0 -15
  66. swarm/blueprints/codey/README.md +0 -115
  67. swarm/blueprints/codey/blueprint_codey.py +0 -1072
  68. swarm/blueprints/codey/codey_cli.py +0 -373
  69. swarm/blueprints/codey/instructions.md +0 -17
  70. swarm/blueprints/codey/metadata.json +0 -23
  71. swarm/blueprints/common/operation_box_utils.py +0 -83
  72. swarm/blueprints/digitalbutlers/README.md +0 -11
  73. swarm/blueprints/digitalbutlers/__init__.py +0 -1
  74. swarm/blueprints/digitalbutlers/blueprint_digitalbutlers.py +0 -7
  75. swarm/blueprints/digitalbutlers/test_basic.py +0 -3
  76. swarm/blueprints/divine_code/README.md +0 -3
  77. swarm/blueprints/divine_code/__init__.py +0 -10
  78. swarm/blueprints/divine_code/apps.py +0 -11
  79. swarm/blueprints/divine_code/blueprint_divine_code.py +0 -270
  80. swarm/blueprints/django_chat/apps.py +0 -6
  81. swarm/blueprints/django_chat/blueprint_django_chat.py +0 -268
  82. swarm/blueprints/django_chat/templates/django_chat/django_chat_webpage.html +0 -37
  83. swarm/blueprints/django_chat/urls.py +0 -8
  84. swarm/blueprints/django_chat/views.py +0 -32
  85. swarm/blueprints/echocraft/blueprint_echocraft.py +0 -384
  86. swarm/blueprints/flock/README.md +0 -11
  87. swarm/blueprints/flock/__init__.py +0 -8
  88. swarm/blueprints/flock/blueprint_flock.py +0 -7
  89. swarm/blueprints/flock/test_basic.py +0 -3
  90. swarm/blueprints/geese/README.md +0 -10
  91. swarm/blueprints/geese/__init__.py +0 -8
  92. swarm/blueprints/geese/blueprint_geese.py +0 -384
  93. swarm/blueprints/geese/geese_cli.py +0 -102
  94. swarm/blueprints/jeeves/README.md +0 -41
  95. swarm/blueprints/jeeves/blueprint_jeeves.py +0 -722
  96. swarm/blueprints/jeeves/jeeves_cli.py +0 -55
  97. swarm/blueprints/jeeves/metadata.json +0 -24
  98. swarm/blueprints/mcp_demo/blueprint_mcp_demo.py +0 -473
  99. swarm/blueprints/messenger/templates/messenger/messenger.html +0 -46
  100. swarm/blueprints/mission_improbable/blueprint_mission_improbable.py +0 -423
  101. swarm/blueprints/monkai_magic/blueprint_monkai_magic.py +0 -340
  102. swarm/blueprints/nebula_shellz/blueprint_nebula_shellz.py +0 -265
  103. swarm/blueprints/omniplex/blueprint_omniplex.py +0 -298
  104. swarm/blueprints/poets/blueprint_poets.py +0 -546
  105. swarm/blueprints/poets/poets_cli.py +0 -23
  106. swarm/blueprints/rue_code/README.md +0 -8
  107. swarm/blueprints/rue_code/blueprint_rue_code.py +0 -448
  108. swarm/blueprints/rue_code/rue_code_cli.py +0 -43
  109. swarm/blueprints/stewie/apps.py +0 -12
  110. swarm/blueprints/stewie/blueprint_family_ties.py +0 -349
  111. swarm/blueprints/stewie/models.py +0 -19
  112. swarm/blueprints/stewie/serializers.py +0 -10
  113. swarm/blueprints/stewie/settings.py +0 -17
  114. swarm/blueprints/stewie/urls.py +0 -11
  115. swarm/blueprints/stewie/views.py +0 -26
  116. swarm/blueprints/suggestion/blueprint_suggestion.py +0 -222
  117. swarm/blueprints/whinge_surf/README.md +0 -22
  118. swarm/blueprints/whinge_surf/__init__.py +0 -1
  119. swarm/blueprints/whinge_surf/blueprint_whinge_surf.py +0 -565
  120. swarm/blueprints/whinge_surf/whinge_surf_cli.py +0 -99
  121. swarm/blueprints/whiskeytango_foxtrot/__init__.py +0 -0
  122. swarm/blueprints/whiskeytango_foxtrot/apps.py +0 -11
  123. swarm/blueprints/whiskeytango_foxtrot/blueprint_whiskeytango_foxtrot.py +0 -339
  124. swarm/blueprints/zeus/__init__.py +0 -2
  125. swarm/blueprints/zeus/apps.py +0 -4
  126. swarm/blueprints/zeus/blueprint_zeus.py +0 -270
  127. swarm/blueprints/zeus/zeus_cli.py +0 -13
  128. swarm/cli/async_input.py +0 -65
  129. swarm/cli/async_input_demo.py +0 -32
  130. swarm/core/agent_utils.py +0 -21
  131. swarm/core/blueprint_base.py +0 -769
  132. swarm/core/blueprint_discovery.py +0 -125
  133. swarm/core/blueprint_runner.py +0 -59
  134. swarm/core/blueprint_ux.py +0 -109
  135. swarm/core/build_launchers.py +0 -15
  136. swarm/core/cli/__init__.py +0 -1
  137. swarm/core/cli/commands/__init__.py +0 -1
  138. swarm/core/cli/commands/blueprint_management.py +0 -7
  139. swarm/core/cli/interactive_shell.py +0 -14
  140. swarm/core/cli/main.py +0 -50
  141. swarm/core/cli/utils/__init__.py +0 -1
  142. swarm/core/cli/utils/discover_commands.py +0 -18
  143. swarm/core/config_loader.py +0 -122
  144. swarm/core/output_utils.py +0 -193
  145. swarm/core/session_logger.py +0 -42
  146. swarm/core/slash_commands.py +0 -89
  147. swarm/core/swarm_api.py +0 -68
  148. swarm/core/swarm_cli.py +0 -216
  149. swarm/core/utils/__init__.py +0 -0
  150. swarm/extensions/blueprint/cli_handler.py +0 -197
  151. swarm/extensions/blueprint/runnable_blueprint.py +0 -42
  152. swarm/extensions/cli/utils/__init__.py +0 -1
  153. swarm/extensions/cli/utils/async_input.py +0 -46
  154. swarm/extensions/cli/utils/prompt_user.py +0 -3
  155. swarm/management/__init__.py +0 -0
  156. swarm/management/commands/__init__.py +0 -0
  157. swarm/management/commands/runserver.py +0 -58
  158. swarm/middleware.py +0 -65
  159. swarm/permissions.py +0 -38
  160. swarm/static/contrib/fonts/fontawesome-webfont.ttf +0 -7
  161. swarm/static/contrib/fonts/fontawesome-webfont.woff +0 -7
  162. swarm/static/contrib/fonts/fontawesome-webfont.woff2 +0 -7
  163. swarm/static/contrib/markedjs/marked.min.js +0 -6
  164. swarm/static/contrib/tabler-icons/adjustments-horizontal.svg +0 -27
  165. swarm/static/contrib/tabler-icons/alert-triangle.svg +0 -21
  166. swarm/static/contrib/tabler-icons/archive.svg +0 -21
  167. swarm/static/contrib/tabler-icons/artboard.svg +0 -27
  168. swarm/static/contrib/tabler-icons/automatic-gearbox.svg +0 -23
  169. swarm/static/contrib/tabler-icons/box-multiple.svg +0 -19
  170. swarm/static/contrib/tabler-icons/carambola.svg +0 -19
  171. swarm/static/contrib/tabler-icons/copy.svg +0 -20
  172. swarm/static/contrib/tabler-icons/download.svg +0 -21
  173. swarm/static/contrib/tabler-icons/edit.svg +0 -21
  174. swarm/static/contrib/tabler-icons/filled/carambola.svg +0 -13
  175. swarm/static/contrib/tabler-icons/filled/paint.svg +0 -13
  176. swarm/static/contrib/tabler-icons/headset.svg +0 -22
  177. swarm/static/contrib/tabler-icons/layout-sidebar-left-collapse.svg +0 -21
  178. swarm/static/contrib/tabler-icons/layout-sidebar-left-expand.svg +0 -21
  179. swarm/static/contrib/tabler-icons/layout-sidebar-right-collapse.svg +0 -21
  180. swarm/static/contrib/tabler-icons/layout-sidebar-right-expand.svg +0 -21
  181. swarm/static/contrib/tabler-icons/message-chatbot.svg +0 -22
  182. swarm/static/contrib/tabler-icons/message-star.svg +0 -22
  183. swarm/static/contrib/tabler-icons/message-x.svg +0 -23
  184. swarm/static/contrib/tabler-icons/message.svg +0 -21
  185. swarm/static/contrib/tabler-icons/paperclip.svg +0 -18
  186. swarm/static/contrib/tabler-icons/playlist-add.svg +0 -22
  187. swarm/static/contrib/tabler-icons/robot.svg +0 -26
  188. swarm/static/contrib/tabler-icons/search.svg +0 -19
  189. swarm/static/contrib/tabler-icons/settings.svg +0 -20
  190. swarm/static/contrib/tabler-icons/thumb-down.svg +0 -19
  191. swarm/static/contrib/tabler-icons/thumb-up.svg +0 -19
  192. swarm/static/css/dropdown.css +0 -22
  193. swarm/static/htmx/htmx.min.js +0 -0
  194. swarm/static/js/dropdown.js +0 -23
  195. swarm/static/rest_mode/css/base.css +0 -470
  196. swarm/static/rest_mode/css/chat-history.css +0 -286
  197. swarm/static/rest_mode/css/chat.css +0 -251
  198. swarm/static/rest_mode/css/chatbot.css +0 -74
  199. swarm/static/rest_mode/css/chatgpt.css +0 -62
  200. swarm/static/rest_mode/css/colors/corporate.css +0 -74
  201. swarm/static/rest_mode/css/colors/pastel.css +0 -81
  202. swarm/static/rest_mode/css/colors/tropical.css +0 -82
  203. swarm/static/rest_mode/css/general.css +0 -142
  204. swarm/static/rest_mode/css/layout.css +0 -167
  205. swarm/static/rest_mode/css/layouts/messenger-layout.css +0 -17
  206. swarm/static/rest_mode/css/layouts/minimalist-layout.css +0 -57
  207. swarm/static/rest_mode/css/layouts/mobile-layout.css +0 -8
  208. swarm/static/rest_mode/css/messages.css +0 -84
  209. swarm/static/rest_mode/css/messenger.css +0 -135
  210. swarm/static/rest_mode/css/settings.css +0 -91
  211. swarm/static/rest_mode/css/simple.css +0 -44
  212. swarm/static/rest_mode/css/slack.css +0 -58
  213. swarm/static/rest_mode/css/style.css +0 -156
  214. swarm/static/rest_mode/css/theme.css +0 -30
  215. swarm/static/rest_mode/css/toast.css +0 -40
  216. swarm/static/rest_mode/js/auth.js +0 -9
  217. swarm/static/rest_mode/js/blueprint.js +0 -41
  218. swarm/static/rest_mode/js/blueprintUtils.js +0 -12
  219. swarm/static/rest_mode/js/chatLogic.js +0 -79
  220. swarm/static/rest_mode/js/debug.js +0 -63
  221. swarm/static/rest_mode/js/events.js +0 -98
  222. swarm/static/rest_mode/js/main.js +0 -19
  223. swarm/static/rest_mode/js/messages.js +0 -264
  224. swarm/static/rest_mode/js/messengerLogic.js +0 -355
  225. swarm/static/rest_mode/js/modules/apiService.js +0 -84
  226. swarm/static/rest_mode/js/modules/blueprintManager.js +0 -162
  227. swarm/static/rest_mode/js/modules/chatHistory.js +0 -110
  228. swarm/static/rest_mode/js/modules/debugLogger.js +0 -14
  229. swarm/static/rest_mode/js/modules/eventHandlers.js +0 -107
  230. swarm/static/rest_mode/js/modules/messageProcessor.js +0 -120
  231. swarm/static/rest_mode/js/modules/state.js +0 -7
  232. swarm/static/rest_mode/js/modules/userInteractions.js +0 -29
  233. swarm/static/rest_mode/js/modules/validation.js +0 -23
  234. swarm/static/rest_mode/js/rendering.js +0 -119
  235. swarm/static/rest_mode/js/settings.js +0 -130
  236. swarm/static/rest_mode/js/sidebar.js +0 -94
  237. swarm/static/rest_mode/js/simpleLogic.js +0 -37
  238. swarm/static/rest_mode/js/slackLogic.js +0 -66
  239. swarm/static/rest_mode/js/splash.js +0 -76
  240. swarm/static/rest_mode/js/theme.js +0 -111
  241. swarm/static/rest_mode/js/toast.js +0 -36
  242. swarm/static/rest_mode/js/ui.js +0 -265
  243. swarm/static/rest_mode/js/validation.js +0 -57
  244. swarm/static/rest_mode/svg/animated_spinner.svg +0 -12
  245. swarm/static/rest_mode/svg/arrow_down.svg +0 -5
  246. swarm/static/rest_mode/svg/arrow_left.svg +0 -5
  247. swarm/static/rest_mode/svg/arrow_right.svg +0 -5
  248. swarm/static/rest_mode/svg/arrow_up.svg +0 -5
  249. swarm/static/rest_mode/svg/attach.svg +0 -8
  250. swarm/static/rest_mode/svg/avatar.svg +0 -7
  251. swarm/static/rest_mode/svg/canvas.svg +0 -6
  252. swarm/static/rest_mode/svg/chat_history.svg +0 -4
  253. swarm/static/rest_mode/svg/close.svg +0 -5
  254. swarm/static/rest_mode/svg/copy.svg +0 -4
  255. swarm/static/rest_mode/svg/dark_mode.svg +0 -3
  256. swarm/static/rest_mode/svg/edit.svg +0 -5
  257. swarm/static/rest_mode/svg/layout.svg +0 -9
  258. swarm/static/rest_mode/svg/logo.svg +0 -29
  259. swarm/static/rest_mode/svg/logout.svg +0 -5
  260. swarm/static/rest_mode/svg/mobile.svg +0 -5
  261. swarm/static/rest_mode/svg/new_chat.svg +0 -4
  262. swarm/static/rest_mode/svg/not_visible.svg +0 -5
  263. swarm/static/rest_mode/svg/plus.svg +0 -7
  264. swarm/static/rest_mode/svg/run_code.svg +0 -6
  265. swarm/static/rest_mode/svg/save.svg +0 -4
  266. swarm/static/rest_mode/svg/search.svg +0 -6
  267. swarm/static/rest_mode/svg/settings.svg +0 -4
  268. swarm/static/rest_mode/svg/speaker.svg +0 -5
  269. swarm/static/rest_mode/svg/stop.svg +0 -6
  270. swarm/static/rest_mode/svg/thumbs_down.svg +0 -3
  271. swarm/static/rest_mode/svg/thumbs_up.svg +0 -3
  272. swarm/static/rest_mode/svg/toggle_off.svg +0 -6
  273. swarm/static/rest_mode/svg/toggle_on.svg +0 -6
  274. swarm/static/rest_mode/svg/trash.svg +0 -10
  275. swarm/static/rest_mode/svg/undo.svg +0 -3
  276. swarm/static/rest_mode/svg/visible.svg +0 -8
  277. swarm/static/rest_mode/svg/voice.svg +0 -10
  278. swarm/templates/account/login.html +0 -22
  279. swarm/templates/account/signup.html +0 -32
  280. swarm/templates/base.html +0 -30
  281. swarm/templates/chat.html +0 -43
  282. swarm/templates/index.html +0 -35
  283. swarm/templates/rest_mode/components/chat_sidebar.html +0 -55
  284. swarm/templates/rest_mode/components/header.html +0 -45
  285. swarm/templates/rest_mode/components/main_chat_pane.html +0 -41
  286. swarm/templates/rest_mode/components/settings_dialog.html +0 -97
  287. swarm/templates/rest_mode/components/splash_screen.html +0 -7
  288. swarm/templates/rest_mode/components/top_bar.html +0 -28
  289. swarm/templates/rest_mode/message_ui.html +0 -50
  290. swarm/templates/rest_mode/slackbot.html +0 -30
  291. swarm/templates/simple_blueprint_page.html +0 -24
  292. swarm/templates/websocket_partials/final_system_message.html +0 -3
  293. swarm/templates/websocket_partials/system_message.html +0 -4
  294. swarm/templates/websocket_partials/user_message.html +0 -5
  295. swarm/utils/ansi_box.py +0 -34
  296. swarm/utils/disable_tracing.py +0 -38
  297. swarm/utils/log_utils.py +0 -63
  298. swarm/utils/openai_patch.py +0 -33
  299. swarm/ux/ansi_box.py +0 -43
  300. swarm/ux/spinner.py +0 -53
  301. {open_swarm-0.1.1745275181.dist-info → open_swarm-0.1.1748636295.dist-info}/licenses/LICENSE +0 -0
  302. /swarm/{core → extensions/blueprint}/blueprint_utils.py +0 -0
  303. /swarm/{core → extensions/blueprint}/common_utils.py +0 -0
  304. /swarm/{core → extensions/config}/setup_wizard.py +0 -0
  305. /swarm/{blueprints/rue_code → extensions/config/utils}/__init__.py +0 -0
  306. /swarm/{core → extensions/config}/utils/logger.py +0 -0
  307. /swarm/{core → extensions/launchers}/swarm_wrapper.py +0 -0
@@ -1,319 +0,0 @@
1
- swarm/__init__.py,sha256=aT-yyX84tiZhihp0RAXYTADCo9dhOnmolQVfn4_NQa8,46
2
- swarm/apps.py,sha256=up4C3m2JeyXeUcH-wYeReCuiOBVJ6404w9OfaRChLwM,2568
3
- swarm/auth.py,sha256=8JIk1VbBvFFwOijEJAsrx6si802ZSMGnErXvmo0izUg,5935
4
- swarm/consumers.py,sha256=rpPTLqNhxFuvtuPUwLSRpc4H-92yrx7ZtDr77ELR81Y,5996
5
- swarm/messages.py,sha256=CwADrjlj-uVmm-so1xIZvN1UkEWdzSn_hu7slfhuS8w,6549
6
- swarm/middleware.py,sha256=lPlHbFg9Rm9lUuvg026d4zTDjRMc8bQi0JegpGdqIZQ,3198
7
- swarm/models.py,sha256=Ix0WEYYqza2lbOEBNesikRCs3XGUPWmqQyMWzZYUaxM,1494
8
- swarm/permissions.py,sha256=iM86fSL1TtgqJzgDkS3Dl82X6Xk7VDHWwdBDfs5RKWc,1671
9
- swarm/serializers.py,sha256=4g3G2FdWpSIuLLC_SBKoNITw1b0G83Bxo7YHc-kjsro,4550
10
- swarm/settings.py,sha256=Tpu0pwd60y_CzvsIepy-wnDgcTFVrFwuXiPK8sf2ux0,6680
11
- swarm/tool_executor.py,sha256=KHM2mTGgbbTgWNN3fbV5c4MDY238OTLwaaqtkczFHFQ,12385
12
- swarm/urls.py,sha256=9eRQWsB-Vs3Nmes4mtlZtk_Rvuixf4Y9uwrX9dVQ9Is,3292
13
- swarm/util.py,sha256=G4x2hXopHhB7IdGCkUXGoykYWyiICnjxg7wcr-WqL8I,4644
14
- swarm/wsgi.py,sha256=REM_u4HpMCkO0ddrOUXgtY-ITL-VTbRB1-WHvFJAtAU,408
15
- swarm/agent/__init__.py,sha256=YESGu_UXEBxrlQwghodUMN0vmXZDwWMU7DclCUvoklA,104
16
- swarm/blueprints/README.md,sha256=scDx32t4UBC3TLgNzUe0dRmlcC2yJH-yY4Pxde1n5_A,9257
17
- swarm/blueprints/blueprint_audit_status.json,sha256=6uv6_M8WU5VGr1GhG49_p0-iHHRoi3iDLo-sy5GmuS8,1852
18
- swarm/blueprints/chatbot/README.md,sha256=cZ-Z8n1ftTa3DhPJHMAvSzJe8afqFIXa-BxvvEhlsHo,1154
19
- swarm/blueprints/chatbot/blueprint_chatbot.py,sha256=8nP6ldsZKGiXv9LsZMb_3b_5ZwqACtn2VRuXTr8qLsw,20787
20
- swarm/blueprints/chatbot/metadata.json,sha256=8hqn9YSUepbzklNZbIasIv2-EQEb3ozaWvxeDVHJX4s,790
21
- swarm/blueprints/chatbot/templates/chatbot/chatbot.html,sha256=REFnqNg0EHsXxAUfaCJe1YgOKiV_umBXuC6y8veF5CU,1568
22
- swarm/blueprints/chucks_angels/README.md,sha256=5DZdrSwJqLQpu5EdUsPYpFJ8ydb0gZyAolCdYOB7xBA,211
23
- swarm/blueprints/chucks_angels/blueprint_chucks_angels.py,sha256=ZHsLxHCWXcwx2jTizpN67I5wrgazZou4y6GoekheiW8,122
24
- swarm/blueprints/chucks_angels/test_basic.py,sha256=ex92-5RM_5_OflDZhScR_EGSCEsN0o5Ugahm2cRgXX0,137
25
- swarm/blueprints/codey/CODEY.md,sha256=JxGcR0INH0dLk_q4ua1D0YdvX99szyESsbbs4dIy5Sc,742
26
- swarm/blueprints/codey/README.md,sha256=4P9BdRhhUl65W3m1akp-wooM808P8jFWQHm9jbnDjYE,5266
27
- swarm/blueprints/codey/blueprint_codey.py,sha256=t6VSEgier8RHzdcZjsAKD098vzIUpsXIkQHwyrVOzDA,48030
28
- swarm/blueprints/codey/codey_cli.py,sha256=ovOlfuvxa8CSQ9v41DT1rww2v966QEYnf6UEyYbVwVc,17579
29
- swarm/blueprints/codey/instructions.md,sha256=XMvJngQ23vl7xJQx-Sp5UIME2-JQyyxeZFFtIuOtTOI,1209
30
- swarm/blueprints/codey/metadata.json,sha256=wsW0jGIKZ-vzrMSMbOuYtVM8rr4joNIeJ0NBQAiHqu4,775
31
- swarm/blueprints/common/operation_box_utils.py,sha256=YYntqT6p44r7hxq5GLOS0gyOuInmhvWo1hp6-qKk36Q,3087
32
- swarm/blueprints/digitalbutlers/README.md,sha256=QsUgO7wT5Vdox6zg1FitjUUH3GDrS1zfJwz3GPaQDUw,212
33
- swarm/blueprints/digitalbutlers/__init__.py,sha256=LnyAuYFoAEfERWtkr99jPv-K5aVWaJ1DJT0KZ59Yp-c,152
34
- swarm/blueprints/digitalbutlers/blueprint_digitalbutlers.py,sha256=NSSh8oAD1iEIbFfvNNJk_7aJ1AuWLz1imt3WnKSrTSY,126
35
- swarm/blueprints/digitalbutlers/test_basic.py,sha256=aIhhcGzSNMY_c4_EupL7r1I5eNlmLR4u-fXe9eRaKJw,142
36
- swarm/blueprints/divine_code/README.md,sha256=ilI203wOX5GSZ7mIYQh-nf9PcYy490yl_7u2LPYfcDo,82
37
- swarm/blueprints/divine_code/__init__.py,sha256=Wzn252KW4QGhMzZGc8lH6Ltangw4fcGwwWWMDjtudww,844
38
- swarm/blueprints/divine_code/apps.py,sha256=k615JHdfOuo_GwfVbC7ah8X9OblkAL2XWm9aLBjmMyY,306
39
- swarm/blueprints/divine_code/blueprint_divine_code.py,sha256=EBpDGaEFT5ke63AdoMRxnc-o6SmeGw7MxyQx2gmFzz8,12305
40
- swarm/blueprints/django_chat/apps.py,sha256=rn1Eu11c4zZ6DYZeFb6AkCDMoM_dcQTzeNwW-IxXpCI,200
41
- swarm/blueprints/django_chat/blueprint_django_chat.py,sha256=rCxfYCcSNEKnzST0Zrq_Y9XHOwnURfbCK3FON5P6F9k,11544
42
- swarm/blueprints/django_chat/urls.py,sha256=TTTF3pgymvCYbuxpwi4WRBPv8ftQNH4pEoURT8sEVAg,147
43
- swarm/blueprints/django_chat/views.py,sha256=MUKjXXjXsq8jMZtAb4RR9g2mEYrwFemN6Bqxpeyi7p4,1299
44
- swarm/blueprints/django_chat/templates/django_chat/django_chat_webpage.html,sha256=wAEOI4Wg0JJ8drXaOcr2Pel6lW3JSHmyIpbocLS5tI8,1649
45
- swarm/blueprints/echocraft/blueprint_echocraft.py,sha256=1ttrbOWxGTerlip_lgLzCoCmzPJhDdfEIN6FoxnsP2A,16597
46
- swarm/blueprints/flock/README.md,sha256=kiwNc3qshVFfD76GirTlKCuKmWVgqf5v8dM8UTo-RvM,203
47
- swarm/blueprints/flock/__init__.py,sha256=xJE1nyHUagJzrF9xwJAU0q6kAPd_We_jf0ig4YCa7E4,689
48
- swarm/blueprints/flock/blueprint_flock.py,sha256=Vg1tOD8LxCOp_YBhNeXLbvw_aOfXrV_eHXZhSxZds3o,99
49
- swarm/blueprints/flock/test_basic.py,sha256=kv0n6JYoYKL-VlASiDbJBAmYJ5TATrEscc9Tzm7_E4M,115
50
- swarm/blueprints/geese/README.md,sha256=gE37yl-q9Xp9uVaMGivfbl0z0n-2eYEnJJaAQaFhd68,370
51
- swarm/blueprints/geese/__init__.py,sha256=Wq-UfdMccUT5_9pEyyeJi9fPcIt2RZp1CHAAbBdbHuA,689
52
- swarm/blueprints/geese/blueprint_geese.py,sha256=AJKUcY5OReFwpO7zk-RFqsD3jqqZMAKaBsTWRlzPXfY,16442
53
- swarm/blueprints/geese/geese_cli.py,sha256=JNx2Te4F-HvYnCldXOtzDRKyNznse2N8_LXPlpZ_vbk,5354
54
- swarm/blueprints/jeeves/README.md,sha256=yXglrTCfD4SFDqFo4qwo54cIf1ie4ykjUtKlRAE_NhE,1373
55
- swarm/blueprints/jeeves/blueprint_jeeves.py,sha256=Tyw2vDFthRaor9EAkXI2GQwOhqYUqBatoYzOnfmnORk,33110
56
- swarm/blueprints/jeeves/jeeves_cli.py,sha256=n_2CeiqPjwPA-xnRKXeizO6A1WtxpsI06HsWaIz_51M,2630
57
- swarm/blueprints/jeeves/metadata.json,sha256=Yn3BNKcihLehqbOxiiSrfAgZH_NpzFgyPy_2-EPzjiU,873
58
- swarm/blueprints/mcp_demo/blueprint_mcp_demo.py,sha256=036QxkuxvX7cSgX1MernL0qicbsAXO3HXDiOqZKznV4,21341
59
- swarm/blueprints/messenger/templates/messenger/messenger.html,sha256=izuFtFn40Gm7M4gSUAUT5CIezjBjmNv2w4_fwSlv7VA,2323
60
- swarm/blueprints/mission_improbable/blueprint_mission_improbable.py,sha256=hvwbg6LwaVKnH-fzQdyg7zTvDC5Get3sVt8xx82WpZc,21074
61
- swarm/blueprints/monkai_magic/blueprint_monkai_magic.py,sha256=nI4YNDndJN44TPh3rr7WrNBbK2I9x2xIU98GepzQe-0,18636
62
- swarm/blueprints/nebula_shellz/blueprint_nebula_shellz.py,sha256=DhHzsHQS98h7Of62g9eSasSWis2MK4R3x5JhNT3K1Z0,14101
63
- swarm/blueprints/omniplex/blueprint_omniplex.py,sha256=SNjMXprI_kvJ9yxihsVqroDt627R17U3rYPYXljR_pk,15275
64
- swarm/blueprints/poets/blueprint_poets.py,sha256=dw7oQrsOnnfF4EApPbdL7d3azM7V5LXR3USLBWhq--w,29031
65
- swarm/blueprints/poets/poets_cli.py,sha256=DRAXxRGJZhFZaGhvfBxMe3qlxnjCClKlYfLIE6cUiuI,890
66
- swarm/blueprints/rue_code/README.md,sha256=j9EXCkimV1yY5qJHLgcH_JGhQtV9SefZGZCzDRdaprQ,302
67
- swarm/blueprints/rue_code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- swarm/blueprints/rue_code/blueprint_rue_code.py,sha256=nxR9nHYbB_Pp5Pft1VwK4-ktiWZHMsiMywpmdGPZyCc,20937
69
- swarm/blueprints/rue_code/rue_code_cli.py,sha256=E760-LOYv2Uw0VoLTHEEK7LdhaG6oSflJfsaxV7S1v8,2194
70
- swarm/blueprints/stewie/apps.py,sha256=D_Nvpx7SPdUgtE8KaaMmlEDghUwadMmSPI-aGJlnFos,341
71
- swarm/blueprints/stewie/blueprint_family_ties.py,sha256=0LPsHLPg6bXJ5Tia7uezdF0mNddWaGgg3x2kIBvs0TE,17297
72
- swarm/blueprints/stewie/models.py,sha256=C3_okdVVYuu9xOpoKRsaLoGrM2775cS_cU4UKYAkJ9s,903
73
- swarm/blueprints/stewie/serializers.py,sha256=YFxiMYJcQuI1KkBXEcfefPDZkU_cB-J_XJfc1OPROhg,383
74
- swarm/blueprints/stewie/settings.py,sha256=Q3aB1KfxyKrxSvtoFJdXQsuqb99Wod75xW0xJXyQ9xE,443
75
- swarm/blueprints/stewie/urls.py,sha256=5hWn-75wdmyaFTViV5-8vF1aH0c3XnyZMKg_9CP_39I,308
76
- swarm/blueprints/stewie/views.py,sha256=FbPkDNlFEixtRFbSpkr51IyJ28FRkXa1W5xyO_KeXH0,1081
77
- swarm/blueprints/suggestion/blueprint_suggestion.py,sha256=zKQUybUYcM8TD9UBzVDZMZ-efizbk2ZwBXtsW012Gn4,11647
78
- swarm/blueprints/whinge_surf/README.md,sha256=tXV2vVHAs3VKdqjDSzxVCz44xCRt8mjxVEuQGCBKhio,953
79
- swarm/blueprints/whinge_surf/__init__.py,sha256=N-BmmHagDPSdh3UCNqFDJPk4LKtPIqsttTANj0tQIXw,32
80
- swarm/blueprints/whinge_surf/blueprint_whinge_surf.py,sha256=LJSNYuASGXz0DakedGb7uHVi41a7EievawcxD5j4d-Y,23319
81
- swarm/blueprints/whinge_surf/whinge_surf_cli.py,sha256=t9OJWNlcFLGcGH9t6jhE-6EGjPsRgRedVoXrywC1www,4101
82
- swarm/blueprints/whiskeytango_foxtrot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- swarm/blueprints/whiskeytango_foxtrot/apps.py,sha256=V1QKvyb2Vz-EtDNhhNe4tw2W9LYhNDuiaIq_fAU4ilw,334
84
- swarm/blueprints/whiskeytango_foxtrot/blueprint_whiskeytango_foxtrot.py,sha256=6QbSQxE26fRDNGSQZKyS8VK1_C6WGPqOsZc8YRDC76k,18352
85
- swarm/blueprints/zeus/__init__.py,sha256=jeKj20cgtIU59RfhOnLaMTPPAyqzrAHOVXNrN40RlI4,94
86
- swarm/blueprints/zeus/apps.py,sha256=HZ7rLf_HANy4yJtCv9bfY_2DZUg-N-gl8xXj8EJ4cTs,99
87
- swarm/blueprints/zeus/blueprint_zeus.py,sha256=tCYpS07ZAQP3XyzZBFLgT_hzBzH2o_PY933fQWvXQ8A,13408
88
- swarm/blueprints/zeus/zeus_cli.py,sha256=7gKqT9Vp6VQsqphaJZj-Cw91q_ZIlD_WBbVsWhNxPrw,460
89
- swarm/cli/async_input.py,sha256=6Is9KRc7zwe9VPBeVuRleqKg_kc6aDU5eFmby0NOTow,2297
90
- swarm/cli/async_input_demo.py,sha256=mKn1ffQbiCBWshvlCXES78ASbVUi5kprYejbImR_QH4,1005
91
- swarm/core/agent_utils.py,sha256=exKnbJEm1VRL270x6XqQXHtJhqD8ogY3ZBIGZO_tYUE,552
92
- swarm/core/blueprint_base.py,sha256=ZXfgCqaAVprML0KS3njHNxgldrwOCSGZrcI-fj7HyZs,40178
93
- swarm/core/blueprint_discovery.py,sha256=UyJuBq_u7KLQC2_I9KGioX-Bcbj2-qjhKke4ensk_Xw,5622
94
- swarm/core/blueprint_runner.py,sha256=TIfcIFfW86gCIeYs67ePmurKRPrcGgVYmVFGbpNuojQ,2576
95
- swarm/core/blueprint_utils.py,sha256=Ef_pu-RYomqzFjMg6LOSPSdbYFCbYXjEoSvK1OT49Eo,702
96
- swarm/core/blueprint_ux.py,sha256=Lk4VFsIYyZSiDhwpLTYMaPAtDdLoVIDHaMWg9HCN7bQ,4567
97
- swarm/core/build_launchers.py,sha256=2NZRvX0A3jFN1mYZI5vbXkPRDoXgdUBdunruhSUogko,563
98
- swarm/core/build_swarm_wrapper.py,sha256=c_9oR3To4M2cZyc1uYSiysHLhUGX5FkCAQk9AG7Va2Q,231
99
- swarm/core/common_utils.py,sha256=jeKcN3lMdrpOYWIpErH3L5am13jHjaImpVvk2b0mps4,462
100
- swarm/core/config_loader.py,sha256=iSIKmB8Oc6MsI7luWZwFAIG_FNPILwnUZowKi6B1wyk,5614
101
- swarm/core/config_manager.py,sha256=DdrFHpTnEtZOZZdBZbL4hE3AGdaZFJQ9duaAfi7GhJw,10015
102
- swarm/core/output_utils.py,sha256=9rr1MNZ6Kucm78oAVAJaehlGbvgH2LY41VHzjxN1kZM,8345
103
- swarm/core/server_config.py,sha256=v2t7q22qZwMAPdiUZreQaLAy1706k3VbR8Wk0NCQuCQ,3224
104
- swarm/core/session_logger.py,sha256=92I0IGwUsRsYEISsO1HBeVWPnbBWBC4UuUzk2KstBuk,1859
105
- swarm/core/setup_wizard.py,sha256=yAZ7MOgc8ZGti2kjZ72G6QLFBI0lbhXAa7Wi7SeXDYo,4567
106
- swarm/core/slash_commands.py,sha256=F4-SZGsPKuSws81kqByhHR7kzU47s5fqY0kKkjEQYMA,3476
107
- swarm/core/spinner.py,sha256=9lyjzLnQBdEBy_dXr6N6I7nxx6KfrNp7wf44sQN06GU,3756
108
- swarm/core/swarm_api.py,sha256=f8olTI5JVdayp923etVQWsP8WRquPG5Mw3Q40ItN6kY,2877
109
- swarm/core/swarm_cli.py,sha256=dlvMq2HvUI2XlADuTzM8kpeedPkqzKB6k0oy7z2V_p0,9747
110
- swarm/core/swarm_wrapper.py,sha256=3K58yqPN4Ct0c7zfSDKRIGdL1Q7WOBXmAVHXT-aaPj4,1004
111
- swarm/core/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
112
- swarm/core/cli/interactive_shell.py,sha256=ef38ecu7j2gwkb5XLSibzxNjJi5KQVsVZNWbYsiLQ6c,594
113
- swarm/core/cli/main.py,sha256=GksBw_rVSM_oQVbGZ325T8yCmg8dV7c9H94hDRlObpE,1535
114
- swarm/core/cli/commands/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
115
- swarm/core/cli/commands/blueprint_management.py,sha256=54gwPB-hmZOHUMVHMgjDZhOGhceU6aRES5_uQCdPLro,208
116
- swarm/core/cli/utils/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
117
- swarm/core/cli/utils/discover_commands.py,sha256=VyrvpMg1rKwGdCp2MBxwIqXjBs_h7454cAF1UFtMVcg,823
118
- swarm/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
- swarm/core/utils/logger.py,sha256=sUkKdZsjRiCGGCEPfZ4YqeZDbiaUeGFOa3mdbVOTmvU,1242
120
- swarm/extensions/__init__.py,sha256=SadbzfxckByaaqzuKPfXMvqmj45-dcMlavlfQYhGnzE,56
121
- swarm/extensions/blueprint/__init__.py,sha256=CqPy-gR0KAeVGxDnOWKOYZZzVC1FXRzQDtUCY8jmP1c,1850
122
- swarm/extensions/blueprint/cli_handler.py,sha256=_sUqT0FuVP6KcjxDqBHMzzWs0J5RH2VV7_VxSZq7MqQ,9981
123
- swarm/extensions/blueprint/django_utils.py,sha256=ObtkmF1JW4H2OEYa7vC6ussUsMBtDsZTTVeHGHI-GOQ,17457
124
- swarm/extensions/blueprint/interactive_mode.py,sha256=vGmMuAgC93TLjMi2RkXQ2FkWfIUblyOTFGHmVdGKLSQ,4572
125
- swarm/extensions/blueprint/runnable_blueprint.py,sha256=1MywZ54vUysLVtYmwCbcDYQmQnoZffCHgsArbe-VKe8,1813
126
- swarm/extensions/blueprint/modes/rest_mode.py,sha256=KZuB_j2NfomER7CmlsLBqRipU3DymKY-9RpoGilMH0I,1357
127
- swarm/extensions/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
- swarm/extensions/cli/blueprint_runner.py,sha256=CG6XfOiDWuc84I_qefBpkwxEs7JcIbvNJqce9jBYUxo,9158
129
- swarm/extensions/cli/cli_args.py,sha256=z7jzrOFx8eBNW1N9ilKK07zN6VsTbjyLPp19tbmq9c8,3239
130
- swarm/extensions/cli/interactive_shell.py,sha256=I1g-1Uht4YkIgXtudKtyhHIQMGVltn6EUnOa7DEIbuQ,2173
131
- swarm/extensions/cli/main.py,sha256=NnmovA7h1Rj1eDQVYe9AN6-eraIbIclHesNVmQPjdk4,1002
132
- swarm/extensions/cli/selection.py,sha256=etdG6hJFgnLuvD_sVJvXg8qFcgjzCjyL-vYyxWcU0TI,2002
133
- swarm/extensions/cli/utils.py,sha256=amDW-jbiM12N-t72j2S0cHP3Mxgoo3nrcwq6CwN9HFY,3290
134
- swarm/extensions/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
- swarm/extensions/cli/commands/blueprint_management.py,sha256=En3hYeYYejKn2VE_m_RmfPZVL3sD_fHVWBj0Ckav5tE,2656
136
- swarm/extensions/cli/commands/config_management.py,sha256=L-z4YEJnfQQ-QGbQtodgptt8wbWtEPKJWHBIBx6TPj4,519
137
- swarm/extensions/cli/commands/edit_config.py,sha256=g5BN8DZXIolx5b3U-OMWOETEgSI1L48sc-bDlZGzwPU,2613
138
- swarm/extensions/cli/commands/list_blueprints.py,sha256=jqyecR1tKpN9Q2tuanSL3rI4kTsqGCV6Lmc3JAsf1BY,752
139
- swarm/extensions/cli/commands/validate_env.py,sha256=8vRd0UBIO_FO4XU3Qoc0g6uLbruhYgQpjgNImFg4rkE,2236
140
- swarm/extensions/cli/commands/validate_envvars.py,sha256=ctXNHtvgPtIgk3vPj5D8OAJ-gQLHkEHEd0vvpDI8Luk,1613
141
- swarm/extensions/cli/utils/__init__.py,sha256=eUxoVdoPpEE1_24F9Jfo_kW2nbehHxHe23ov0vKUxPY,37
142
- swarm/extensions/cli/utils/async_input.py,sha256=jtclui4tRaS2FWJLfjYR9yrS8qliZkw3ySQwkoxH4rM,1336
143
- swarm/extensions/cli/utils/discover_commands.py,sha256=aJdU3kSmLlpBxzGdfOA88AaCwpknHSD2cE0piCHZRUY,1053
144
- swarm/extensions/cli/utils/env_setup.py,sha256=k7QxRjzIGx5HC6RVZP9QSaaXEKMkcKCewD66u0e7qfE,496
145
- swarm/extensions/cli/utils/prompt_user.py,sha256=ac0tQCL2PjIttBmYA9jrna_b1vK7pLZFRdL5Eo7PBb0,137
146
- swarm/extensions/config/__init__.py,sha256=WjmGxMU5k3S40TNQxTfByYcT2YAchq_5gzXFWDLrLzU,141
147
- swarm/extensions/config/config_loader.py,sha256=t-qa_wrdyRDQpk6rczOIY56pRZokQMcxc6_Y-y11E4M,5471
148
- swarm/extensions/launchers/__init__.py,sha256=RR4up00HKqXOOToxb63mKZ2o9fq-o75bUw7dZuxkAVk,56
149
- swarm/extensions/launchers/swarm_api.py,sha256=1qcBtwD77q9hpI0vXgVLKmbryMuslRCx7dd4gBPgDFU,204
150
- swarm/extensions/launchers/swarm_cli.py,sha256=2dbU9OU3PCfHNPr_mDM4J1t3bJubjK3nQH0SQjS85tI,195
151
- swarm/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
- swarm/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
- swarm/management/commands/runserver.py,sha256=MQJxuV_4le4u_4RJu25OyiDgcEOyIB9StQ2U8xrkTOA,2621
154
- swarm/migrations/0010_initial_chat_models.py,sha256=qJbvLReRBEOE08FkxjOWMcwu7Ny4epNI_eG1PF8wcWM,1900
155
- swarm/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
156
- swarm/repl/__init__.py,sha256=hNU3HxjJJi6w5xgx34n3253QJPspFltrK7AM0G_1TlE,32
157
- swarm/repl/repl.py,sha256=sfVdSiDrStpZyxZehPn0nAxqaja2eySL9v9CfWhZEVc,2609
158
- swarm/static/contrib/fonts/fontawesome-webfont.ttf,sha256=VffZ6ZuOLU4OGTsvAnVQHm2cHr0pytvqag2kioWH4-A,146
159
- swarm/static/contrib/fonts/fontawesome-webfont.woff,sha256=VffZ6ZuOLU4OGTsvAnVQHm2cHr0pytvqag2kioWH4-A,146
160
- swarm/static/contrib/fonts/fontawesome-webfont.woff2,sha256=VffZ6ZuOLU4OGTsvAnVQHm2cHr0pytvqag2kioWH4-A,146
161
- swarm/static/contrib/markedjs/marked.min.js,sha256=ixCmFz1ST8bJe8lYm6g4PgIS1cDWF-FRnl9OagyfIk8,39249
162
- swarm/static/contrib/tabler-icons/adjustments-horizontal.svg,sha256=vxgHX9-4TmrGFv5RLhP3quTD9LWh5SNAimbI627gx5o,640
163
- swarm/static/contrib/tabler-icons/alert-triangle.svg,sha256=gxyaxDShS46IVXdYEM2XHP8EVzMAEKTDyB90Iz2-5f8,506
164
- swarm/static/contrib/tabler-icons/archive.svg,sha256=CYCi5N6si5jV8i_q6wHCT1hatnkpBOH5QQ40F5gQ2gw,488
165
- swarm/static/contrib/tabler-icons/artboard.svg,sha256=jPoQ3vfdeVoSoGJxUOg6VLCiPp-BP3oU_X6-3B5r9B4,604
166
- swarm/static/contrib/tabler-icons/automatic-gearbox.svg,sha256=D7bNI-yKcn5sf2nufvMlV6FvmhTfaqack5QsZE4NzLo,594
167
- swarm/static/contrib/tabler-icons/box-multiple.svg,sha256=ranHl2fyhPSasYvTWlwHh7ZOEo2cFiKBuiv18QIhEa4,498
168
- swarm/static/contrib/tabler-icons/carambola.svg,sha256=rHpYxin07lR34uMzP1v1hU9cH5wZz8Dcluwol4GM5a8,611
169
- swarm/static/contrib/tabler-icons/copy.svg,sha256=EyzzGI9ve5xPRMT8-TfAJt1-6hnLjkZwwSWGO5BOwp0,580
170
- swarm/static/contrib/tabler-icons/download.svg,sha256=NJNt8BlcJhCyRorNPnjUvjhEPnwHa_tRMYJ9OtKCeiE,399
171
- swarm/static/contrib/tabler-icons/edit.svg,sha256=R2_4UhC0AiAp8-g-uhbEsow2JIY07Uq7lxsum7RTrvg,481
172
- swarm/static/contrib/tabler-icons/headset.svg,sha256=iqPoDoxHGSfpEQDW-o4yWNmcOSdH4C7GZdTAUzZgPbE,584
173
- swarm/static/contrib/tabler-icons/layout-sidebar-left-collapse.svg,sha256=gGCwuGCGj4sQCx5N_ehAStbS3rx5XUBMEz0gHn-Ivxk,470
174
- swarm/static/contrib/tabler-icons/layout-sidebar-left-expand.svg,sha256=qrQGKaVjBPXLhCN6AUvqo1d4LSH7-Wu8oMQZrDiJai8,470
175
- swarm/static/contrib/tabler-icons/layout-sidebar-right-collapse.svg,sha256=hhRc_GF2iD2msRKn0QIlHeYcfpccqP3mpw-iebqpCZI,470
176
- swarm/static/contrib/tabler-icons/layout-sidebar-right-expand.svg,sha256=A4vOygRo_-AvlSAL2pZojEy9TlgHnMjqx40ybA13ouU,471
177
- swarm/static/contrib/tabler-icons/message-chatbot.svg,sha256=3kzJqimURtFYouNSU5xWN4AqzUk92oAvNf1GnNT90x8,516
178
- swarm/static/contrib/tabler-icons/message-star.svg,sha256=EyJPjs5MGxIJ_uBFYEaMxBMVxeqbf7vNgi70ytj1muA,806
179
- swarm/static/contrib/tabler-icons/message-x.svg,sha256=O42m_yEBWrkg0X_DVNQd7-2KZNvAzu-EUD-lyLTYmJQ,542
180
- swarm/static/contrib/tabler-icons/message.svg,sha256=IpzYNETPNs0TBX5Hnka_HtfsC8LE-K6lqKY_DJGvLGs,484
181
- swarm/static/contrib/tabler-icons/paperclip.svg,sha256=uGqKL5F5BllN3yD0xFCqu7njyYU-DFxccgAsTE8Z2TI,389
182
- swarm/static/contrib/tabler-icons/playlist-add.svg,sha256=IZ3YfhAK8PAGq49TavITQ_L7NcZP65HsQAXlUmEPwtI,422
183
- swarm/static/contrib/tabler-icons/robot.svg,sha256=clX91lxB8bXOcUZJ9Rfs42XVQzkNZRWzEbDUioV0Wwg,582
184
- swarm/static/contrib/tabler-icons/search.svg,sha256=OD-rI7w852D0e-E6BV8oJWpoRp-0z52Moz_LCbzVP1E,376
185
- swarm/static/contrib/tabler-icons/settings.svg,sha256=mPEM7wVxqbuvlUyKXTaBB8JHIV-taLxiprLH38DilkI,898
186
- swarm/static/contrib/tabler-icons/thumb-down.svg,sha256=295gU94RFvRqDj57pcn5q1tJ5XgZ9mishMsdsoGNs4g,461
187
- swarm/static/contrib/tabler-icons/thumb-up.svg,sha256=VErjBaOuYIWf0A-Q5wiv27wSADqfyczpSBW7637dCKc,465
188
- swarm/static/contrib/tabler-icons/filled/carambola.svg,sha256=AJDlJ7UMFzo1DCLP5S9HTAMvtMNyWIm7UBDdYwWVdH4,625
189
- swarm/static/contrib/tabler-icons/filled/paint.svg,sha256=ExnUx5q2P5L9gqAUIo7Yi3eSpFf70w0aDlrMcXNakGE,625
190
- swarm/static/css/dropdown.css,sha256=cUzKXj4rFoXzTddU8LNj2gXz4bA_j7KdnD6Jnzc4A24,363
191
- swarm/static/htmx/htmx.min.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
192
- swarm/static/js/dropdown.js,sha256=Vy3FGUQz_DnstV_CgSuZQghpoAfxqVupEsW8aahZauk,1110
193
- swarm/static/rest_mode/css/base.css,sha256=RrauHcOBb2UsFVK5Px0RA9LFW4etIpACfH54fskGGTQ,10190
194
- swarm/static/rest_mode/css/chat-history.css,sha256=2dwpl6tp-dwY28ypHJyRr3tIo4ynmd7QwCqMaq_Yq0Q,5963
195
- swarm/static/rest_mode/css/chat.css,sha256=TaW9m3i0tOaCHdLj_XnE0Bxgnf4YMBouC_CAuPC8vpg,6721
196
- swarm/static/rest_mode/css/chatbot.css,sha256=amLMNJep-mReOl9fi7cooQLcTMy0wwav9EBziGLKepo,1475
197
- swarm/static/rest_mode/css/chatgpt.css,sha256=_IWj_Pbh_FoHqCn4pLJFf_2KJkGVIhx3PFDPulTQTxQ,1126
198
- swarm/static/rest_mode/css/general.css,sha256=onEYMsQ1ufBoQ4B9oz3y4qKL2J3Vm0QtV7IjmseOLhI,2035
199
- swarm/static/rest_mode/css/layout.css,sha256=AFgJ_V6p51RYDveN8UBL8QLXrdjAmf66EnKCgzgbpyM,3254
200
- swarm/static/rest_mode/css/messages.css,sha256=YHL5wNbP387gIEUI2rrc-D9YrD9N6kg1_ZO8D_Qup8Y,1566
201
- swarm/static/rest_mode/css/messenger.css,sha256=PUPwjFq0ZmVy1QYWFlDwG7V6fhG1_AL4ltYrnoVylyg,2805
202
- swarm/static/rest_mode/css/settings.css,sha256=h-CCaKo47W2UOUS9cmufg_CKXPEOnIsJcklXqs5vUJ0,2432
203
- swarm/static/rest_mode/css/simple.css,sha256=yZWS1WtKbEoou3xhfBKVn6Pb06CA_CHn-BI3fO0mfmE,830
204
- swarm/static/rest_mode/css/slack.css,sha256=gPCI-ff_zGcZ1U6r7SxjnxpZ20K_PP8oumcuPr5Qnuw,1022
205
- swarm/static/rest_mode/css/style.css,sha256=5HUYyrf_OazZorAJ59U_I1YwQ3uWRHsRhAaQrDT7NPQ,3216
206
- swarm/static/rest_mode/css/theme.css,sha256=NVEtV_UhcDXlA_gCFzCxKFcXe9P_CYeKyzf7mAMzFyI,903
207
- swarm/static/rest_mode/css/toast.css,sha256=oxcrp7A3vWY4QBLeHTdaA0rft7x-iwvr2NvcDWepeXo,706
208
- swarm/static/rest_mode/css/colors/corporate.css,sha256=1083vv4inVV35XrmqRZu5gqRsAhnflqxOoleqdJSzRE,2027
209
- swarm/static/rest_mode/css/colors/pastel.css,sha256=9F70z98HRBu3hZLNlSepfZ24zAiyOslyqbfvaNn9wTE,2456
210
- swarm/static/rest_mode/css/colors/tropical.css,sha256=oadHNGghCYkd2jNToTabckh7yrR5toQhddSQk0Txq9c,2528
211
- swarm/static/rest_mode/css/layouts/messenger-layout.css,sha256=XuAx8LRjdaTGo1Adya-Ren8GiZeAe4UcWA8yXGO-LeU,321
212
- swarm/static/rest_mode/css/layouts/minimalist-layout.css,sha256=4l06WNTuasTzaWuyUz_FHF7-knmxCzZrU10_QBaUs0U,1257
213
- swarm/static/rest_mode/css/layouts/mobile-layout.css,sha256=-9ePbwt47wZ1qH_fF8wDSmN8q_bNk0no3LG6Roo5OxA,129
214
- swarm/static/rest_mode/js/auth.js,sha256=6nw1ILMd5QEjR-k5DyKYSBeNTMUrg-sfUiC-G8kCV_w,202
215
- swarm/static/rest_mode/js/blueprint.js,sha256=slQzz6jB_uP-zzWykmqQtDQc3yv28mUk-DZipKQjBlQ,1239
216
- swarm/static/rest_mode/js/blueprintUtils.js,sha256=-0LkrPsBSZ8D8o7QmT2g7Rm_aQ4YTQ6fgbOMYE96UAc,461
217
- swarm/static/rest_mode/js/chatLogic.js,sha256=XScNtw0qpPkhLwhk8cWctHBArv0MJbm5JExdWCBufKU,3053
218
- swarm/static/rest_mode/js/debug.js,sha256=wQvouiFyxT62dL_sQ8VkdU7re99JxJ5zLckU6PvLHUk,2125
219
- swarm/static/rest_mode/js/events.js,sha256=8UFyAmAHu4-HK4Bfckytatd4GBrAQwgfjY3xs5ZQRgM,3703
220
- swarm/static/rest_mode/js/main.js,sha256=QhcVh7UocC4USpcdpsema8PHwy8K7ylGWPmT6pUtjjQ,580
221
- swarm/static/rest_mode/js/messages.js,sha256=offtFtDA9joqMZejTUU7BbEeU0M2QpWtbtM4WGiuPfo,8301
222
- swarm/static/rest_mode/js/messengerLogic.js,sha256=bWuFpsUyQsEDPePQZnGp9Zmc3Ikmu7vq-ZisFWr80sQ,14917
223
- swarm/static/rest_mode/js/rendering.js,sha256=4pY0oGrgyqv2DmGBoYZ4bakzfYCgkGirW1jRRgBevOA,4517
224
- swarm/static/rest_mode/js/settings.js,sha256=flinYM3_aAzLOPMJEiUp1CQAx8Mm-cq77kSTeSnqkTU,4383
225
- swarm/static/rest_mode/js/sidebar.js,sha256=xYsShufjz8ve3Fsot9LlRI31Dj6jxpPzuq3py6VJAcg,3133
226
- swarm/static/rest_mode/js/simpleLogic.js,sha256=9F85JmT5eJXVhKpv6wgsRtSSqtfWpD0jVvQnOcFDNHg,1464
227
- swarm/static/rest_mode/js/slackLogic.js,sha256=S0ByXaXOj08EjruulNOgrXcqGE-8zZULRayJI76AUAw,2445
228
- swarm/static/rest_mode/js/splash.js,sha256=B1p9BR2UsfjwNPqeVTDkzT_VQK0lZuOPwB1PWbOfnYI,2839
229
- swarm/static/rest_mode/js/theme.js,sha256=X8YjouxHXGIVcY9FHVUDiJJpFABAxB7Orair_t1osjE,4233
230
- swarm/static/rest_mode/js/toast.js,sha256=UKKaDoMeLudvS_Yp7FWQoXvcYn6eFC-MwGvG8aYRstI,1153
231
- swarm/static/rest_mode/js/ui.js,sha256=In8MeGywkET2S_pKRFzZNE_VZo4QEaMQEJAwmF8fUPQ,8248
232
- swarm/static/rest_mode/js/validation.js,sha256=yZLTu-YnYDDjP-kpss8NlCdjQt5TqiEBjneF6BpigYo,1593
233
- swarm/static/rest_mode/js/modules/apiService.js,sha256=Mt5_5rwKjlTc36WLzE5b1hrYJEfj8i-kfMfIzt33V-Y,2924
234
- swarm/static/rest_mode/js/modules/blueprintManager.js,sha256=xVImTb6PMCqShymeJ7FEeYgNeSkPKElzga1L2DaS4MQ,6112
235
- swarm/static/rest_mode/js/modules/chatHistory.js,sha256=ALLjZvLHX8y43kbrM3StbQe3M8W-3rO3W1wakJLCjxw,4478
236
- swarm/static/rest_mode/js/modules/debugLogger.js,sha256=aC66sQlqkSMLKlDSKOgfCM-IVz-H2DhECmZimmyZPwA,379
237
- swarm/static/rest_mode/js/modules/eventHandlers.js,sha256=qxbGAQqXuMSP60r8DwZafQodCcp3EgKwG8gXxD1bpjQ,3910
238
- swarm/static/rest_mode/js/modules/messageProcessor.js,sha256=5keCMqK_DrfI6X0hSV3QEbb4l-p5WPdf6dtzfAWI9CM,4450
239
- swarm/static/rest_mode/js/modules/state.js,sha256=G-3XURThklkPfTkeK4fOw1tFLeyuXaHLxnKoCuV28dw,174
240
- swarm/static/rest_mode/js/modules/userInteractions.js,sha256=3Z35T-LUulQr-ZSzR2hHFdL5ORrKcvL3Yx_ao_PG9IM,730
241
- swarm/static/rest_mode/js/modules/validation.js,sha256=0cO0vRdTPeJGXUYpgfP4VPJPAzYvMq7r_WH2XvhaCJ4,849
242
- swarm/static/rest_mode/svg/animated_spinner.svg,sha256=uX5a2UAU5Xm7zVw884hpuvnGO9qPYI6UBoA8whEd6Z8,416
243
- swarm/static/rest_mode/svg/arrow_down.svg,sha256=1TULkQfk2sjYFikPS1ECfQM_vw7VCWYQmzfa59RKBqU,387
244
- swarm/static/rest_mode/svg/arrow_left.svg,sha256=tEG2xRp3KVhRWCbnAEm4IDvDhBqOFTbCxk-znLhSOzg,389
245
- swarm/static/rest_mode/svg/arrow_right.svg,sha256=nXbDN01H1ThNEIx1wyor4ClLX6h_H3zRtCWQWT1I0E0,387
246
- swarm/static/rest_mode/svg/arrow_up.svg,sha256=yy0unxFyYaZI40JpMHA6NWSZmouyI7QToeHgSioh7Vg,388
247
- swarm/static/rest_mode/svg/attach.svg,sha256=C71rmaz2O7TAeK9Occ2Zl0Zs9ZJn1VPqcFMnN6ieFVk,372
248
- swarm/static/rest_mode/svg/avatar.svg,sha256=yk7nzKyV9_YfFr0b2Qf_wysYsdJd-qD1JJhPYBht2oY,389
249
- swarm/static/rest_mode/svg/canvas.svg,sha256=3KKsRbWNMogd69XF3dAC60A9Srr2bb-lqx4zhBjdKtc,393
250
- swarm/static/rest_mode/svg/chat_history.svg,sha256=QIJYGZB8pAoXLOCh_1gOeUazPEXpkiAS721tjlrDwCs,311
251
- swarm/static/rest_mode/svg/close.svg,sha256=jvag87WkCHeSeta8xgHY9pS4o41Mi1-HNnECO3Jl8ME,380
252
- swarm/static/rest_mode/svg/copy.svg,sha256=fy7rzebt6LFJCQZUx5NnQQzYbiAcc0ZUwv06uPH_GRE,267
253
- swarm/static/rest_mode/svg/dark_mode.svg,sha256=03G2vhVx7VfsbwwqrWDklUhDoQ3McB06yNGQIa6z5HQ,200
254
- swarm/static/rest_mode/svg/edit.svg,sha256=LagsxrwH462uLbnXSsO3DxrvE_2D8AfE3dTRuhcJPI8,370
255
- swarm/static/rest_mode/svg/layout.svg,sha256=f2FCXQZ3bVHa1KGyjxjSGAsl5sUgNiFVfbzsFYR7jZE,653
256
- swarm/static/rest_mode/svg/logo.svg,sha256=nKAKoOQa5BWwWIULebnx_i8n4AurFnDnw_7JNWWmvRk,597
257
- swarm/static/rest_mode/svg/logout.svg,sha256=KwsIpmgRJUwJNQBOppGRw5WeklDNQSg1qAXgNDTDT4s,420
258
- swarm/static/rest_mode/svg/mobile.svg,sha256=TPI_UDCHXWKFP6TMdzSIa4uCsvLdRqii89x7RSoNXho,263
259
- swarm/static/rest_mode/svg/new_chat.svg,sha256=Al_Y_wJvoYJHPNDWSnk0pybUwAsYJa3a7uWQhf_7IKM,314
260
- swarm/static/rest_mode/svg/not_visible.svg,sha256=3MAibmZQIYjOA8nliGMTDIu8YpNJdUsI8tO0qgrxPJE,774
261
- swarm/static/rest_mode/svg/plus.svg,sha256=2dWAZGiSwNE8UdRnMSsREV3k7NxN11NILmt2VRnoGe8,428
262
- swarm/static/rest_mode/svg/run_code.svg,sha256=bmxf2fHqjg4pZ5Sn6VG7cpiggwqIqTVpKI2GjOwekNI,302
263
- swarm/static/rest_mode/svg/save.svg,sha256=5TudtKjW08KYLfMCiEcJuPcC9_OHzrAm57lM16q85aQ,242
264
- swarm/static/rest_mode/svg/search.svg,sha256=lgQAvrGw9IJiIvYv0WgRg2kxKd63ZcVoTilHXfmp3_0,340
265
- swarm/static/rest_mode/svg/settings.svg,sha256=WEtagh8nt7NnG6D8ebr46rugo_tnSsR-nVf1wO-WExQ,742
266
- swarm/static/rest_mode/svg/speaker.svg,sha256=kQGhqH6Y5u9adwgUzEu_BFwhRQ3EE4I09PCYDIWBNkU,398
267
- swarm/static/rest_mode/svg/stop.svg,sha256=b3JSTUS4stS5O2oYBN055pr6VqD9W0ihSMeLlNXiU_8,346
268
- swarm/static/rest_mode/svg/thumbs_down.svg,sha256=msS4t_j_XkkKeusZvbvzWENjoRhhZuAzzBQq2_xzFcs,1574
269
- swarm/static/rest_mode/svg/thumbs_up.svg,sha256=nybp8imzOK2mfQ6PqZP0X08UNbqO1_5JQf8sO61axnU,805
270
- swarm/static/rest_mode/svg/toggle_off.svg,sha256=sKCoCQA-nijibG-JCh1yl5g0jM1PVy0XmS7flsLwOMk,345
271
- swarm/static/rest_mode/svg/toggle_on.svg,sha256=ckSCIuW8I1aOhAitOxs_dr7uVXO3EFilWyBX7WaOOxc,372
272
- swarm/static/rest_mode/svg/trash.svg,sha256=ynSZX5Xc0DlJeNNGUzC4n5IA4m_1xn105wxKF0zcsGg,576
273
- swarm/static/rest_mode/svg/undo.svg,sha256=0pIAAA6nFlrrm5fxHT3LR5yeBoQYzsGDDf81ZsPdTHc,336
274
- swarm/static/rest_mode/svg/visible.svg,sha256=dPKYA4sdjEyoqX6DG-gMuNc1_vsy3rQwRx28MLMtvn0,425
275
- swarm/static/rest_mode/svg/voice.svg,sha256=rtTTy23nh9t_B2sqCMbvR1jetS-Lgdhr7CKJYBdRYUo,738
276
- swarm/templates/base.html,sha256=yHhl6KDE6nwGKvijkS6QMueeIrK4Ql3CI2luZkIcNzM,1086
277
- swarm/templates/chat.html,sha256=1OPRn3Q4bdg4dlX0w6a4ZZMMZdNyLrmsvYyuSRLxRSk,1657
278
- swarm/templates/index.html,sha256=FbUCxo9rBOULi2f8RuAfTzeKFSUOIi0PawNvEHT1fIU,1368
279
- swarm/templates/simple_blueprint_page.html,sha256=uHTqfDqQ2B5a4YV_nDEELM9T29aA-Vuf7h_ELZFCyas,1053
280
- swarm/templates/account/login.html,sha256=PIOIg9ztWybty55v8lDX1cmwtHwPPjj2aWpv1f2wyOQ,705
281
- swarm/templates/account/signup.html,sha256=HQMdaXKm2Ama-Jt3lbeU7EHYSGwzf8Kc5nJpoZb8ogg,1106
282
- swarm/templates/rest_mode/message_ui.html,sha256=6niayyHGIs2DI3b-IPQ56RB11VmkByDSI6cGgacBLdE,2716
283
- swarm/templates/rest_mode/slackbot.html,sha256=7-SiEt0ieTPiSGKBk7Epo8hgb7sU-Hy0RoJVn7Sl99U,1246
284
- swarm/templates/rest_mode/components/chat_sidebar.html,sha256=cFm0lK09jRuQncS8HswpdlEOM2EXHkCkD68LGeYLFYE,2828
285
- swarm/templates/rest_mode/components/header.html,sha256=Mg0cwV7tHEx1dcBmaYWDtfymQ0HDcTYUEhPBCOJv3qI,2078
286
- swarm/templates/rest_mode/components/main_chat_pane.html,sha256=CnyYMGn46r4fJfuX4uqUrNabyVNPh6oJWG47WlkFc6U,2513
287
- swarm/templates/rest_mode/components/settings_dialog.html,sha256=cH1pMCnigZWgTBp-Z5X_Bgm7rsZM_3oM7d_20DkM30U,5472
288
- swarm/templates/rest_mode/components/splash_screen.html,sha256=ddtlCNtYER7bbFwpOlu_blKpPn9l60kmwMPvSxkKaeM,326
289
- swarm/templates/rest_mode/components/top_bar.html,sha256=I-J0Bmmcr0c6_KXEEmM6mwTBVjIoTi8vth0fTObHSI8,836
290
- swarm/templates/websocket_partials/final_system_message.html,sha256=hZeOez70ZvYsDrmq965kFzV6wh5dBkKkP2FTiXS0FWo,128
291
- swarm/templates/websocket_partials/system_message.html,sha256=0eBzz9dJBmnwDwnh-X_7wDefSatbS1LepaLhXxN-qI4,171
292
- swarm/templates/websocket_partials/user_message.html,sha256=-TjdT4-FKFVXeYsPglG3VayDYg1A2beE5gV6AQWu-00,149
293
- swarm/utils/ansi_box.py,sha256=VatZxyCR83Z-taNE361vMhrm8rD-8htic5gI96V2HPg,1172
294
- swarm/utils/color_utils.py,sha256=utIfZ6ptGEdpHxIZiZ4gtfo5lLqZKQL5g0F8mEwMhTo,1184
295
- swarm/utils/context_utils.py,sha256=CsoyFALq88pcMYU8Fw1joHrssnjDuisaroEkGiDwX_8,19551
296
- swarm/utils/disable_tracing.py,sha256=IWe60GGs3l_pZA_OLV6qJDcAHOM2tQkMzg0Xj_x5hRE,1400
297
- swarm/utils/general_utils.py,sha256=eMV19-ovBso1R28SpicH7o1HaBdK5H1T9WQI_OMckzk,8569
298
- swarm/utils/log_utils.py,sha256=-qrTMYqxJKHLAgC_r-VeuwQHDUQv3zseVbks-9JQmCE,2523
299
- swarm/utils/logger.py,sha256=g-ynqO3jqKx2rT2keiECsZ13aywFPsFlJAvo-SOeGlw,1679
300
- swarm/utils/logger_setup.py,sha256=2A9bXicV03yAPpgMFJGQt5ePB1tLwdkk7sCo-0OiglU,714
301
- swarm/utils/message_sequence.py,sha256=7Xa7YwGPgojfkrGcl-SbeR_BWwzXGDYNqAxq8F6XhDc,8616
302
- swarm/utils/message_utils.py,sha256=oNTD7pfmnnu_Br24pR2VEX9afIZwFLwg2HJBLXs1blY,4074
303
- swarm/utils/openai_patch.py,sha256=Qogheuyh2_MTR6gO-uKgf3lu2jQc7cS72Vctc7vyXtI,1330
304
- swarm/utils/redact.py,sha256=vtqTztsxyBg-2qHMgAPi1lI5mJgZEb8Fqi1KKFk3bZM,2042
305
- swarm/ux/ansi_box.py,sha256=6mG8MpqrvDXGYU87eKqtky-ib83yt_qk2wiwf9DU5rs,1558
306
- swarm/ux/spinner.py,sha256=UouAin377z8sKfvgrIF8klp_bKbwsSCxd2jgelndn5Y,1613
307
- swarm/views/__init__.py,sha256=AcLk0R7Y69FhIVgJK2hZs8M_gCR-h_5iqUywz89yuHM,1223
308
- swarm/views/api_views.py,sha256=BbDEgI6Ftg-c-mMkE9DvRGZHIZ-WAZSfwqAB7j98WxM,1937
309
- swarm/views/chat_views.py,sha256=6UUtEJKrM2k_wi9A6AfhbbvMYunjzpY22M6hOIXASjA,15695
310
- swarm/views/core_views.py,sha256=UJ3FlrQSyLVLA791lDPRfiVmidpVN2aOeMt0nFZfVjU,5256
311
- swarm/views/message_views.py,sha256=sDUnXyqKXC8WwIIMAlWf00s2_a2T9c75Na5FvYMJwBM,1596
312
- swarm/views/model_views.py,sha256=aAbU4AZmrOTaPeKMWtoKK7FPYHdaN3Zbx55JfKzYTRY,2937
313
- swarm/views/utils.py,sha256=8Usc0g0L0NPegNAyY20tJBNBy-JLwODf4VmxV0yUtpw,3627
314
- swarm/views/web_views.py,sha256=T1CKe-Nyv1C8aDt6QFTGWo_dkH7ojWAvS_QW9mZnZp0,7371
315
- open_swarm-0.1.1745275181.dist-info/METADATA,sha256=cWHyVc3YTjtl7nBr07PrxMvW4MGabSRnOuqBk4lVaf0,39330
316
- open_swarm-0.1.1745275181.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
317
- open_swarm-0.1.1745275181.dist-info/entry_points.txt,sha256=fo28d0_zJrytRsh8QqkdlWQT_9lyAwYUx1WuSTDI3HM,177
318
- open_swarm-0.1.1745275181.dist-info/licenses/LICENSE,sha256=BU9bwRlnOt_JDIb6OT55Q4leLZx9RArDLTFnlDIrBEI,1062
319
- open_swarm-0.1.1745275181.dist-info/RECORD,,
@@ -1,4 +0,0 @@
1
- [console_scripts]
2
- codey = swarm.blueprints.codey.blueprint_codey:main
3
- swarm-api = swarm.extensions.launchers.swarm_api:main
4
- swarm-cli = swarm.extensions.launchers.swarm_cli:app
@@ -1,68 +0,0 @@
1
- # Blueprints Overview
2
-
3
- This directory contains example blueprints for the Open Swarm framework, showcasing agent coordination, external data handling, database operations, and more via parody-themed agent teams. Each blueprint achieves a practical outcome while demonstrating specific framework capabilities. Blueprints are generally ordered by complexity.
4
-
5
- ## Refactored Blueprints (Using `BlueprintBase`)
6
-
7
- These blueprints have been updated to use the `BlueprintBase` class, `openai-agents` library conventions (like `Agent`, `@function_tool`, agent-as-tool delegation), and standardized configuration loading.
8
-
9
- | Blueprint Name | CLI (`uv run ...`) Example Instruction | What it Demonstrates | Key Features | Tags | MCP Servers Used (Examples) |
10
- |---------------------------------|-------------------------------------------------------|--------------------------------------------------------------------------------|---------------------------------------------------------------------------|-----------------------|-----------------------------|
11
- | **EchoCraft** | `--instruction "Repeat this message"` | Simplest blueprint, direct input echo | Basic `BlueprintBase` structure, Agent `process` override | | None |
12
- | **Suggestion** | `--instruction "Topic: AI Ethics"` | Generating structured JSON output | Agent `output_type=TypedDict`, JSON mode | | None |
13
- | **Chatbot** | `--instruction "Tell me a joke"` | Basic single-agent conversation | Standard `Agent` interaction with LLM | | None |
14
- | **BurntNoodles** | `--instruction "Check git status"` | Coordinating Git & testing tasks via function tools & agent delegation | `@function_tool` for CLI commands, Agent-as-tool delegation | | None |
15
- | **RueCode** | `--instruction "Refactor this python code..."` | Multi-agent code generation/refactoring workflow | Agent-as-tool delegation, specialized agent roles (Coordinator, Code, etc.) | software-development | memory |
16
- | **NebulaShellzzar** | `--instruction "List files in /tmp"` | Matrix-themed sysadmin/coding tasks with delegation | Agent-as-tool delegation, `@function_tool` for shell/code analysis | | memory |
17
- | **DigitalButlers** | `--instruction "Search for nearby restaurants"` | Delegating tasks requiring specific MCPs (search, home automation) | Agent-as-tool delegation, MCP usage by specialist agents | | duckduckgo-search, home-assistant |
18
- | **DilbotUniverse (SQLite)** | `--instruction "Start the SDLC"` | Comedic SDLC simulation, instructions loaded from SQLite | Agent-as-tool delegation, SQLite integration for dynamic prompts | | sqlite |
19
- | **Stewie** | `--instruction "Create WP post titled 'Hello'..."` | Coordinating WordPress operations via MCP | Agent-as-tool delegation, specialized agent using specific MCP (WP) | | server-wp-mcp |
20
- | **MissionImprobable (SQLite)** | `--instruction "Use RollinFumble to run 'pwd'"` | Spy-themed ops, instructions from SQLite, multi-level delegation | Agent-as-tool delegation, SQLite integration, MCP usage (fs, shell, mem) | | memory, filesystem, mcp-shell |
21
- | **WhiskeyTangoFoxtrot** | `--instruction "Find free vector DBs"` | Hierarchical agents tracking services using DB & web search | Multi-level agent delegation, SQLite, various search/scrape/doc MCPs | | sqlite, brave-search, mcp-npx-fetch, mcp-doc-forge, filesystem |
22
- | **Zeus** | `--instruction "Design user auth API"` | Replacement for DivineOps/DivineCode/DivineAss, large-scale SW dev coordination (Design, Implement, DB, DevOps, Docs) | Complex delegation, wide range of MCP usage (search, shell, db, fs...) | software-development | memory, filesystem, mcp-shell, sqlite, sequential-thinking, brave-search |
23
- | **WhingeSurf** | `--instruction "Analyze blueprint code"` | Self-analyzing/auto-improving blueprint, meta-agent demo | Code analysis, self-improvement, UX/ANSI output, meta-agent logic | software-development | None |
24
- | **Gaggle** | `--instruction "Write story: cat library"` | Collaborative story writing (Planner, Writer, Editor) | Agent-as-tool delegation, function tools for writing steps | | None |
25
- | **MonkaiMagic** | `--instruction "List AWS S3 buckets"` | Cloud operations (AWS, Fly, Vercel) via direct CLI function tools | `@function_tool` for external CLIs, agent-as-tool delegation | | mcp-shell (for Sandy) |
26
- | **UnapologeticPress (SQLite)** | `--instruction "Write poem: city rain"` | Collaborative poetry writing by distinct "poet" agents, SQLite instructions | Agent-as-tool (all-to-all), SQLite, broad MCP usage | | Various (see blueprint) |
27
- | **Omniplex** | `--instruction "Use filesystem to read README.md"` | Dynamically routes tasks based on MCP server type (npx, uvx, other) | Dynamic agent/tool creation based on available MCPs | | Dynamic (all available) |
28
-
29
- ## WIP / Needs Refactoring
30
-
31
- These blueprints still use older patterns or have known issues (e.g., UVX/NeMo dependencies) and need refactoring to the `BlueprintBase` standard.
32
-
33
- | Blueprint Name | CLI | Description | Status |
34
- |-------------------------|----------|--------------------------------------------------------------|-----------------|
35
- | chucks_angels | chuck | Manages transcripts, compute, Flowise (UVX/NeMo WIP) | Needs Refactor |
36
- | django_chat | djchat | Django-integrated chatbot example | Needs Review |
37
- | flock | flock | (Details TBC) | Needs Refactor |
38
- | messenger | msg | (Details TBC) | Needs Refactor |
39
-
40
- ## Configuration (`swarm_config.json`)
41
-
42
- The framework uses a central `swarm_config.json` file (usually in the project root) to define:
43
-
44
- * **`llm`**: Profiles for different language models (provider, model name, API keys via `${ENV_VAR}`, base URL, etc.).
45
- * **`mcpServers`**: Definitions for starting external MCP servers. Each entry includes:
46
- * `command`: The command to run (e.g., `npx`, `uvx`, `python`, `docker`). Can be a string or list.
47
- * `args`: A list of arguments for the command.
48
- * `env`: A dictionary of environment variables to set for the server process.
49
- * `cwd`: (Optional) Working directory for the server process.
50
- * `description`: (Optional) A human-readable description of the server's function.
51
- * `startup_timeout`: (Optional) Seconds to wait for the server to start and connect (default: 30).
52
- * **`blueprints`**: Optional section for blueprint-specific overrides (e.g., default profile, max calls).
53
- * **`defaults`**: Global default settings (e.g., `default_markdown_cli`).
54
-
55
- ## Environment Variables
56
-
57
- Many blueprints or their required MCP servers depend on environment variables (e.g., API keys). These should ideally be set in a `.env` file in the project root. `BlueprintBase` will automatically load this file. See individual blueprint metadata (`env_vars`) or `swarm_config.json` for potentially required variables. The `BlueprintBase` will warn if variables listed in a blueprint's `metadata["env_vars"]` are not set.
58
-
59
- ## Running Blueprints (Development)
60
-
61
- Use `uv run python <path_to_blueprint.py> --instruction "Your instruction"`
62
-
63
- Common flags:
64
- * `--debug`: Enable detailed DEBUG logging.
65
- * `--quiet`: Suppress most logs, print only final output.
66
- * `--config-path`: Specify a different config file location.
67
- * `--profile`: Use a specific LLM profile from the config.
68
- * `--markdown` / `--no-markdown`: Force markdown rendering on/off.
@@ -1,27 +0,0 @@
1
- {
2
- "blueprints": [
3
- {"name": "echocraft", "status": "working", "notes": "LLM-style response, demo logic confirmed"},
4
- {"name": "rue_code", "status": "working", "notes": "LLM-style response, demo logic confirmed"},
5
- {"name": "suggestion", "status": "working", "notes": "LLM-style response, demo logic confirmed"},
6
- {"name": "mcp_demo", "status": "working", "notes": "LLM-style response, demo logic confirmed"},
7
- {"name": "chatbot", "status": "working", "notes": "LLM-style response, import patch applied"},
8
- {"name": "chucks_angels", "status": "unknown", "notes": "Needs audit"},
9
- {"name": "codey", "status": "unknown", "notes": "Needs audit"},
10
- {"name": "digitalbutlers", "status": "unknown", "notes": "Needs audit"},
11
- {"name": "dilbot", "status": "unknown", "notes": "Needs audit"},
12
- {"name": "divine_code", "status": "unknown", "notes": "Needs audit"},
13
- {"name": "django_chat", "status": "unknown", "notes": "Needs audit"},
14
- {"name": "flock", "status": "unknown", "notes": "Needs audit"},
15
- {"name": "gaggle", "status": "unknown", "notes": "Needs audit"},
16
- {"name": "gatcha", "status": "unknown", "notes": "Needs audit"},
17
- {"name": "messenger", "status": "unknown", "notes": "Needs audit"},
18
- {"name": "mission_improbable", "status": "unknown", "notes": "Needs audit"},
19
- {"name": "monkai_magic", "status": "unknown", "notes": "Needs audit"},
20
- {"name": "nebula_shellz", "status": "unknown", "notes": "Needs audit"},
21
- {"name": "omniplex", "status": "unknown", "notes": "Needs audit"},
22
- {"name": "shell_demo", "status": "unknown", "notes": "Needs audit"},
23
- {"name": "stewie", "status": "unknown", "notes": "Needs audit"},
24
- {"name": "unapologetic_press", "status": "unknown", "notes": "Needs audit"},
25
- {"name": "whiskeytango_foxtrot", "status": "unknown", "notes": "Needs audit"}
26
- ]
27
- }
@@ -1,40 +0,0 @@
1
- # Chatbot Blueprint
2
-
3
- **Chatbot** is an agentic conversational blueprint for Open Swarm, demonstrating agent-based conversation flows, robust fallback for LLM/agent errors, and unified ANSI/emoji UX with spinner feedback.
4
-
5
- ---
6
-
7
- ## What This Blueprint Demonstrates
8
- - **Agent-based conversational orchestration**
9
- - **LLM fallback and error handling** with user-friendly messages
10
- - **Unified ANSI/emoji boxes** for conversation output, including summaries and fallback
11
- - **Custom spinner messages**: 'Generating.', 'Generating..', 'Generating...', 'Running...'
12
- - **Test mode** for robust, deterministic testing
13
-
14
- ## Usage
15
- Run with the CLI:
16
- ```sh
17
- swarm-cli run chatbot --instruction "What is the weather today?"
18
- ```
19
-
20
- ## Test
21
- ```sh
22
- uv run pytest -v tests/blueprints/test_chatbot.py
23
- ```
24
-
25
- ## Compliance
26
- - Agentic:
27
- - UX (ANSI/emoji):
28
- - Spinner:
29
- - Fallback:
30
- - Test Coverage:
31
-
32
- ## Required Env Vars
33
- - `SWARM_TEST_MODE` (optional): Enables test mode for deterministic output.
34
-
35
- ## Extending
36
- - See `blueprint_chatbot.py` for agent logic and UX hooks.
37
- - Extend agent capabilities or UX by modifying the `_run_non_interactive` method.
38
-
39
- ---
40
- _Last updated: 2025-04-21_