flock-core 0.4.510__py3-none-any.whl → 0.4.512__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/config/flock_agent_config.py +11 -0
- flock/core/config/scheduled_agent_config.py +40 -0
- flock/core/flock_agent.py +6 -0
- flock/core/flock_factory.py +44 -0
- flock/core/flock_scheduler.py +166 -0
- flock/webapp/app/main.py +66 -11
- flock/webapp/app/services/sharing_store.py +173 -0
- flock/webapp/run.py +3 -1
- flock/webapp/static/css/two-pane.css +48 -0
- flock/webapp/templates/base.html +10 -10
- flock/webapp/templates/chat.html +7 -10
- flock/webapp/templates/chat_settings.html +3 -4
- flock/webapp/templates/flock_editor.html +1 -2
- flock/webapp/templates/index.html +1 -1
- flock/webapp/templates/partials/_agent_detail_form.html +7 -13
- flock/webapp/templates/partials/_agent_list.html +1 -2
- flock/webapp/templates/partials/_agent_manager_view.html +2 -3
- flock/webapp/templates/partials/_chat_container.html +2 -2
- flock/webapp/templates/partials/_chat_settings_form.html +6 -8
- flock/webapp/templates/partials/_create_flock_form.html +2 -4
- flock/webapp/templates/partials/_dashboard_flock_detail.html +2 -3
- flock/webapp/templates/partials/_dashboard_flock_file_list.html +1 -2
- flock/webapp/templates/partials/_dashboard_flock_properties_preview.html +2 -3
- flock/webapp/templates/partials/_dashboard_upload_flock_form.html +1 -2
- flock/webapp/templates/partials/_env_vars_table.html +2 -4
- flock/webapp/templates/partials/_execution_form.html +12 -10
- flock/webapp/templates/partials/_execution_view_container.html +14 -6
- flock/webapp/templates/partials/_flock_file_list.html +2 -3
- flock/webapp/templates/partials/_flock_properties_form.html +2 -2
- flock/webapp/templates/partials/_flock_upload_form.html +1 -2
- flock/webapp/templates/partials/_load_manager_view.html +2 -3
- flock/webapp/templates/partials/_registry_viewer_content.html +4 -5
- flock/webapp/templates/partials/_settings_env_content.html +2 -3
- flock/webapp/templates/partials/_settings_theme_content.html +2 -2
- flock/webapp/templates/partials/_settings_view.html +2 -2
- flock/webapp/templates/partials/_sidebar.html +27 -39
- flock/webapp/templates/registry_viewer.html +7 -10
- flock/webapp/templates/shared_run_page.html +7 -10
- {flock_core-0.4.510.dist-info → flock_core-0.4.512.dist-info}/METADATA +3 -1
- {flock_core-0.4.510.dist-info → flock_core-0.4.512.dist-info}/RECORD +43 -39
- {flock_core-0.4.510.dist-info → flock_core-0.4.512.dist-info}/WHEEL +0 -0
- {flock_core-0.4.510.dist-info → flock_core-0.4.512.dist-info}/entry_points.txt +0 -0
- {flock_core-0.4.510.dist-info → flock_core-0.4.512.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,17 +2,15 @@
|
|
|
2
2
|
{% if ui_mode == 'standalone' %}
|
|
3
3
|
<h5>Manage Flocks</h5>
|
|
4
4
|
<ul>
|
|
5
|
-
<li>
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class="contrast {% if request.url.path == '/' or request.url.path == '/ui/htmx/load-flock-view' %}active-nav{% endif %}">
|
|
5
|
+
<li> <button hx-get="{{ url_for('htmx_get_load_flock_view') }}?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
6
|
+
hx-push-url="{{ url_for('page_dashboard') }}?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
7
|
+
class="contrast {% if request.url.path == url_for('page_dashboard') or request.url.path == url_for('htmx_get_load_flock_view') %}active-nav{% endif %}">
|
|
9
8
|
<i class="fas fa-folder-open"></i> Load Flock
|
|
10
9
|
</button>
|
|
11
10
|
</li>
|
|
12
|
-
<!-- <li>
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class="contrast {% if request.url.path == '/ui/create' %}active-nav{% endif %}">
|
|
11
|
+
<!-- <li> <button hx-get="{{ url_for('htmx_get_create_flock_form') }}?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
12
|
+
hx-push-url="{{ url_for('page_create') }}?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
13
|
+
class="contrast {% if request.url.path == url_for('page_create') %}active-nav{% endif %}">>
|
|
16
14
|
<i class="fas fa-plus-circle"></i> Create New Flock
|
|
17
15
|
</button>
|
|
18
16
|
</li> -->
|
|
@@ -23,24 +21,20 @@
|
|
|
23
21
|
<hr>
|
|
24
22
|
<h5>Current Flock</h5>
|
|
25
23
|
<ul>
|
|
26
|
-
<li>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
class="contrast {% if request.url.path == '/ui/editor/execute' %}active-nav{% endif %}">
|
|
24
|
+
<li> <button hx-get="{{ url_for('htmx_get_execution_view_container') }}?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
25
|
+
hx-push-url="{{ url_for('page_editor_section', section='execute') }}?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
26
|
+
class="contrast {% if request.url.path == url_for('page_editor_section', section='execute') %}active-nav{% endif %}">
|
|
30
27
|
<i class="fas fa-play-circle"></i> Execute Flock
|
|
31
28
|
</button>
|
|
32
29
|
</li>
|
|
33
|
-
<li>
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
class="contrast{% if request.url.path == '/ui/editor/agents' %}active-nav{% endif %}">
|
|
30
|
+
<li> <button hx-get="{{ url_for('htmx_get_agent_manager_view') }}?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
31
|
+
hx-push-url="{{ url_for('page_editor_section', section='agents') }}?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
32
|
+
class="contrast{% if request.url.path == url_for('page_editor_section', section='agents') %}active-nav{% endif %}">
|
|
37
33
|
<i class="fas fa-robot"></i> Agents ({{ current_flock.agents|length }})
|
|
38
34
|
</button>
|
|
39
|
-
</li>
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
hx-push-url="/ui/editor/properties?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
43
|
-
class="contrast {% if request.url.path == '/ui/editor/properties' %}active-nav{% endif %}">
|
|
35
|
+
</li> <li> <button hx-get="{{ url_for('htmx_get_flock_properties_form') }}?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
36
|
+
hx-push-url="{{ url_for('page_editor_section', section='properties') }}?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
37
|
+
class="contrast {% if request.url.path == url_for('page_editor_section', section='properties') %}active-nav{% endif %}">
|
|
44
38
|
<i class="fas fa-cog"></i> Properties
|
|
45
39
|
</button>
|
|
46
40
|
</li>
|
|
@@ -50,32 +44,26 @@
|
|
|
50
44
|
<hr>
|
|
51
45
|
<h5>Tools</h5>
|
|
52
46
|
<ul>
|
|
53
|
-
<li>
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
class="contrast {% if request.url.path == '/ui/registry' %}active-nav{% endif %}">
|
|
47
|
+
<li> <button hx-get="{{ url_for('htmx_get_registry_viewer') }}?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
48
|
+
hx-push-url="{{ url_for('page_registry') }}?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
49
|
+
class="contrast {% if request.url.path == url_for('page_registry') %}active-nav{% endif %}">
|
|
57
50
|
<i class="fas fa-book"></i> View Registry
|
|
58
51
|
</button>
|
|
59
52
|
</li>
|
|
60
|
-
<li>
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
class="contrast {% if request.url.path == '/ui/settings' %}active-nav{% endif %}">
|
|
53
|
+
<li> <button hx-get="{{ url_for('htmx_get_settings_view') }}?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
54
|
+
hx-push-url="{{ url_for('page_settings') }}?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
55
|
+
class="contrast {% if request.url.path == url_for('page_settings') %}active-nav{% endif %}">
|
|
64
56
|
<i class="fas fa-sliders-h"></i> Settings
|
|
65
57
|
</button>
|
|
66
58
|
</li>
|
|
67
|
-
{% if chat_enabled %}
|
|
68
|
-
|
|
69
|
-
|
|
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 %}">
|
|
59
|
+
{% if chat_enabled %} <li> <button hx-get="{{ url_for('htmx_get_chat_view') }}?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
60
|
+
hx-push-url="{{ url_for('page_chat') }}?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
61
|
+
class="contrast {% if request.url.path == url_for('page_chat') %}active-nav{% endif %}">
|
|
72
62
|
<i class="fas fa-comments"></i> Chat
|
|
73
63
|
</button>
|
|
74
|
-
</li>
|
|
75
|
-
|
|
76
|
-
|
|
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 %}">
|
|
64
|
+
</li> <li> <button hx-get="{{ url_for('chat_settings_form') }}?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
65
|
+
hx-push-url="{{ url_for('chat_settings_standalone') }}?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
66
|
+
class="contrast {% if request.url.path == url_for('chat_settings_standalone') %}active-nav{% endif %}">
|
|
79
67
|
<i class="fas fa-sliders-h"></i> Chat Settings
|
|
80
68
|
</button>
|
|
81
69
|
</li>
|
|
@@ -13,9 +13,8 @@
|
|
|
13
13
|
<ul role="group">
|
|
14
14
|
<li>
|
|
15
15
|
<button role="button"
|
|
16
|
-
class="outline"
|
|
17
|
-
hx-
|
|
18
|
-
hx-target="#registry-table-container"
|
|
16
|
+
class="outline" hx-get="{{ url_for('htmx_get_registry_table', item_type='type') }}"
|
|
17
|
+
hx-target="#registry-table-container"
|
|
19
18
|
hx-indicator="#registry-loading"
|
|
20
19
|
hx-on:click="setActiveButton(this)">
|
|
21
20
|
View Types
|
|
@@ -23,9 +22,8 @@
|
|
|
23
22
|
</li>
|
|
24
23
|
<li>
|
|
25
24
|
<button role="button"
|
|
26
|
-
class="outline"
|
|
27
|
-
hx-
|
|
28
|
-
hx-target="#registry-table-container"
|
|
25
|
+
class="outline" hx-get="{{ url_for('htmx_get_registry_table', item_type='tool') }}"
|
|
26
|
+
hx-target="#registry-table-container"
|
|
29
27
|
hx-indicator="#registry-loading"
|
|
30
28
|
hx-on:click="setActiveButton(this)">
|
|
31
29
|
View Tools/Callables
|
|
@@ -33,9 +31,8 @@
|
|
|
33
31
|
</li>
|
|
34
32
|
<li>
|
|
35
33
|
<button role="button"
|
|
36
|
-
class="outline"
|
|
37
|
-
hx-
|
|
38
|
-
hx-target="#registry-table-container"
|
|
34
|
+
class="outline" hx-get="{{ url_for('htmx_get_registry_table', item_type='component') }}"
|
|
35
|
+
hx-target="#registry-table-container"
|
|
39
36
|
hx-indicator="#registry-loading"
|
|
40
37
|
hx-on:click="setActiveButton(this)">
|
|
41
38
|
View Components
|
|
@@ -53,7 +50,7 @@
|
|
|
53
50
|
</div>
|
|
54
51
|
|
|
55
52
|
<footer style="margin-top: 2rem;">
|
|
56
|
-
<a href="
|
|
53
|
+
<a href="{{ url_for('page_editor_section', section='execute') }}" role="button" class="secondary contrast">Back to Editor</a>
|
|
57
54
|
</footer>
|
|
58
55
|
</article>
|
|
59
56
|
|
|
@@ -6,12 +6,11 @@
|
|
|
6
6
|
<title>Flock Shared Agent: {{ selected_agent_name }}</title>
|
|
7
7
|
|
|
8
8
|
{# Link to Pico.css #}
|
|
9
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" />
|
|
10
|
-
<link rel="stylesheet" href="
|
|
11
|
-
<link rel="stylesheet" href="
|
|
12
|
-
<link rel="stylesheet" href="
|
|
13
|
-
<link rel="stylesheet" href="
|
|
14
|
-
<link rel="stylesheet" href="/static/css/chat.css">
|
|
9
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" /> <link rel="stylesheet" href="{{ url_for('static', path='css/layout.css') }}">
|
|
10
|
+
<link rel="stylesheet" href="{{ url_for('static', path='css/header.css') }}">
|
|
11
|
+
<link rel="stylesheet" href="{{ url_for('static', path='css/sidebar.css') }}">
|
|
12
|
+
<link rel="stylesheet" href="{{ url_for('static', path='css/components.css') }}">
|
|
13
|
+
<link rel="stylesheet" href="{{ url_for('static', path='css/chat.css') }}">
|
|
15
14
|
<!-- Font Awesome for icons -->
|
|
16
15
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
17
16
|
<!-- Prism.js CSS for syntax highlighting (okaidia theme) -->
|
|
@@ -49,10 +48,8 @@
|
|
|
49
48
|
{% if selected_agent_name and not error_message %} {# Only show form if no fatal error and agent is selected #}
|
|
50
49
|
<div style="display: flex; gap: var(--pico-spacing, 1rem);">
|
|
51
50
|
<div style="flex: 1;">
|
|
52
|
-
<article id="execution-form-content">
|
|
53
|
-
|
|
54
|
-
hx-post="/ui/api/flock/htmx/run-shared"
|
|
55
|
-
hx-target="#results-display"
|
|
51
|
+
<article id="execution-form-content"> <form id="agent-run-form-shared" hx-post="{{ url_for('htmx_run_shared_flock') }}"
|
|
52
|
+
hx-target="#results-display"
|
|
56
53
|
hx-swap="innerHTML"
|
|
57
54
|
hx-indicator="#run-loading-indicator">
|
|
58
55
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flock-core
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.512
|
|
4
4
|
Summary: Declarative LLM Orchestration at Scale
|
|
5
5
|
Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -9,7 +9,9 @@ Classifier: Operating System :: OS Independent
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Requires-Python: >=3.10
|
|
11
11
|
Requires-Dist: aiosqlite>=0.21.0
|
|
12
|
+
Requires-Dist: azure-data-tables>=12.7.0
|
|
12
13
|
Requires-Dist: cloudpickle>=3.1.1
|
|
14
|
+
Requires-Dist: croniter>=6.0.0
|
|
13
15
|
Requires-Dist: devtools>=0.12.2
|
|
14
16
|
Requires-Dist: dspy==2.6.23
|
|
15
17
|
Requires-Dist: fastapi>=0.115.8
|
|
@@ -27,12 +27,13 @@ flock/cli/yaml_editor.py,sha256=K3N0bh61G1TSDAZDnurqW9e_-hO6CtSQKXQqlDhCjVo,1252
|
|
|
27
27
|
flock/cli/assets/release_notes.md,sha256=bqnk50jxM3w5uY44Dc7MkdT8XmRREFxrVBAG9XCOSSU,4896
|
|
28
28
|
flock/core/__init__.py,sha256=juwyNr3QqKXUS5-E3hlMYRhgqHgQBqgtP12OF3tUCAI,1249
|
|
29
29
|
flock/core/flock.py,sha256=iR4i0_z0w2ns_iHbP7FqN--7wlsPIWch1H-BVecPs_I,38205
|
|
30
|
-
flock/core/flock_agent.py,sha256=
|
|
30
|
+
flock/core/flock_agent.py,sha256=9CNF1cWY6yASM1mAoJ73y9P1g0O5B5LBHJydXTe-fac,48830
|
|
31
31
|
flock/core/flock_evaluator.py,sha256=TPy6u6XX3cqkY1r9NW1w2lTwCMNW7pxhFYKLefnEbXg,1820
|
|
32
|
-
flock/core/flock_factory.py,sha256=
|
|
32
|
+
flock/core/flock_factory.py,sha256=P07VsJgSf9YQEwokW_3WqXJmsno8ubvTSBv8S1s6nVI,15902
|
|
33
33
|
flock/core/flock_module.py,sha256=ObILimpVaPnaaqYvcBYJJ20lQzfrjgTdADplaNRjHU0,7448
|
|
34
34
|
flock/core/flock_registry.py,sha256=KzdFfc3QC-Dk42G24hdf6Prp3HvGj9ymXR3TTBe-T-A,27161
|
|
35
35
|
flock/core/flock_router.py,sha256=1OAXDsdaIIFApEfo6SRfFEDoTuGt3Si7n2MXiySEfis,2644
|
|
36
|
+
flock/core/flock_scheduler.py,sha256=fu99UXMhs8qkbTLi1q1h4-mR4TxmsyA156EGXuXZ3-Q,8772
|
|
36
37
|
flock/core/flock_server_manager.py,sha256=YU6HOcg_IBXtnkbTIBNBONh3MZkvIjdKWHaiSOo16sE,4555
|
|
37
38
|
flock/core/api/__init__.py,sha256=KdzUwBOwhxqqy7lAMLpysKL5GvpIiwOy6CxXELZVWaY,186
|
|
38
39
|
flock/core/api/custom_endpoint.py,sha256=Mbk2owdcXVATaT5FtEWXFzllgursozcmqP8ouG5btc0,1305
|
|
@@ -42,6 +43,8 @@ flock/core/api/models.py,sha256=seqKuzhbN37nCNO7KrcJjI2mWuwiOKCLFcJcTPvTtag,3422
|
|
|
42
43
|
flock/core/api/run_store.py,sha256=bFodJvVyWogzoezVy0cOoWWU3MdEBXf_6_5sBqCRWps,9227
|
|
43
44
|
flock/core/api/runner.py,sha256=3izg6cVk1RoR1hDIDwMAO1gi3lnLcp8DPv7AnJBYx6A,1443
|
|
44
45
|
flock/core/api/service.py,sha256=HRHs4xt-bGeSm5hdN92H1vWQtLzqZalhZxIh6iwww8Y,11381
|
|
46
|
+
flock/core/config/flock_agent_config.py,sha256=XP96-Ceh4CfVsHFHXT-YxyRnX_URvabz1xlwdHkD8go,282
|
|
47
|
+
flock/core/config/scheduled_agent_config.py,sha256=3okCjpggJSKkc1Dp8ZJuQP010tQvN3dk8n_llbTc5aE,1506
|
|
45
48
|
flock/core/context/context.py,sha256=zdQuB1YWPJmQVv_2_sm1HK7FSnusa3Jl-83PcTuaLUk,7791
|
|
46
49
|
flock/core/context/context_manager.py,sha256=FANSWa6DEhdhtZ7t_9Gza0v80UdpoDOhHbfVOccmjkA,1181
|
|
47
50
|
flock/core/context/context_vars.py,sha256=ASPA29hpENWub4mgRoG62FtTVakCHQZfn6IhJQKe3C8,347
|
|
@@ -484,12 +487,12 @@ flock/tools/text_tools.py,sha256=mMQ8tkyYDxIorqqzl9ccGyWYjrSynYiYFIeP9qypfdg,224
|
|
|
484
487
|
flock/tools/web_tools.py,sha256=Wl3qO5lKq4PYtmYahgeFGBQ8tDC0uKY4k9A1Zn-MqFw,2588
|
|
485
488
|
flock/tools/zendesk_tools.py,sha256=e7KMfHVl7wGbstwdz9CvoChyuoZfpS9n4TEtvrxawgI,5162
|
|
486
489
|
flock/webapp/__init__.py,sha256=YtRbbyciN3Z2oMB9fdXZuvM3e49R8m2mY5qHLDoapRA,37
|
|
487
|
-
flock/webapp/run.py,sha256=
|
|
490
|
+
flock/webapp/run.py,sha256=btKVwIqrFg3FhLRuj2RN_fazwaFat3Ue5yiFiIg60rQ,9054
|
|
488
491
|
flock/webapp/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
492
|
flock/webapp/app/chat.py,sha256=d5a_mr3H2nuWNFSpSlI_HyqX-J_4krndd4A-8S25EKM,28679
|
|
490
493
|
flock/webapp/app/config.py,sha256=lqmneujnNZk-EFJV5cWpvxkqisxH3T3zT_YOI0JYThE,4809
|
|
491
494
|
flock/webapp/app/dependencies.py,sha256=JUcwY1N6SZplU141lMN2wk9dOC9er5HCedrKTJN9wJk,5533
|
|
492
|
-
flock/webapp/app/main.py,sha256=
|
|
495
|
+
flock/webapp/app/main.py,sha256=Clzfp1KeSe15jZzhna4Ung5hmQkdljT_0C-0RhU6rVw,57141
|
|
493
496
|
flock/webapp/app/models_ui.py,sha256=vrEBLbhEp6FziAgBSFOLT1M7ckwadsTdT7qus5_NduE,329
|
|
494
497
|
flock/webapp/app/theme_mapper.py,sha256=QzWwLWpED78oYp3FjZ9zxv1KxCyj43m8MZ0fhfzz37w,34302
|
|
495
498
|
flock/webapp/app/utils.py,sha256=RF8DMKKAj1XPmm4txUdo2OdswI1ATQ7cqUm6G9JFDzA,2942
|
|
@@ -501,50 +504,51 @@ flock/webapp/app/api/registry_viewer.py,sha256=IoInxJiRR0yFlecG_l2_eRc6l35RQQyED
|
|
|
501
504
|
flock/webapp/app/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
502
505
|
flock/webapp/app/services/flock_service.py,sha256=olU1My3YYkrTCVIOYPgRted-8YgAop-Yi7G4gbRHTrg,14941
|
|
503
506
|
flock/webapp/app/services/sharing_models.py,sha256=XeJk1akILV_1l-cIUaG8k_eYhjV3EWBCWZ2kpwbdImA,3609
|
|
504
|
-
flock/webapp/app/services/sharing_store.py,sha256=
|
|
507
|
+
flock/webapp/app/services/sharing_store.py,sha256=qegEx2rbhlhJgxGjZ-5MJXCnxDBYoPnfL0THcobuEIk,17816
|
|
505
508
|
flock/webapp/app/templates/theme_mapper.html,sha256=z8ZY7nmk6PiUGzD_-px7wSXcEnuBM121rMq6u-2oaCo,14249
|
|
506
509
|
flock/webapp/static/css/chat.css,sha256=Njc9gXfQzbXMrqtFJH2Yda-IQlwNPd2z4apXxzfA0sY,8169
|
|
507
510
|
flock/webapp/static/css/components.css,sha256=WnicEHy3ptPzggKmyG9_oZp3X30EMJBUW3KEXaiUCUE,6018
|
|
508
511
|
flock/webapp/static/css/header.css,sha256=E9MgItZCk34S65NfMJ001ZsRz4oyFSJex8KvINMtCn0,1043
|
|
509
512
|
flock/webapp/static/css/layout.css,sha256=ocDd7dmezdQzNAQDuQSv1xZ8-pcbNgYLUYJB1SKcfvw,1526
|
|
510
513
|
flock/webapp/static/css/sidebar.css,sha256=gCwLTAiIvmHGksm0rHDpMsOGCDKBMxqx_aEc8ZQcQF8,3066
|
|
511
|
-
flock/webapp/
|
|
512
|
-
flock/webapp/templates/
|
|
513
|
-
flock/webapp/templates/
|
|
514
|
-
flock/webapp/templates/
|
|
515
|
-
flock/webapp/templates/
|
|
516
|
-
flock/webapp/templates/
|
|
517
|
-
flock/webapp/templates/
|
|
518
|
-
flock/webapp/templates/
|
|
519
|
-
flock/webapp/templates/partials/
|
|
520
|
-
flock/webapp/templates/partials/
|
|
514
|
+
flock/webapp/static/css/two-pane.css,sha256=dTrCm5y3odO105Pt_yHtAl3uzUSy2fqDSCEC_jxeEDM,1181
|
|
515
|
+
flock/webapp/templates/base.html,sha256=-XFV6cAyl77_fdF0_syUYYDmV1Rdje6ATEumxkyn7Gk,10006
|
|
516
|
+
flock/webapp/templates/chat.html,sha256=kz1No9tZfOt6eFzI1KNmfYrSglWIr9bxkGZDEaBH9oc,7506
|
|
517
|
+
flock/webapp/templates/chat_settings.html,sha256=eUHOOEt52jW8DxAMM6jLOPPsdHMdhiQzKuEdgeT0BOI,930
|
|
518
|
+
flock/webapp/templates/flock_editor.html,sha256=Zlo-jLbNZshsxvC9vFDnqWNxdJiKelITlsvX5CAl4RI,547
|
|
519
|
+
flock/webapp/templates/index.html,sha256=1SDfAfaGBNJhI26bc6z7qBo9mrOK7HKQIS9aRGvMnBA,429
|
|
520
|
+
flock/webapp/templates/registry_viewer.html,sha256=Rq0Ao3r6mqwgF6bWM73d-KmnslwQoz79a2PGbL5M4Fo,3349
|
|
521
|
+
flock/webapp/templates/shared_run_page.html,sha256=RX1J3hgEuIJXaGYlquY7m54yxPTIrJJAZH2HB6v33WY,8109
|
|
522
|
+
flock/webapp/templates/partials/_agent_detail_form.html,sha256=jpcbj2-zN_eWH6vlhWGBAviObmK2IZvezU_b2_UW-Tc,6067
|
|
523
|
+
flock/webapp/templates/partials/_agent_list.html,sha256=2Gvm84BPX5Wm3IwmuqTNX-I5c46P18obC-k0quEQ8VQ,1048
|
|
524
|
+
flock/webapp/templates/partials/_agent_manager_view.html,sha256=8oJlxjtgeOkCQcfhaAmE4s_tklk25Jw0XScXpS_MVr0,2571
|
|
521
525
|
flock/webapp/templates/partials/_agent_tools_checklist.html,sha256=T60fb7OrJYHUw0hJLC_otskgvbH9dZXbv5klgWBkSWk,686
|
|
522
|
-
flock/webapp/templates/partials/_chat_container.html,sha256=
|
|
526
|
+
flock/webapp/templates/partials/_chat_container.html,sha256=MHj9yRHy_wVZD6f_Csc0bZBhtxJMfr2V5bRRAaXiqtU,843
|
|
523
527
|
flock/webapp/templates/partials/_chat_messages.html,sha256=Tt9wD8JoX1bQ6lPWOCGtWWY9rw-ULyToVDcmEaDz07M,3790
|
|
524
|
-
flock/webapp/templates/partials/_chat_settings_form.html,sha256=
|
|
525
|
-
flock/webapp/templates/partials/_create_flock_form.html,sha256=
|
|
526
|
-
flock/webapp/templates/partials/_dashboard_flock_detail.html,sha256=
|
|
527
|
-
flock/webapp/templates/partials/_dashboard_flock_file_list.html,sha256=
|
|
528
|
-
flock/webapp/templates/partials/_dashboard_flock_properties_preview.html,sha256=
|
|
529
|
-
flock/webapp/templates/partials/_dashboard_upload_flock_form.html,sha256=
|
|
528
|
+
flock/webapp/templates/partials/_chat_settings_form.html,sha256=iPb0XT52VLyU9HDsoFH41uXosGJsuXwaU1smKDWc_ms,4538
|
|
529
|
+
flock/webapp/templates/partials/_create_flock_form.html,sha256=7IukF4rQwdn3D5fVXqusGlTmNeoJXEwclhzQt57NVDY,2823
|
|
530
|
+
flock/webapp/templates/partials/_dashboard_flock_detail.html,sha256=RWPshcq3-11j13jw5j-x4r3AMULdNHsWK4ejfLYD4MM,1044
|
|
531
|
+
flock/webapp/templates/partials/_dashboard_flock_file_list.html,sha256=TT-4qh9Lx6pHi3MLIteMbeEM3O6w78KHw5zgqkOJMuo,815
|
|
532
|
+
flock/webapp/templates/partials/_dashboard_flock_properties_preview.html,sha256=7xkc2vxJFhERQXI_rNWXaUQuJ4X6_AJpgmPZa75OV3A,1620
|
|
533
|
+
flock/webapp/templates/partials/_dashboard_upload_flock_form.html,sha256=UWU_WpIsq6iw5FwK989ANmhzcCOcDKVjdakZ4kxY8lU,961
|
|
530
534
|
flock/webapp/templates/partials/_dynamic_input_form_content.html,sha256=WYr2M7Mb5vKITFhIVXXEHppRx9IjGew91yLo1_I9kkI,1230
|
|
531
|
-
flock/webapp/templates/partials/_env_vars_table.html,sha256=
|
|
532
|
-
flock/webapp/templates/partials/_execution_form.html,sha256=
|
|
533
|
-
flock/webapp/templates/partials/_execution_view_container.html,sha256=
|
|
534
|
-
flock/webapp/templates/partials/_flock_file_list.html,sha256=
|
|
535
|
-
flock/webapp/templates/partials/_flock_properties_form.html,sha256=
|
|
536
|
-
flock/webapp/templates/partials/_flock_upload_form.html,sha256=
|
|
535
|
+
flock/webapp/templates/partials/_env_vars_table.html,sha256=st8bRQpIJ3TJ_znEdyOwDT43ZhO2QTLne2IZNxQdQNM,1106
|
|
536
|
+
flock/webapp/templates/partials/_execution_form.html,sha256=0Tgqk-JWW8tzSJPKZ4CFT4ZvNCB02Zesib2QN6bEiUk,3526
|
|
537
|
+
flock/webapp/templates/partials/_execution_view_container.html,sha256=w4QEr-yPs0k1vF2oxMhhPoOr-ki0YJzzUltGmZgfRfY,1672
|
|
538
|
+
flock/webapp/templates/partials/_flock_file_list.html,sha256=3F1RE1EaeRSQeyIWeA2ALHU2j4oGwureDtY6k1aZVjQ,1261
|
|
539
|
+
flock/webapp/templates/partials/_flock_properties_form.html,sha256=kUHoxB6_C_R9nMDD_ClLRDL_9zQ6E8gFCrlkEkqcUYo,2904
|
|
540
|
+
flock/webapp/templates/partials/_flock_upload_form.html,sha256=IK4Kk_82z3m9zlutKak58NBj9PMpTGXtTmeiPSoJVy0,965
|
|
537
541
|
flock/webapp/templates/partials/_header_flock_status.html,sha256=reNB4Prsu9lObz5tFhGk3AMe4bNw92gDJZUKABVaVBM,158
|
|
538
|
-
flock/webapp/templates/partials/_load_manager_view.html,sha256=
|
|
542
|
+
flock/webapp/templates/partials/_load_manager_view.html,sha256=lu_2yKJcBPF8yZEeA0rnCPpYODieVfQgjq8HzKoPTzs,2950
|
|
539
543
|
flock/webapp/templates/partials/_registry_table.html,sha256=z4EW5G3DTknymBeSlpL2PZLcb2143P35upMnmHFfeJs,715
|
|
540
|
-
flock/webapp/templates/partials/_registry_viewer_content.html,sha256=
|
|
544
|
+
flock/webapp/templates/partials/_registry_viewer_content.html,sha256=FBqP1YRL-rfE6YpgtWnpyFqATUhVKUHTGvF6QbIOKrw,1968
|
|
541
545
|
flock/webapp/templates/partials/_results_display.html,sha256=1UJvCeyJTPxuJYUcGUM8O8uhNvCxxOfxpCjC-PCr80U,5268
|
|
542
|
-
flock/webapp/templates/partials/_settings_env_content.html,sha256=
|
|
543
|
-
flock/webapp/templates/partials/_settings_theme_content.html,sha256
|
|
544
|
-
flock/webapp/templates/partials/_settings_view.html,sha256=
|
|
546
|
+
flock/webapp/templates/partials/_settings_env_content.html,sha256=16h1ppTGNY7wNkxQkaNhouTNN22tlw_u5rBk6cdhzFk,597
|
|
547
|
+
flock/webapp/templates/partials/_settings_theme_content.html,sha256=wjd4Pg_NjEaraTo84DekbJhfKO5AIMnDje6eR-kMufo,833
|
|
548
|
+
flock/webapp/templates/partials/_settings_view.html,sha256=f2h9jnDv8-JRkDzsbk_1oqAGoCBrMwL0Zp4-ENSAdwY,1375
|
|
545
549
|
flock/webapp/templates/partials/_share_chat_link_snippet.html,sha256=N83lNAbkZiDfzZYviKwURPGGErSZhRlxnNzUqXsB7lE,793
|
|
546
550
|
flock/webapp/templates/partials/_share_link_snippet.html,sha256=6en9lOdtu8FwVbtmkJzSQpHQ1WFXHnCbe84FDgAEF3U,1533
|
|
547
|
-
flock/webapp/templates/partials/_sidebar.html,sha256=
|
|
551
|
+
flock/webapp/templates/partials/_sidebar.html,sha256=yfhEcF3xKI5j1c3iq46mU8mmPvgyvCHXe6xT7vsE6KM,4984
|
|
548
552
|
flock/webapp/templates/partials/_structured_data_view.html,sha256=TEaXcMGba9ruxEc_MLxygIO1qWcuSTo1FnosFtGSKWI,2101
|
|
549
553
|
flock/webapp/templates/partials/_theme_preview.html,sha256=81vP5z8958LjhGWGwjVAVw3zW0uvYwfcXlU30i9exmo,867
|
|
550
554
|
flock/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -554,8 +558,8 @@ flock/workflow/agent_execution_activity.py,sha256=Gy6FtuVAjf0NiUXmC3syS2eJpNQF4R
|
|
|
554
558
|
flock/workflow/flock_workflow.py,sha256=iSUF_soFvWar0ffpkzE4irkDZRx0p4HnwmEBi_Ne2sY,9666
|
|
555
559
|
flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
|
|
556
560
|
flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
|
|
557
|
-
flock_core-0.4.
|
|
558
|
-
flock_core-0.4.
|
|
559
|
-
flock_core-0.4.
|
|
560
|
-
flock_core-0.4.
|
|
561
|
-
flock_core-0.4.
|
|
561
|
+
flock_core-0.4.512.dist-info/METADATA,sha256=ssgilAbpLRbIA5c6wUsPfiWciI5M-kw8FzMu_ufG888,22656
|
|
562
|
+
flock_core-0.4.512.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
563
|
+
flock_core-0.4.512.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
|
|
564
|
+
flock_core-0.4.512.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
565
|
+
flock_core-0.4.512.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|