flock-core 0.4.0b43__py3-none-any.whl → 0.4.0b44__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.
Potentially problematic release.
This version of flock-core might be problematic. Click here for more details.
- flock/core/api/__init__.py +1 -2
- flock/core/api/endpoints.py +149 -217
- flock/core/api/main.py +134 -653
- flock/core/api/service.py +214 -0
- flock/core/flock.py +192 -134
- flock/webapp/app/api/agent_management.py +135 -164
- flock/webapp/app/api/execution.py +76 -85
- flock/webapp/app/api/flock_management.py +60 -33
- flock/webapp/app/chat.py +233 -0
- flock/webapp/app/config.py +6 -3
- flock/webapp/app/dependencies.py +95 -0
- flock/webapp/app/main.py +320 -906
- flock/webapp/app/services/flock_service.py +183 -161
- flock/webapp/run.py +176 -100
- flock/webapp/static/css/chat.css +227 -0
- flock/webapp/static/css/components.css +167 -0
- flock/webapp/static/css/header.css +39 -0
- flock/webapp/static/css/layout.css +46 -0
- flock/webapp/static/css/sidebar.css +127 -0
- flock/webapp/templates/base.html +6 -1
- flock/webapp/templates/chat.html +60 -0
- flock/webapp/templates/chat_settings.html +20 -0
- flock/webapp/templates/flock_editor.html +1 -1
- flock/webapp/templates/partials/_agent_detail_form.html +4 -4
- flock/webapp/templates/partials/_agent_list.html +2 -2
- flock/webapp/templates/partials/_agent_manager_view.html +3 -4
- flock/webapp/templates/partials/_chat_container.html +9 -0
- flock/webapp/templates/partials/_chat_messages.html +13 -0
- flock/webapp/templates/partials/_chat_settings_form.html +65 -0
- flock/webapp/templates/partials/_execution_form.html +2 -2
- flock/webapp/templates/partials/_execution_view_container.html +1 -1
- flock/webapp/templates/partials/_flock_properties_form.html +2 -2
- flock/webapp/templates/partials/_registry_viewer_content.html +3 -3
- flock/webapp/templates/partials/_sidebar.html +17 -1
- flock/webapp/templates/registry_viewer.html +3 -3
- {flock_core-0.4.0b43.dist-info → flock_core-0.4.0b44.dist-info}/METADATA +1 -1
- {flock_core-0.4.0b43.dist-info → flock_core-0.4.0b44.dist-info}/RECORD +40 -29
- flock/webapp/static/css/custom.css +0 -612
- flock/webapp/templates/partials/_agent_manager_view_old.html +0 -19
- {flock_core-0.4.0b43.dist-info → flock_core-0.4.0b44.dist-info}/WHEEL +0 -0
- {flock_core-0.4.0b43.dist-info → flock_core-0.4.0b44.dist-info}/entry_points.txt +0 -0
- {flock_core-0.4.0b43.dist-info → flock_core-0.4.0b44.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<article class="two-pane-flex-container">
|
|
2
2
|
<section id="execution-left-pane" style="flex: 1; min-width: 300px;">
|
|
3
3
|
{# The Execution Form will be loaded here #}
|
|
4
|
-
<div id="execution-form-wrapper" hx-get="/api/
|
|
4
|
+
<div id="execution-form-wrapper" hx-get="/ui/api/flock/htmx/execution-form-content" {# New endpoint for just the
|
|
5
5
|
form #} hx-trigger="load" hx-swap="innerHTML">
|
|
6
6
|
<p>Loading execution form...</p><progress indeterminate></progress>
|
|
7
7
|
</div>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
</div>
|
|
24
24
|
{% endif %}
|
|
25
25
|
|
|
26
|
-
<form hx-post="/api/
|
|
26
|
+
<form hx-post="/api/flock/htmx/flock-properties" hx-target="#flock-properties-form-article" hx-swap="innerHTML" hx-indicator="#flock-props-loading">
|
|
27
27
|
<label for="flock_name">Flock Name</label>
|
|
28
28
|
<input type="text" id="flock_name" name="flock_name" value="{{ flock.name if flock else '' }}" required>
|
|
29
29
|
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
</div>
|
|
39
39
|
</form>
|
|
40
40
|
<hr>
|
|
41
|
-
<form hx-post="/api/
|
|
41
|
+
<form hx-post="/api/flock/htmx/save-flock" hx-target="#flock-properties-form-article" hx-swap="innerHTML" hx-indicator="#flock-save-loading">
|
|
42
42
|
<label for="save_filename">Save Flock As:</label>
|
|
43
43
|
<input type="text" id="save_filename" name="save_filename"
|
|
44
44
|
value="{{ current_filename if current_filename else (flock.name.replace(' ', '_').lower() + '.flock.yaml' if flock and flock.name else 'my_flock.flock.yaml') }}"
|
|
@@ -7,17 +7,17 @@
|
|
|
7
7
|
<nav>
|
|
8
8
|
<ul role="group">
|
|
9
9
|
<li>
|
|
10
|
-
<button role="button" class="outline" hx-get="/api/registry/htmx/type/table" hx-target="#registry-table-container" hx-indicator="#registry-loading" hx-on:click="setActiveButton(this)">
|
|
10
|
+
<button role="button" class="outline" hx-get="/ui/api/registry/htmx/type/table" hx-target="#registry-table-container" hx-indicator="#registry-loading" hx-on:click="setActiveButton(this)">
|
|
11
11
|
View Types
|
|
12
12
|
</button>
|
|
13
13
|
</li>
|
|
14
14
|
<li>
|
|
15
|
-
<button role="button" class="outline" hx-get="/api/registry/htmx/tool/table" hx-target="#registry-table-container" hx-indicator="#registry-loading" hx-on:click="setActiveButton(this)">
|
|
15
|
+
<button role="button" class="outline" hx-get="/ui/api/registry/htmx/tool/table" hx-target="#registry-table-container" hx-indicator="#registry-loading" hx-on:click="setActiveButton(this)">
|
|
16
16
|
View Tools/Callables
|
|
17
17
|
</button>
|
|
18
18
|
</li>
|
|
19
19
|
<li>
|
|
20
|
-
<button role="button" class="outline" hx-get="/api/registry/htmx/component/table" hx-target="#registry-table-container" hx-indicator="#registry-loading" hx-on:click="setActiveButton(this)">
|
|
20
|
+
<button role="button" class="outline" hx-get="/ui/api/registry/htmx/component/table" hx-target="#registry-table-container" hx-indicator="#registry-loading" hx-on:click="setActiveButton(this)">
|
|
21
21
|
View Components
|
|
22
22
|
</button>
|
|
23
23
|
</li>
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
</button>
|
|
39
39
|
</li>
|
|
40
40
|
<li>
|
|
41
|
-
<button hx-get="/api/
|
|
41
|
+
<button hx-get="/ui/api/flock/htmx/flock-properties-form?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
42
42
|
hx-push-url="/ui/editor/properties?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
43
43
|
class="contrast {% if request.url.path == '/ui/editor/properties' %}active-nav{% endif %}">
|
|
44
44
|
<i class="fas fa-cog"></i> Properties
|
|
@@ -64,6 +64,22 @@
|
|
|
64
64
|
<i class="fas fa-sliders-h"></i> Settings
|
|
65
65
|
</button>
|
|
66
66
|
</li>
|
|
67
|
+
{% if chat_enabled %}
|
|
68
|
+
<li>
|
|
69
|
+
<button hx-get="/ui/htmx/chat-view?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
70
|
+
hx-push-url="/ui/chat?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
71
|
+
class="contrast {% if request.url.path == '/ui/chat' %}active-nav{% endif %}">
|
|
72
|
+
<i class="fas fa-comments"></i> Chat
|
|
73
|
+
</button>
|
|
74
|
+
</li>
|
|
75
|
+
<li>
|
|
76
|
+
<button hx-get="/ui/htmx/chat-settings-form?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
77
|
+
hx-push-url="/ui/chat-settings?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
78
|
+
class="contrast {% if request.url.path == '/ui/chat-settings' %}active-nav{% endif %}">
|
|
79
|
+
<i class="fas fa-sliders-h"></i> Chat Settings
|
|
80
|
+
</button>
|
|
81
|
+
</li>
|
|
82
|
+
{% endif %}
|
|
67
83
|
</ul>
|
|
68
84
|
<div id="content-loading-indicator-main" class="htmx-indicator" style="text-align:center; padding:1rem;"><progress
|
|
69
85
|
indeterminate></progress></div>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<li>
|
|
15
15
|
<button role="button"
|
|
16
16
|
class="outline"
|
|
17
|
-
hx-get="/api/registry/htmx/type/table"
|
|
17
|
+
hx-get="/ui/api/registry/htmx/type/table"
|
|
18
18
|
hx-target="#registry-table-container"
|
|
19
19
|
hx-indicator="#registry-loading"
|
|
20
20
|
hx-on:click="setActiveButton(this)">
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<li>
|
|
25
25
|
<button role="button"
|
|
26
26
|
class="outline"
|
|
27
|
-
hx-get="/api/registry/htmx/tool/table"
|
|
27
|
+
hx-get="/ui/api/registry/htmx/tool/table"
|
|
28
28
|
hx-target="#registry-table-container"
|
|
29
29
|
hx-indicator="#registry-loading"
|
|
30
30
|
hx-on:click="setActiveButton(this)">
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
<li>
|
|
35
35
|
<button role="button"
|
|
36
36
|
class="outline"
|
|
37
|
-
hx-get="/api/registry/htmx/component/table"
|
|
37
|
+
hx-get="/ui/api/registry/htmx/component/table"
|
|
38
38
|
hx-target="#registry-table-container"
|
|
39
39
|
hx-indicator="#registry-loading"
|
|
40
40
|
hx-on:click="setActiveButton(this)">
|
|
@@ -19,20 +19,21 @@ flock/cli/view_results.py,sha256=dOzK0O1FHSIDERnx48y-2Xke9BkOHS7pcOhs64AyIg0,781
|
|
|
19
19
|
flock/cli/yaml_editor.py,sha256=K3N0bh61G1TSDAZDnurqW9e_-hO6CtSQKXQqlDhCjVo,12527
|
|
20
20
|
flock/cli/assets/release_notes.md,sha256=bqnk50jxM3w5uY44Dc7MkdT8XmRREFxrVBAG9XCOSSU,4896
|
|
21
21
|
flock/core/__init__.py,sha256=p7lmQULRu9ejIAELfanZiyMhW0CougIPvyFHW2nqBFQ,847
|
|
22
|
-
flock/core/flock.py,sha256=
|
|
22
|
+
flock/core/flock.py,sha256=tr7O84Ykgnu7ZXQ54bOdnjEsZw-a7ue-pDp5UNyPkn4,33837
|
|
23
23
|
flock/core/flock_agent.py,sha256=JTqaGD_OnZSd3bVU989WMsK1rAT6UGn-JYrPxFV15EE,39576
|
|
24
24
|
flock/core/flock_evaluator.py,sha256=dOXZeDOGZcAmJ9ahqq_2bdGUU1VOXY4skmwTVpAjiVw,1685
|
|
25
25
|
flock/core/flock_factory.py,sha256=_4zsjkEmJnCR7IvJ3SUHnDbX6c7Tt3E4P5ohxwKvE6w,3173
|
|
26
26
|
flock/core/flock_module.py,sha256=UCK6TFe4viXs596zeng0GD3gln4ZNGu_gCWkXIIMREg,3090
|
|
27
27
|
flock/core/flock_registry.py,sha256=aC-RK0js676DQkjXmNuYHuD5t6GmFhpQoCKaO3i7xFg,24920
|
|
28
28
|
flock/core/flock_router.py,sha256=1OAXDsdaIIFApEfo6SRfFEDoTuGt3Si7n2MXiySEfis,2644
|
|
29
|
-
flock/core/api/__init__.py,sha256=
|
|
29
|
+
flock/core/api/__init__.py,sha256=KdzUwBOwhxqqy7lAMLpysKL5GvpIiwOy6CxXELZVWaY,186
|
|
30
30
|
flock/core/api/custom_endpoint.py,sha256=Mbk2owdcXVATaT5FtEWXFzllgursozcmqP8ouG5btc0,1305
|
|
31
|
-
flock/core/api/endpoints.py,sha256=
|
|
32
|
-
flock/core/api/main.py,sha256=
|
|
31
|
+
flock/core/api/endpoints.py,sha256=gxWA38viaGCI_Vq2YNuF0Rx_TVfa1ODcvXJu6Mjtdjg,12178
|
|
32
|
+
flock/core/api/main.py,sha256=MMKTWRLZQXcdoeiN8NOX7s5_vBrzH5reE-W_5xJn8fM,8716
|
|
33
33
|
flock/core/api/models.py,sha256=seqKuzhbN37nCNO7KrcJjI2mWuwiOKCLFcJcTPvTtag,3422
|
|
34
34
|
flock/core/api/run_store.py,sha256=bFodJvVyWogzoezVy0cOoWWU3MdEBXf_6_5sBqCRWps,9227
|
|
35
35
|
flock/core/api/runner.py,sha256=3izg6cVk1RoR1hDIDwMAO1gi3lnLcp8DPv7AnJBYx6A,1443
|
|
36
|
+
flock/core/api/service.py,sha256=HRHs4xt-bGeSm5hdN92H1vWQtLzqZalhZxIh6iwww8Y,11381
|
|
36
37
|
flock/core/api/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
38
|
flock/core/api/ui/routes.py,sha256=nS-wWO94mshE5ozWfOQZ-HOvtes_1qxDVcqpMZtU5JQ,8885
|
|
38
39
|
flock/core/api/ui/utils.py,sha256=V7PqYHNK519hFJ8jvvwf7bGpbBXCRz_HQG3BDCCqlNA,4802
|
|
@@ -440,31 +441,41 @@ flock/themes/zenburned.toml,sha256=UEmquBbcAO3Zj652XKUwCsNoC2iQSlIh-q5c6DH-7Kc,1
|
|
|
440
441
|
flock/themes/zenwritten-dark.toml,sha256=To5l6520_3UqAGiEumpzGWsHhXxqu9ThrMildXKgIO0,1669
|
|
441
442
|
flock/themes/zenwritten-light.toml,sha256=G1iEheCPfBNsMTGaVpEVpDzYBHA_T-MV27rolUYolmE,1666
|
|
442
443
|
flock/webapp/__init__.py,sha256=YtRbbyciN3Z2oMB9fdXZuvM3e49R8m2mY5qHLDoapRA,37
|
|
443
|
-
flock/webapp/run.py,sha256=
|
|
444
|
+
flock/webapp/run.py,sha256=Ekg-mQSl7RUDJAEDTBJMIlLyvhWqWPMjg8hPqmgFREE,8945
|
|
444
445
|
flock/webapp/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
-
flock/webapp/app/
|
|
446
|
-
flock/webapp/app/
|
|
446
|
+
flock/webapp/app/chat.py,sha256=mFc_w4J3lN5dRtd52Jr1ezt-TTS5t557Wy1KdoRY4kU,9788
|
|
447
|
+
flock/webapp/app/config.py,sha256=RHwEPi8sXWw-Uf_0b_DGcnM8ZYYocbImccJ_ms7OeFQ,4208
|
|
448
|
+
flock/webapp/app/dependencies.py,sha256=8GSf2ftiEM4xD5GbfFhoiACzUmyGaWwtM6klzyP_Qw4,4492
|
|
449
|
+
flock/webapp/app/main.py,sha256=9yDyHn5SeczpLiSfthg15BxFM2mQ3R-zF-9AahBoEdw,28569
|
|
447
450
|
flock/webapp/app/models_ui.py,sha256=vrEBLbhEp6FziAgBSFOLT1M7ckwadsTdT7qus5_NduE,329
|
|
448
451
|
flock/webapp/app/theme_mapper.py,sha256=QzWwLWpED78oYp3FjZ9zxv1KxCyj43m8MZ0fhfzz37w,34302
|
|
449
452
|
flock/webapp/app/utils.py,sha256=RF8DMKKAj1XPmm4txUdo2OdswI1ATQ7cqUm6G9JFDzA,2942
|
|
450
453
|
flock/webapp/app/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
451
|
-
flock/webapp/app/api/agent_management.py,sha256=
|
|
452
|
-
flock/webapp/app/api/execution.py,sha256=
|
|
453
|
-
flock/webapp/app/api/flock_management.py,sha256=
|
|
454
|
+
flock/webapp/app/api/agent_management.py,sha256=5xqO94QjjAYvxImyjKV9EGUQOvo4n3eqs7pGwGPSQJ4,10394
|
|
455
|
+
flock/webapp/app/api/execution.py,sha256=Gv0FGwtdXNdf28qMtm-qcORMfujYfF5L46p6qCk57L0,6876
|
|
456
|
+
flock/webapp/app/api/flock_management.py,sha256=1o-6-36kTnUjI3am_BqLpdrcz0aqFXrxE-hQHIFcCsg,4869
|
|
454
457
|
flock/webapp/app/api/registry_viewer.py,sha256=IoInxJiRR0yFlecG_l2_eRc6l35RQQyEDMG9BcBkipY,1020
|
|
455
458
|
flock/webapp/app/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
456
|
-
flock/webapp/app/services/flock_service.py,sha256=
|
|
459
|
+
flock/webapp/app/services/flock_service.py,sha256=qceWNpGet-5VT95q5ZMg2ETFryC2iitfClVuxlE3wCc,13578
|
|
457
460
|
flock/webapp/app/templates/theme_mapper.html,sha256=z8ZY7nmk6PiUGzD_-px7wSXcEnuBM121rMq6u-2oaCo,14249
|
|
458
|
-
flock/webapp/static/css/
|
|
459
|
-
flock/webapp/
|
|
460
|
-
flock/webapp/
|
|
461
|
+
flock/webapp/static/css/chat.css,sha256=-31slD1wZ4j5ZND7dsv8dkE3xTqnMvoP3IajT5dw8bE,5546
|
|
462
|
+
flock/webapp/static/css/components.css,sha256=WnicEHy3ptPzggKmyG9_oZp3X30EMJBUW3KEXaiUCUE,6018
|
|
463
|
+
flock/webapp/static/css/header.css,sha256=E9MgItZCk34S65NfMJ001ZsRz4oyFSJex8KvINMtCn0,1043
|
|
464
|
+
flock/webapp/static/css/layout.css,sha256=ocDd7dmezdQzNAQDuQSv1xZ8-pcbNgYLUYJB1SKcfvw,1526
|
|
465
|
+
flock/webapp/static/css/sidebar.css,sha256=gCwLTAiIvmHGksm0rHDpMsOGCDKBMxqx_aEc8ZQcQF8,3066
|
|
466
|
+
flock/webapp/templates/base.html,sha256=Qck-G793uQM52xn1D6w4scOVRn34R6vZI7JeJHbV4Vw,4929
|
|
467
|
+
flock/webapp/templates/chat.html,sha256=1EQXvvZ_KV0JsJkenWZV1bBCEDcN9zFq5EKBysuNxJM,2343
|
|
468
|
+
flock/webapp/templates/chat_settings.html,sha256=nYz6ihYAUA9zN-Jru565QNl8_eJdoLMWC2LdZJtZ-20,862
|
|
469
|
+
flock/webapp/templates/flock_editor.html,sha256=ysDExf9zMj4SMsSXZUpCtG9EjIv8VJ5xL4IJQOMlb7o,542
|
|
461
470
|
flock/webapp/templates/index.html,sha256=eK7s5Cnh63unqPwq9NGZGEKyvYwkhudfmSn9su3Ctyg,412
|
|
462
|
-
flock/webapp/templates/registry_viewer.html,sha256=
|
|
463
|
-
flock/webapp/templates/partials/_agent_detail_form.html,sha256=
|
|
464
|
-
flock/webapp/templates/partials/_agent_list.html,sha256=
|
|
465
|
-
flock/webapp/templates/partials/_agent_manager_view.html,sha256=
|
|
466
|
-
flock/webapp/templates/partials/_agent_manager_view_old.html,sha256=hJRNvVpVOyxqyAuZ7BBT6aeVwOWPHvvnRgJ5Y-Myhuc,1005
|
|
471
|
+
flock/webapp/templates/registry_viewer.html,sha256=suAiWDvBxJ8SsF9MhheuN6MMQUZuIhTlurmbFOcYJfI,3235
|
|
472
|
+
flock/webapp/templates/partials/_agent_detail_form.html,sha256=wF1e4g_Jw1LZGAP8-_jgVJWqbseM1q8raB0eTCqQ-5c,5940
|
|
473
|
+
flock/webapp/templates/partials/_agent_list.html,sha256=9NEakjaGH8JwUlLWTBMgT2uxGMh_uwhOvNukC4i26wo,1019
|
|
474
|
+
flock/webapp/templates/partials/_agent_manager_view.html,sha256=oUJ-t2Mk3o4xjQ_HtHz0glgaHM8eqZpPB4i24ToJiJ8,2565
|
|
467
475
|
flock/webapp/templates/partials/_agent_tools_checklist.html,sha256=T60fb7OrJYHUw0hJLC_otskgvbH9dZXbv5klgWBkSWk,686
|
|
476
|
+
flock/webapp/templates/partials/_chat_container.html,sha256=wNX_qTSJYy27k0KAZNksOt_73vTG4ki5n3ATZ2N9rDQ,484
|
|
477
|
+
flock/webapp/templates/partials/_chat_messages.html,sha256=RuMUglxdTjYyTs_P9dCwfX_5dEVO3iH6r8V203kdTpU,593
|
|
478
|
+
flock/webapp/templates/partials/_chat_settings_form.html,sha256=-yokUC05sAjHbLSHSYhTzhdJA5JDr0SRemBYcAQ2qwc,3263
|
|
468
479
|
flock/webapp/templates/partials/_create_flock_form.html,sha256=nQVbuTWqOQ59q5zyGXkuBixikvCkaZIPVW8CRF6wCm0,2806
|
|
469
480
|
flock/webapp/templates/partials/_dashboard_flock_detail.html,sha256=c7srF0nL8ETmP0ATsIxF8MMHMtHVXJqWVzdrnu2i-1Q,1012
|
|
470
481
|
flock/webapp/templates/partials/_dashboard_flock_file_list.html,sha256=hevhRzK94tHJC6j8_iLc0ORCOb0wEYHCpRWecXB-5io,795
|
|
@@ -472,20 +483,20 @@ flock/webapp/templates/partials/_dashboard_flock_properties_preview.html,sha256=
|
|
|
472
483
|
flock/webapp/templates/partials/_dashboard_upload_flock_form.html,sha256=lQxR75yLgeRdm1vSkpGGgkhhfQ5JQvu14jx1y-QZUAM,956
|
|
473
484
|
flock/webapp/templates/partials/_dynamic_input_form_content.html,sha256=WYr2M7Mb5vKITFhIVXXEHppRx9IjGew91yLo1_I9kkI,1230
|
|
474
485
|
flock/webapp/templates/partials/_env_vars_table.html,sha256=6TFUWvkYwzwodqXZ0yJhH_NU6L4tz7V09mDamSfDI8c,1082
|
|
475
|
-
flock/webapp/templates/partials/_execution_form.html,sha256=
|
|
476
|
-
flock/webapp/templates/partials/_execution_view_container.html,sha256=
|
|
486
|
+
flock/webapp/templates/partials/_execution_form.html,sha256=AunRZD4ZYJCgF371I9jlJGeHF7smu7WnyLZfTi5UCi0,2302
|
|
487
|
+
flock/webapp/templates/partials/_execution_view_container.html,sha256=XuphmZKYf2IYSeA9XHqtnwAntBylrFASDXVlLBJUeDk,1031
|
|
477
488
|
flock/webapp/templates/partials/_flock_file_list.html,sha256=FjIxAqB0OxA0mQ8f2jBX1_M_AM5ea7gCA8PEjPpiZVc,1209
|
|
478
|
-
flock/webapp/templates/partials/_flock_properties_form.html,sha256=
|
|
489
|
+
flock/webapp/templates/partials/_flock_properties_form.html,sha256=0xNK_h5LrZrGCFyKfOLsvEaIpK2LlDfCte8bl0-AwdI,2885
|
|
479
490
|
flock/webapp/templates/partials/_flock_upload_form.html,sha256=h2dIPwPeTg5dv_ubrZiwBXReF0NjzJ6eKSwwz7mbQQs,960
|
|
480
491
|
flock/webapp/templates/partials/_header_flock_status.html,sha256=reNB4Prsu9lObz5tFhGk3AMe4bNw92gDJZUKABVaVBM,158
|
|
481
492
|
flock/webapp/templates/partials/_load_manager_view.html,sha256=2u4lufQMEpUlQOThUzo1zrE3AulDQ-aErruS6t91W44,2909
|
|
482
493
|
flock/webapp/templates/partials/_registry_table.html,sha256=z4EW5G3DTknymBeSlpL2PZLcb2143P35upMnmHFfeJs,715
|
|
483
|
-
flock/webapp/templates/partials/_registry_viewer_content.html,sha256=
|
|
494
|
+
flock/webapp/templates/partials/_registry_viewer_content.html,sha256=iQyxaLUzz1IcZouRLcMg73k-xcOZvOHVPfpuU7uXgYo,1891
|
|
484
495
|
flock/webapp/templates/partials/_results_display.html,sha256=vuAbIdnG_7jzeHxeeoRvPqStD_7CJwXnyhvry_kMfLQ,1625
|
|
485
496
|
flock/webapp/templates/partials/_settings_env_content.html,sha256=Q1Xr6wLHLlqiduqNk6PyF1B4juP-vvqLOLZyiHHNRLc,572
|
|
486
497
|
flock/webapp/templates/partials/_settings_theme_content.html,sha256=-y5vGRKBZf3Cp5DDE1M4Qw-yunuMtCG54Sa7r60XfJE,807
|
|
487
498
|
flock/webapp/templates/partials/_settings_view.html,sha256=7Uy2EfAgVJ2Kac5S6nkeaIEr2tSagVyR5CBbf07fbSQ,1349
|
|
488
|
-
flock/webapp/templates/partials/_sidebar.html,sha256=
|
|
499
|
+
flock/webapp/templates/partials/_sidebar.html,sha256=uA-SZKfVpxImT8Acpw2hhpJbOk1BlaLeSzRjleYfuSE,4450
|
|
489
500
|
flock/webapp/templates/partials/_structured_data_view.html,sha256=IsmGbm2rKHZr6qx0a_n6QGs89Rq4xNFhymrZVI6OShc,2063
|
|
490
501
|
flock/webapp/templates/partials/_theme_preview.html,sha256=81vP5z8958LjhGWGwjVAVw3zW0uvYwfcXlU30i9exmo,867
|
|
491
502
|
flock/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -495,8 +506,8 @@ flock/workflow/agent_execution_activity.py,sha256=Gy6FtuVAjf0NiUXmC3syS2eJpNQF4R
|
|
|
495
506
|
flock/workflow/flock_workflow.py,sha256=iSUF_soFvWar0ffpkzE4irkDZRx0p4HnwmEBi_Ne2sY,9666
|
|
496
507
|
flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
|
|
497
508
|
flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
|
|
498
|
-
flock_core-0.4.
|
|
499
|
-
flock_core-0.4.
|
|
500
|
-
flock_core-0.4.
|
|
501
|
-
flock_core-0.4.
|
|
502
|
-
flock_core-0.4.
|
|
509
|
+
flock_core-0.4.0b44.dist-info/METADATA,sha256=pwXwMx_hHg9Wnr0RlhRYVYUnW-BSUFh1QKYUNlXfG8U,17125
|
|
510
|
+
flock_core-0.4.0b44.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
511
|
+
flock_core-0.4.0b44.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
|
|
512
|
+
flock_core-0.4.0b44.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
513
|
+
flock_core-0.4.0b44.dist-info/RECORD,,
|