flock-core 0.5.0b10__py3-none-any.whl → 0.5.0b12__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/components/evaluation/declarative_evaluation_component.py +10 -2
- flock/components/utility/output_utility_component.py +2 -1
- flock/core/component/evaluation_component.py +6 -0
- flock/core/flock_agent.py +1 -1
- flock/core/flock_factory.py +4 -0
- flock/core/orchestration/flock_execution.py +1 -1
- flock/core/orchestration/flock_initialization.py +1 -1
- flock/core/util/cli_helper.py +4 -1
- flock/webapp/app/api/execution.py +248 -58
- flock/webapp/app/chat.py +63 -2
- flock/webapp/app/services/feedback_file_service.py +363 -0
- flock/webapp/app/services/sharing_store.py +167 -5
- flock/webapp/templates/partials/_execution_form.html +61 -21
- flock/webapp/templates/partials/_registry_viewer_content.html +30 -6
- flock/webapp/templates/registry_viewer.html +21 -18
- {flock_core-0.5.0b10.dist-info → flock_core-0.5.0b12.dist-info}/METADATA +4 -1
- {flock_core-0.5.0b10.dist-info → flock_core-0.5.0b12.dist-info}/RECORD +20 -19
- {flock_core-0.5.0b10.dist-info → flock_core-0.5.0b12.dist-info}/WHEEL +0 -0
- {flock_core-0.5.0b10.dist-info → flock_core-0.5.0b12.dist-info}/entry_points.txt +0 -0
- {flock_core-0.5.0b10.dist-info → flock_core-0.5.0b12.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,22 +1,17 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
// Create URL template for agent input forms
|
|
3
|
-
window.agentInputFormUrlTemplate = '{{ url_for("htmx_get_agent_input_form", agent_name="AGENT_PLACEHOLDER") }}';
|
|
2
|
+
// Create URL template for agent input forms
|
|
3
|
+
window.agentInputFormUrlTemplate = '{{ url_for("htmx_get_agent_input_form", agent_name="AGENT_PLACEHOLDER") }}';
|
|
4
4
|
</script>
|
|
5
5
|
|
|
6
6
|
<article id="execution-form-content">
|
|
7
7
|
<header>
|
|
8
8
|
<h2>Run Flock</h2>
|
|
9
9
|
</header>
|
|
10
|
-
{% if flock and flock.agents %}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
hx-indicator="#run-loading-indicator"
|
|
14
|
-
x-data="{ selectedAgentForInput: '' }">
|
|
15
|
-
|
|
10
|
+
{% if flock and flock.agents %} <form hx-post="{{ url_for('htmx_run_flock') }}" hx-target="#results-display"
|
|
11
|
+
hx-swap="innerHTML" hx-indicator="#run-loading-indicator" x-data="{ selectedAgentForInput: '' }">
|
|
12
|
+
|
|
16
13
|
<label for="start_agent_name_select">Select Start Agent:</label>
|
|
17
|
-
<select id="start_agent_name_select"
|
|
18
|
-
name="start_agent_name"
|
|
19
|
-
required x-model="selectedAgentForInput" @change="
|
|
14
|
+
<select id="start_agent_name_select" name="start_agent_name" required x-model="selectedAgentForInput" @change="
|
|
20
15
|
if ($event.target.value) {
|
|
21
16
|
const url = window.agentInputFormUrlTemplate.replace('AGENT_PLACEHOLDER', $event.target.value);
|
|
22
17
|
htmx.ajax('GET', url, {target: '#dynamic-input-form-fields', swap: 'innerHTML', indicator: '#input-form-loading-indicator'});
|
|
@@ -26,7 +21,8 @@ window.agentInputFormUrlTemplate = '{{ url_for("htmx_get_agent_input_form", agen
|
|
|
26
21
|
">
|
|
27
22
|
<option value="" disabled {% if not selected_agent_name %}selected{% endif %}>-- Choose an agent --</option>
|
|
28
23
|
{% for agent_name_key in flock.agents.keys() %}
|
|
29
|
-
<option value="{{ agent_name_key }}" {% if selected_agent_name
|
|
24
|
+
<option value="{{ agent_name_key }}" {% if selected_agent_name==agent_name_key %}selected{% endif %}>{{
|
|
25
|
+
agent_name_key }}</option>
|
|
30
26
|
{% endfor %}
|
|
31
27
|
</select>
|
|
32
28
|
|
|
@@ -38,14 +34,12 @@ window.agentInputFormUrlTemplate = '{{ url_for("htmx_get_agent_input_form", agen
|
|
|
38
34
|
<progress indeterminate></progress> Loading input form...
|
|
39
35
|
</div>
|
|
40
36
|
|
|
41
|
-
<button type="submit" {% if not flock.agents %}disabled{% endif %}>Run Flock</button>
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
hx-include="#start_agent_name_select"
|
|
48
|
-
style="text-decoration: underline; cursor: pointer; color: var(--pico-primary);">
|
|
37
|
+
<button type="submit" {% if not flock.agents %}disabled{% endif %}>Run Flock</button>
|
|
38
|
+
<div id="share-agent-link-container" style="margin-top: 0.5rem;">
|
|
39
|
+
<a href="#" id="shareAgentHtmxLink" hx-post="{{ url_for('htmx_generate_share_link') }}"
|
|
40
|
+
hx-target="#shareLinkDisplayArea" hx-swap="innerHTML" hx-indicator="#share-loading-indicator"
|
|
41
|
+
hx-include="#start_agent_name_select"
|
|
42
|
+
style="padding: 0.25rem 0.5rem; margin: 0.25rem; background: var(--pico-primary); color: white; text-decoration: none; border-radius: 4px; font-size: 0.875rem;">
|
|
49
43
|
Create shareable link...
|
|
50
44
|
</a>
|
|
51
45
|
<span id="share-loading-indicator" class="htmx-indicator">
|
|
@@ -53,6 +47,52 @@ window.agentInputFormUrlTemplate = '{{ url_for("htmx_get_agent_input_form", agen
|
|
|
53
47
|
</span>
|
|
54
48
|
</div>
|
|
55
49
|
|
|
50
|
+
<div id="feedback-download-container" style="margin-top: 0.5rem;">
|
|
51
|
+
<div x-show="selectedAgentForInput" x-cloak
|
|
52
|
+
style="display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;">
|
|
53
|
+
<span style="padding: 0.25rem; text-decoration: underline;">Download feedback for selected
|
|
54
|
+
agent:</span>
|
|
55
|
+
<div>
|
|
56
|
+
<a href="#" id="downloadFeedbackLink" hx-indicator="#download-feedback-loading-indicator"
|
|
57
|
+
hx-include="#start_agent_name_select"
|
|
58
|
+
:href="selectedAgentForInput ? '{{ url_for('chat_feedback_download', agent_name='AGENT_PLACEHOLDER', format='csv') }}'.replace('AGENT_PLACEHOLDER', selectedAgentForInput) : '#'"
|
|
59
|
+
style="padding: 0.25rem 0.5rem; margin: 0.25rem; background: var(--pico-primary); color: white; text-decoration: none; border-radius: 4px; font-size: 0.875rem;">
|
|
60
|
+
CSV
|
|
61
|
+
</a>
|
|
62
|
+
<a href="#" id="downloadFeedbackLinkXlsx" hx-indicator="#download-feedback-loading-indicator"
|
|
63
|
+
hx-include="#start_agent_name_select"
|
|
64
|
+
:href="selectedAgentForInput ? '{{ url_for('chat_feedback_download', agent_name='AGENT_PLACEHOLDER', format='xlsx') }}'.replace('AGENT_PLACEHOLDER', selectedAgentForInput) : '#'"
|
|
65
|
+
style="padding: 0.25rem 0.5rem; margin: 0.25rem; background: var(--pico-primary); color: white; text-decoration: none; border-radius: 4px; font-size: 0.875rem;">
|
|
66
|
+
XLSX
|
|
67
|
+
</a>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
<span id="download-feedback-loading-indicator" class="htmx-indicator">
|
|
71
|
+
<progress indeterminate></progress> Preparing file...
|
|
72
|
+
</span>
|
|
73
|
+
</div>
|
|
74
|
+
|
|
75
|
+
<div id="feedback-download-container-all" style="margin-top: 0.5rem;">
|
|
76
|
+
<div style="display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;">
|
|
77
|
+
<span style="padding: 0.25rem; text-decoration: underline;">Download feedback for all
|
|
78
|
+
agents:</span>
|
|
79
|
+
<div>
|
|
80
|
+
<a href="{{ url_for('chat_feedback_download_all', format='csv') }}" id="downloadFeedbackLinkAll"
|
|
81
|
+
style="padding: 0.25rem 0.5rem; margin: 0.25rem; background: var(--pico-primary); color: white; text-decoration: none; border-radius: 4px; font-size: 0.875rem;">
|
|
82
|
+
CSV
|
|
83
|
+
</a>
|
|
84
|
+
<a href="{{ url_for('chat_feedback_download_all', format='xlsx') }}"
|
|
85
|
+
id="downloadFeedbackLinkAllXlsx"
|
|
86
|
+
style="padding: 0.25rem 0.5rem; margin: 0.25rem; background: var(--pico-primary); color: white; text-decoration: none; border-radius: 4px; font-size: 0.875rem;">
|
|
87
|
+
XLSX
|
|
88
|
+
</a>
|
|
89
|
+
</div>
|
|
90
|
+
</div>
|
|
91
|
+
<span id="download-feedback-loading-indicator-all" class="htmx-indicator">
|
|
92
|
+
<progress indeterminate></progress> Preparing file...
|
|
93
|
+
</span>
|
|
94
|
+
</div>
|
|
95
|
+
|
|
56
96
|
<span id="run-loading-indicator" class="htmx-indicator">
|
|
57
97
|
<progress indeterminate></progress> Running...
|
|
58
98
|
</span>
|
|
@@ -70,7 +110,7 @@ window.agentInputFormUrlTemplate = '{{ url_for("htmx_get_agent_input_form", agen
|
|
|
70
110
|
</article>
|
|
71
111
|
|
|
72
112
|
<script>
|
|
73
|
-
document.addEventListener('DOMContentLoaded', function() {
|
|
113
|
+
document.addEventListener('DOMContentLoaded', function () {
|
|
74
114
|
// All previous JavaScript for toggling share link visibility is removed.
|
|
75
115
|
// If there are other unrelated JavaScript functions in this script block,
|
|
76
116
|
// they would remain.
|
|
@@ -5,21 +5,45 @@
|
|
|
5
5
|
</header>
|
|
6
6
|
|
|
7
7
|
<nav>
|
|
8
|
-
<ul role="group">
|
|
9
|
-
|
|
8
|
+
<ul role="group">
|
|
9
|
+
<li>
|
|
10
|
+
<button role="button" class="outline"
|
|
11
|
+
hx-get="{{ url_for('htmx_get_registry_table', item_type='type') }}"
|
|
12
|
+
hx-target="#registry-table-container" hx-indicator="#registry-loading"
|
|
13
|
+
hx-on:click="setActiveButton(this)">
|
|
10
14
|
View Types
|
|
11
15
|
</button>
|
|
12
16
|
</li>
|
|
13
17
|
<li>
|
|
14
|
-
<button role="button" class="outline"
|
|
18
|
+
<button role="button" class="outline"
|
|
19
|
+
hx-get="{{ url_for('htmx_get_registry_table', item_type='tool') }}"
|
|
20
|
+
hx-target="#registry-table-container" hx-indicator="#registry-loading"
|
|
21
|
+
hx-on:click="setActiveButton(this)">
|
|
15
22
|
View Tools/Callables
|
|
16
23
|
</button>
|
|
17
24
|
</li>
|
|
18
25
|
<li>
|
|
19
|
-
<button role="button" class="outline"
|
|
26
|
+
<button role="button" class="outline"
|
|
27
|
+
hx-get="{{ url_for('htmx_get_registry_table', item_type='component') }}"
|
|
28
|
+
hx-target="#registry-table-container" hx-indicator="#registry-loading"
|
|
29
|
+
hx-on:click="setActiveButton(this)">
|
|
20
30
|
View Components
|
|
21
31
|
</button>
|
|
22
32
|
</li>
|
|
33
|
+
<li>
|
|
34
|
+
<span style="padding: 0.25rem; text-decoration: underline;">Feedback-Files</span>
|
|
35
|
+
<div>
|
|
36
|
+
<a href="{{ url_for('chat_feedback_download_all', format='csv') }}" id="downloadFeedbackLinkAll"
|
|
37
|
+
style="padding: 0.25rem 0.5rem; margin: 0.25rem; background: var(--pico-primary); color: white; text-decoration: none; border-radius: 4px; font-size: 0.875rem;">
|
|
38
|
+
CSV
|
|
39
|
+
</a>
|
|
40
|
+
<a href="{{ url_for('chat_feedback_download_all', format='xlsx') }}"
|
|
41
|
+
id="downloadFeedbackLinkAllXlsx"
|
|
42
|
+
style="padding: 0.25rem 0.5rem; margin: 0.25rem; background: var(--pico-primary); color: white; text-decoration: none; border-radius: 4px; font-size: 0.875rem;">
|
|
43
|
+
XLSX
|
|
44
|
+
</a>
|
|
45
|
+
</div>
|
|
46
|
+
</li>
|
|
23
47
|
</ul>
|
|
24
48
|
</nav>
|
|
25
49
|
|
|
@@ -37,10 +61,10 @@
|
|
|
37
61
|
function setActiveButton(clickedButton) {
|
|
38
62
|
const buttons = clickedButton.closest('ul[role="group"]').querySelectorAll('button');
|
|
39
63
|
buttons.forEach(button => {
|
|
40
|
-
button.classList.remove('primary');
|
|
64
|
+
button.classList.remove('primary');
|
|
41
65
|
button.classList.add('outline');
|
|
42
66
|
});
|
|
43
67
|
clickedButton.classList.remove('outline');
|
|
44
|
-
clickedButton.classList.add('primary');
|
|
68
|
+
clickedButton.classList.add('primary');
|
|
45
69
|
}
|
|
46
70
|
</script>
|
|
@@ -12,32 +12,34 @@
|
|
|
12
12
|
<nav>
|
|
13
13
|
<ul role="group">
|
|
14
14
|
<li>
|
|
15
|
-
<button role="button"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
hx-on:click="setActiveButton(this)">
|
|
15
|
+
<button role="button" class="outline"
|
|
16
|
+
hx-get="{{ url_for('htmx_get_registry_table', item_type='type') }}"
|
|
17
|
+
hx-target="#registry-table-container" hx-indicator="#registry-loading"
|
|
18
|
+
hx-on:click="setActiveButton(this)">
|
|
20
19
|
View Types
|
|
21
20
|
</button>
|
|
22
21
|
</li>
|
|
23
22
|
<li>
|
|
24
|
-
<button role="button"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
View Tools/Callables
|
|
23
|
+
<button role="button" class="outline"
|
|
24
|
+
hx-get="{{ url_for('htmx_get_registry_table', item_type='component') }}"
|
|
25
|
+
hx-target="#registry-table-container" hx-indicator="#registry-loading"
|
|
26
|
+
hx-on:click="setActiveButton(this)">
|
|
27
|
+
View Components
|
|
30
28
|
</button>
|
|
31
29
|
</li>
|
|
32
30
|
<li>
|
|
33
|
-
<button role="button"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
hx-on:click="setActiveButton(this)">
|
|
31
|
+
<button role="button" class="outline"
|
|
32
|
+
hx-get="{{ url_for('htmx_get_registry_table', item_type='component') }}"
|
|
33
|
+
hx-target="#registry-table-container" hx-indicator="#registry-loading"
|
|
34
|
+
hx-on:click="setActiveButton(this)">
|
|
38
35
|
View Components
|
|
39
36
|
</button>
|
|
40
37
|
</li>
|
|
38
|
+
<li>
|
|
39
|
+
<button role="button" class="secondary" hx-get="{{ url_for('chat_feedback_download_all')}}" download>
|
|
40
|
+
Download Feedback-Files for Agents
|
|
41
|
+
</button>
|
|
42
|
+
</li>
|
|
41
43
|
</ul>
|
|
42
44
|
</nav>
|
|
43
45
|
|
|
@@ -50,7 +52,8 @@
|
|
|
50
52
|
</div>
|
|
51
53
|
|
|
52
54
|
<footer style="margin-top: 2rem;">
|
|
53
|
-
<a href="{{ url_for('page_editor_section', section='execute') }}" role="button" class="secondary contrast">Back
|
|
55
|
+
<a href="{{ url_for('page_editor_section', section='execute') }}" role="button" class="secondary contrast">Back
|
|
56
|
+
to Editor</a>
|
|
54
57
|
</footer>
|
|
55
58
|
</article>
|
|
56
59
|
|
|
@@ -70,7 +73,7 @@
|
|
|
70
73
|
|
|
71
74
|
// Optional: Set the first button as active on initial load,
|
|
72
75
|
// or if you want to default to loading "Types"
|
|
73
|
-
document.addEventListener('DOMContentLoaded', function() {
|
|
76
|
+
document.addEventListener('DOMContentLoaded', function () {
|
|
74
77
|
const firstButton = document.querySelector('nav ul[role="group"] button');
|
|
75
78
|
if (firstButton) {
|
|
76
79
|
// setActiveButton(firstButton); // Uncomment if you want a default active button
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flock-core
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.0b12
|
|
4
4
|
Summary: Declarative LLM Orchestration at Scale
|
|
5
5
|
Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -10,6 +10,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
10
10
|
Requires-Python: >=3.10
|
|
11
11
|
Requires-Dist: aiosqlite>=0.21.0
|
|
12
12
|
Requires-Dist: azure-data-tables>=12.7.0
|
|
13
|
+
Requires-Dist: azure-storage-blob>=12.25.1
|
|
13
14
|
Requires-Dist: chromadb>=0.6.3
|
|
14
15
|
Requires-Dist: cloudpickle>=3.1.1
|
|
15
16
|
Requires-Dist: croniter>=6.0.0
|
|
@@ -54,6 +55,8 @@ Requires-Dist: tqdm>=4.60.1
|
|
|
54
55
|
Requires-Dist: uvicorn>=0.34.0
|
|
55
56
|
Requires-Dist: wd-di>=0.2.14
|
|
56
57
|
Requires-Dist: websockets>=15.0.1
|
|
58
|
+
Requires-Dist: werkzeug>=3.1.3
|
|
59
|
+
Requires-Dist: xlsxwriter>=3.2.3
|
|
57
60
|
Provides-Extra: memory
|
|
58
61
|
Requires-Dist: matplotlib>=3.10.0; extra == 'memory'
|
|
59
62
|
Requires-Dist: mem0ai[graph]>=0.1.101; extra == 'memory'
|
|
@@ -27,7 +27,7 @@ flock/cli/yaml_editor.py,sha256=K3N0bh61G1TSDAZDnurqW9e_-hO6CtSQKXQqlDhCjVo,1252
|
|
|
27
27
|
flock/cli/assets/release_notes.md,sha256=bqnk50jxM3w5uY44Dc7MkdT8XmRREFxrVBAG9XCOSSU,4896
|
|
28
28
|
flock/components/__init__.py,sha256=qDcaP0O7_b5RlUEXluqwskpKCkhM73kSMeNXReze63M,963
|
|
29
29
|
flock/components/evaluation/__init__.py,sha256=_M3UlRFeNN90fEny6byt5VdLDE5o5khbd0EPT0o9S9k,303
|
|
30
|
-
flock/components/evaluation/declarative_evaluation_component.py,sha256=
|
|
30
|
+
flock/components/evaluation/declarative_evaluation_component.py,sha256=lXOboqaf8dsp64vlCZlfVSlEiA4ToE33490cFwPXTt8,8971
|
|
31
31
|
flock/components/routing/__init__.py,sha256=BH_pFm9T6bUuf8HH4byDJ0dO0fzEVHv9m-ghUdDVdm0,542
|
|
32
32
|
flock/components/routing/conditional_routing_component.py,sha256=WqZLMz-0Dhfb97xvttNrJCIVe6FNMLEQ2m4KQTDpIbI,21374
|
|
33
33
|
flock/components/routing/default_routing_component.py,sha256=ZHt2Kjf-GHB5n7evU5NSGeQJ1Wuims5soeMswqaUb1E,3370
|
|
@@ -35,11 +35,11 @@ flock/components/routing/llm_routing_component.py,sha256=SAaOFjlnhnenM6QEBn3WIpj
|
|
|
35
35
|
flock/components/utility/__init__.py,sha256=JRj932upddjzZMWs1avOupEFr_GZNu21ac66Rhw_XgY,532
|
|
36
36
|
flock/components/utility/memory_utility_component.py,sha256=4Vpt6_McEPpN5lNTcXmj7JeZTBOT6rHI0uQE2Qy-3Gc,20103
|
|
37
37
|
flock/components/utility/metrics_utility_component.py,sha256=u3Bys0dP7FmTeyZOi4XdMhZHCRYc5miXXJ690-qS1Us,24440
|
|
38
|
-
flock/components/utility/output_utility_component.py,sha256=
|
|
38
|
+
flock/components/utility/output_utility_component.py,sha256=c4K_PL3bGqdyy_v6dnOrmTqV-MkWKAB2w0HS8kzg82k,7613
|
|
39
39
|
flock/core/__init__.py,sha256=ntCQ_wlgvRVNFph3drbFvyaqgtN30487V18YoJzcIFE,1332
|
|
40
40
|
flock/core/flock.py,sha256=dN-asYsN2QOolZtYM5U8bRWEWkGckKRyhyy2n1xQ9b8,23148
|
|
41
|
-
flock/core/flock_agent.py,sha256=
|
|
42
|
-
flock/core/flock_factory.py,sha256=
|
|
41
|
+
flock/core/flock_agent.py,sha256=5n4Khlyc-xRaV65JFnCavNXeUCXMuL3PNS9T1tsTl7U,12023
|
|
42
|
+
flock/core/flock_factory.py,sha256=FWCnbdm17rEaZ2oQFnvzRN_nye5QmPeuzV56fhDQYC0,20049
|
|
43
43
|
flock/core/flock_scheduler.py,sha256=ng_s7gyijmc-AmYvBn5rtg61CSUZiIkXPRSlA1xO6VQ,8766
|
|
44
44
|
flock/core/flock_server_manager.py,sha256=tM_nOs37vAbEvxmhwy_DL2JPvgFViWroNxrRSu5MfUQ,4523
|
|
45
45
|
flock/core/agent/__init__.py,sha256=l32KFMJnC_gidMXpAXK8-OX228bWOhNc8OY_NzXm59Q,515
|
|
@@ -58,7 +58,7 @@ flock/core/api/runner.py,sha256=3izg6cVk1RoR1hDIDwMAO1gi3lnLcp8DPv7AnJBYx6A,1443
|
|
|
58
58
|
flock/core/api/service.py,sha256=52JBZ8jw4xgkrnY1nGgKr8MvtVgKnBsTrGRtop_SLZQ,11369
|
|
59
59
|
flock/core/component/__init__.py,sha256=84fXB3tlxio1bvjFw8UvL4_Kl6wcYZ3Nzwyuyc89k_U,450
|
|
60
60
|
flock/core/component/agent_component_base.py,sha256=ifHGcXI-7Q0JEcLCCS8OBrYNmLiuznHiKBhX5QpgInM,10665
|
|
61
|
-
flock/core/component/evaluation_component.py,sha256=
|
|
61
|
+
flock/core/component/evaluation_component.py,sha256=5z1_eiozUChcG69k_W9_WuSwzhKAR1kZq7yf1-XajBo,2204
|
|
62
62
|
flock/core/component/routing_component.py,sha256=gXUpMAf5Ty831FAQ20EAiAW8OkX8jjhgq7yCj4hGEBU,2669
|
|
63
63
|
flock/core/component/utility_component.py,sha256=05DTltnp8-xNGOPVpmKIxG8ry0VNB3PjojOzLZMyrI0,2322
|
|
64
64
|
flock/core/config/flock_agent_config.py,sha256=5Y9vJKYEkhtjU6I-bJAJBh0eLDYjGdPar_sJ9wMP65A,2132
|
|
@@ -103,8 +103,8 @@ flock/core/mixin/prompt_parser.py,sha256=eOqI-FK3y17gVqpc_y5GF-WmK1Jv8mFlkZxTcgw
|
|
|
103
103
|
flock/core/orchestration/__init__.py,sha256=lu6VgCpza0c34lDVhTdtFBY9gCuXx-sdadGqxLlfHuQ,543
|
|
104
104
|
flock/core/orchestration/flock_batch_processor.py,sha256=2vqSOHd-Zk871UTai3jGXvITgcwSowaCNjvDkSWbkLg,3357
|
|
105
105
|
flock/core/orchestration/flock_evaluator.py,sha256=_Ctub0P5VOnePpaPQgb7Qw-gvJerns8uO8u2QVOyGYA,4082
|
|
106
|
-
flock/core/orchestration/flock_execution.py,sha256=
|
|
107
|
-
flock/core/orchestration/flock_initialization.py,sha256=
|
|
106
|
+
flock/core/orchestration/flock_execution.py,sha256=NNzihOCdHfSp1XWQa_yMKbrO4ah58Sk2c7TQviakdYg,11416
|
|
107
|
+
flock/core/orchestration/flock_initialization.py,sha256=7tz2eDuQXcFET5Q6tb5moDIzvW-AMu3jdpA-LjyhCT4,4578
|
|
108
108
|
flock/core/orchestration/flock_server_manager.py,sha256=idDds7QGsqneY21Y5oL9NHN7fz13FlPF4W1C5HsNhZE,2568
|
|
109
109
|
flock/core/orchestration/flock_web_server.py,sha256=uLTKW2pLf4vW3MqhrA2bl3K69zHRqRqcx6vkFZHRi70,3827
|
|
110
110
|
flock/core/registry/__init__.py,sha256=CWKLV1-lnIM1mQXbmZgyzbSFM177FDGeQDexfI5GDus,1324
|
|
@@ -124,7 +124,7 @@ flock/core/serialization/json_encoder.py,sha256=gAKj2zU_8wQiNvdkby2hksSA4fbPNwTj
|
|
|
124
124
|
flock/core/serialization/secure_serializer.py,sha256=n5-zRvvXddgJv1FFHsaQ2wuYdL3WUSGPvG_LGaffEJo,6144
|
|
125
125
|
flock/core/serialization/serializable.py,sha256=qlv8TsTqRuklXiNuCMrvro5VKz764xC2i3FlgLJSkdk,12129
|
|
126
126
|
flock/core/serialization/serialization_utils.py,sha256=_TvGJw5zLP-asJxtAGJ65nqWNlLSEzeCSe2N-4JAST8,15283
|
|
127
|
-
flock/core/util/cli_helper.py,sha256=
|
|
127
|
+
flock/core/util/cli_helper.py,sha256=w8N7UJZOdOFhkcUSSusnL22JDlmJGgWmH0DgO--j-5c,50057
|
|
128
128
|
flock/core/util/file_path_utils.py,sha256=Odf7uU32C-x1KNighbNERSiMtkzW4h8laABIoFK7A5M,6246
|
|
129
129
|
flock/core/util/hydrator.py,sha256=qRfVTDBEwqv1-ET2D4s5NI25f-UA_tGsoAmt5jaJMDI,10693
|
|
130
130
|
flock/core/util/input_resolver.py,sha256=XNQlx0zRyAIkeVY4SSpfDnpyGQThsEwp3aj_ylv1hjo,5765
|
|
@@ -479,7 +479,7 @@ flock/themes/zenwritten-light.toml,sha256=G1iEheCPfBNsMTGaVpEVpDzYBHA_T-MV27rolU
|
|
|
479
479
|
flock/webapp/__init__.py,sha256=YtRbbyciN3Z2oMB9fdXZuvM3e49R8m2mY5qHLDoapRA,37
|
|
480
480
|
flock/webapp/run.py,sha256=btKVwIqrFg3FhLRuj2RN_fazwaFat3Ue5yiFiIg60rQ,9054
|
|
481
481
|
flock/webapp/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
482
|
-
flock/webapp/app/chat.py,sha256=
|
|
482
|
+
flock/webapp/app/chat.py,sha256=SH5yUJKRysuK_v8VlYGsfBymPSIHKcBWsJUCL_O49Ck,30748
|
|
483
483
|
flock/webapp/app/config.py,sha256=lqmneujnNZk-EFJV5cWpvxkqisxH3T3zT_YOI0JYThE,4809
|
|
484
484
|
flock/webapp/app/dependencies.py,sha256=JUcwY1N6SZplU141lMN2wk9dOC9er5HCedrKTJN9wJk,5533
|
|
485
485
|
flock/webapp/app/main.py,sha256=GSCx_trZGSma11BiDCLrdm_zU1VIsIUDbOZuQD1wbMk,58671
|
|
@@ -489,13 +489,14 @@ flock/webapp/app/theme_mapper.py,sha256=QzWwLWpED78oYp3FjZ9zxv1KxCyj43m8MZ0fhfzz
|
|
|
489
489
|
flock/webapp/app/utils.py,sha256=RF8DMKKAj1XPmm4txUdo2OdswI1ATQ7cqUm6G9JFDzA,2942
|
|
490
490
|
flock/webapp/app/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
491
491
|
flock/webapp/app/api/agent_management.py,sha256=5xqO94QjjAYvxImyjKV9EGUQOvo4n3eqs7pGwGPSQJ4,10394
|
|
492
|
-
flock/webapp/app/api/execution.py,sha256=
|
|
492
|
+
flock/webapp/app/api/execution.py,sha256=OzTjCP5CxAGdD2YrX7vI2qkQejqikX9Jn8_sq2o6yKA,18163
|
|
493
493
|
flock/webapp/app/api/flock_management.py,sha256=1o-6-36kTnUjI3am_BqLpdrcz0aqFXrxE-hQHIFcCsg,4869
|
|
494
494
|
flock/webapp/app/api/registry_viewer.py,sha256=IoInxJiRR0yFlecG_l2_eRc6l35RQQyEDMG9BcBkipY,1020
|
|
495
495
|
flock/webapp/app/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
496
|
+
flock/webapp/app/services/feedback_file_service.py,sha256=6WYJjml8lt_ULH5vq7JSWrPQPvUSLvp91qMBt-_tg5Q,9376
|
|
496
497
|
flock/webapp/app/services/flock_service.py,sha256=cuJezcNvrRiyQM2f6Nu62NAmcqJBpqLydml6zI0_OuI,14935
|
|
497
498
|
flock/webapp/app/services/sharing_models.py,sha256=XeJk1akILV_1l-cIUaG8k_eYhjV3EWBCWZ2kpwbdImA,3609
|
|
498
|
-
flock/webapp/app/services/sharing_store.py,sha256=
|
|
499
|
+
flock/webapp/app/services/sharing_store.py,sha256=Ee7D-2g44oM_PixxEuN1oqe1PmBqONHvfo3LY7SMlzY,27164
|
|
499
500
|
flock/webapp/app/templates/theme_mapper.html,sha256=z8ZY7nmk6PiUGzD_-px7wSXcEnuBM121rMq6u-2oaCo,14249
|
|
500
501
|
flock/webapp/static/css/chat.css,sha256=Njc9gXfQzbXMrqtFJH2Yda-IQlwNPd2z4apXxzfA0sY,8169
|
|
501
502
|
flock/webapp/static/css/components.css,sha256=WnicEHy3ptPzggKmyG9_oZp3X30EMJBUW3KEXaiUCUE,6018
|
|
@@ -508,7 +509,7 @@ flock/webapp/templates/chat.html,sha256=kz1No9tZfOt6eFzI1KNmfYrSglWIr9bxkGZDEaBH
|
|
|
508
509
|
flock/webapp/templates/chat_settings.html,sha256=eUHOOEt52jW8DxAMM6jLOPPsdHMdhiQzKuEdgeT0BOI,930
|
|
509
510
|
flock/webapp/templates/flock_editor.html,sha256=Zlo-jLbNZshsxvC9vFDnqWNxdJiKelITlsvX5CAl4RI,547
|
|
510
511
|
flock/webapp/templates/index.html,sha256=1SDfAfaGBNJhI26bc6z7qBo9mrOK7HKQIS9aRGvMnBA,429
|
|
511
|
-
flock/webapp/templates/registry_viewer.html,sha256=
|
|
512
|
+
flock/webapp/templates/registry_viewer.html,sha256=BEJkuUdLy8FStF16P6HXH9AJTD62iQjpH1WYUQDqBdo,3413
|
|
512
513
|
flock/webapp/templates/shared_run_page.html,sha256=RX1J3hgEuIJXaGYlquY7m54yxPTIrJJAZH2HB6v33WY,8109
|
|
513
514
|
flock/webapp/templates/partials/_agent_detail_form.html,sha256=jpcbj2-zN_eWH6vlhWGBAviObmK2IZvezU_b2_UW-Tc,6067
|
|
514
515
|
flock/webapp/templates/partials/_agent_list.html,sha256=0TcutldXJncQP6jMsXh8cnbjdzaVuEF-VTddQ6DZli0,1058
|
|
@@ -524,7 +525,7 @@ flock/webapp/templates/partials/_dashboard_flock_properties_preview.html,sha256=
|
|
|
524
525
|
flock/webapp/templates/partials/_dashboard_upload_flock_form.html,sha256=UWU_WpIsq6iw5FwK989ANmhzcCOcDKVjdakZ4kxY8lU,961
|
|
525
526
|
flock/webapp/templates/partials/_dynamic_input_form_content.html,sha256=WYr2M7Mb5vKITFhIVXXEHppRx9IjGew91yLo1_I9kkI,1230
|
|
526
527
|
flock/webapp/templates/partials/_env_vars_table.html,sha256=st8bRQpIJ3TJ_znEdyOwDT43ZhO2QTLne2IZNxQdQNM,1106
|
|
527
|
-
flock/webapp/templates/partials/_execution_form.html,sha256=
|
|
528
|
+
flock/webapp/templates/partials/_execution_form.html,sha256=lYdX3qqlKZ4_6EQttv_zEC9PR75qayoJ0p1IfebC2Lw,6733
|
|
528
529
|
flock/webapp/templates/partials/_execution_view_container.html,sha256=w4QEr-yPs0k1vF2oxMhhPoOr-ki0YJzzUltGmZgfRfY,1672
|
|
529
530
|
flock/webapp/templates/partials/_flock_file_list.html,sha256=3F1RE1EaeRSQeyIWeA2ALHU2j4oGwureDtY6k1aZVjQ,1261
|
|
530
531
|
flock/webapp/templates/partials/_flock_properties_form.html,sha256=kUHoxB6_C_R9nMDD_ClLRDL_9zQ6E8gFCrlkEkqcUYo,2904
|
|
@@ -532,7 +533,7 @@ flock/webapp/templates/partials/_flock_upload_form.html,sha256=IK4Kk_82z3m9zlutK
|
|
|
532
533
|
flock/webapp/templates/partials/_header_flock_status.html,sha256=reNB4Prsu9lObz5tFhGk3AMe4bNw92gDJZUKABVaVBM,158
|
|
533
534
|
flock/webapp/templates/partials/_load_manager_view.html,sha256=lu_2yKJcBPF8yZEeA0rnCPpYODieVfQgjq8HzKoPTzs,2950
|
|
534
535
|
flock/webapp/templates/partials/_registry_table.html,sha256=z4EW5G3DTknymBeSlpL2PZLcb2143P35upMnmHFfeJs,715
|
|
535
|
-
flock/webapp/templates/partials/_registry_viewer_content.html,sha256=
|
|
536
|
+
flock/webapp/templates/partials/_registry_viewer_content.html,sha256=rF3jFxP6mNkuf-nRRG_a0S8wWL4gdgoMRgxfpQGy0P4,3067
|
|
536
537
|
flock/webapp/templates/partials/_results_display.html,sha256=1UJvCeyJTPxuJYUcGUM8O8uhNvCxxOfxpCjC-PCr80U,5268
|
|
537
538
|
flock/webapp/templates/partials/_settings_env_content.html,sha256=16h1ppTGNY7wNkxQkaNhouTNN22tlw_u5rBk6cdhzFk,597
|
|
538
539
|
flock/webapp/templates/partials/_settings_theme_content.html,sha256=TPkqLyXJHwWOOgjLVURLpHA2JJRncZGf78Q6olIZIJc,852
|
|
@@ -549,8 +550,8 @@ flock/workflow/agent_execution_activity.py,sha256=CzTkbjGqrPoAbldaQOS_doesosDK9m
|
|
|
549
550
|
flock/workflow/flock_workflow.py,sha256=ZhAF82ewNRY2vvDjNpXT1D9lCVQsLOSMTaZVzdcogJc,9674
|
|
550
551
|
flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
|
|
551
552
|
flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
|
|
552
|
-
flock_core-0.5.
|
|
553
|
-
flock_core-0.5.
|
|
554
|
-
flock_core-0.5.
|
|
555
|
-
flock_core-0.5.
|
|
556
|
-
flock_core-0.5.
|
|
553
|
+
flock_core-0.5.0b12.dist-info/METADATA,sha256=fBKCp1I_POFjnjH9asV0k41GmmafLl4foVGOGcb4RpI,10018
|
|
554
|
+
flock_core-0.5.0b12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
555
|
+
flock_core-0.5.0b12.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
|
|
556
|
+
flock_core-0.5.0b12.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
557
|
+
flock_core-0.5.0b12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|