flock-core 0.4.0b33__py3-none-any.whl → 0.4.0b35__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.

Files changed (48) hide show
  1. flock/__init__.py +27 -5
  2. flock/core/api/main.py +138 -39
  3. flock/core/util/spliter.py +139 -54
  4. flock/webapp/__init__.py +1 -0
  5. flock/webapp/app/__init__.py +0 -0
  6. flock/webapp/app/api/__init__.py +0 -0
  7. flock/webapp/app/api/agent_management.py +270 -0
  8. flock/webapp/app/api/execution.py +173 -0
  9. flock/webapp/app/api/flock_management.py +102 -0
  10. flock/webapp/app/api/registry_viewer.py +30 -0
  11. flock/webapp/app/config.py +9 -0
  12. flock/webapp/app/main.py +571 -0
  13. flock/webapp/app/models_ui.py +7 -0
  14. flock/webapp/app/services/__init__.py +0 -0
  15. flock/webapp/app/services/flock_service.py +291 -0
  16. flock/webapp/app/utils.py +85 -0
  17. flock/webapp/run.py +30 -0
  18. flock/webapp/static/css/custom.css +527 -0
  19. flock/webapp/templates/base.html +98 -0
  20. flock/webapp/templates/flock_editor.html +17 -0
  21. flock/webapp/templates/index.html +12 -0
  22. flock/webapp/templates/partials/_agent_detail_form.html +97 -0
  23. flock/webapp/templates/partials/_agent_list.html +24 -0
  24. flock/webapp/templates/partials/_agent_manager_view.html +15 -0
  25. flock/webapp/templates/partials/_agent_tools_checklist.html +14 -0
  26. flock/webapp/templates/partials/_create_flock_form.html +52 -0
  27. flock/webapp/templates/partials/_dashboard_flock_detail.html +18 -0
  28. flock/webapp/templates/partials/_dashboard_flock_file_list.html +17 -0
  29. flock/webapp/templates/partials/_dashboard_flock_properties_preview.html +29 -0
  30. flock/webapp/templates/partials/_dashboard_upload_flock_form.html +17 -0
  31. flock/webapp/templates/partials/_dynamic_input_form_content.html +22 -0
  32. flock/webapp/templates/partials/_execution_form.html +48 -0
  33. flock/webapp/templates/partials/_execution_view_container.html +19 -0
  34. flock/webapp/templates/partials/_flock_file_list.html +24 -0
  35. flock/webapp/templates/partials/_flock_properties_form.html +51 -0
  36. flock/webapp/templates/partials/_flock_upload_form.html +17 -0
  37. flock/webapp/templates/partials/_load_manage_view.html +88 -0
  38. flock/webapp/templates/partials/_registry_table.html +25 -0
  39. flock/webapp/templates/partials/_registry_viewer_content.html +47 -0
  40. flock/webapp/templates/partials/_results_display.html +35 -0
  41. flock/webapp/templates/partials/_sidebar.html +63 -0
  42. flock/webapp/templates/partials/_structured_data_view.html +40 -0
  43. flock/webapp/templates/registry_viewer.html +84 -0
  44. {flock_core-0.4.0b33.dist-info → flock_core-0.4.0b35.dist-info}/METADATA +1 -1
  45. {flock_core-0.4.0b33.dist-info → flock_core-0.4.0b35.dist-info}/RECORD +48 -8
  46. {flock_core-0.4.0b33.dist-info → flock_core-0.4.0b35.dist-info}/WHEEL +0 -0
  47. {flock_core-0.4.0b33.dist-info → flock_core-0.4.0b35.dist-info}/entry_points.txt +0 -0
  48. {flock_core-0.4.0b33.dist-info → flock_core-0.4.0b35.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,47 @@
1
+ <article>
2
+ <header>
3
+ <h2>Flock Registry Viewer</h2>
4
+ <p>Browse items registered with the Flock framework.</p>
5
+ </header>
6
+
7
+ <nav>
8
+ <ul role="group">
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)">
11
+ View Types
12
+ </button>
13
+ </li>
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)">
16
+ View Tools/Callables
17
+ </button>
18
+ </li>
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)">
21
+ View Components
22
+ </button>
23
+ </li>
24
+ </ul>
25
+ </nav>
26
+
27
+ <div id="registry-loading" class="htmx-indicator" style="text-align: center; margin-top: 1rem;">
28
+ <progress></progress> Loading...
29
+ </div>
30
+
31
+ <div id="registry-table-container" style="margin-top: 1.5rem;">
32
+ <p>Select a category above to view registered items.</p>
33
+ </div>
34
+ </article>
35
+
36
+ <script>
37
+ // Make sure this script is included or available globally
38
+ function setActiveButton(clickedButton) {
39
+ const buttons = clickedButton.closest('ul[role="group"]').querySelectorAll('button');
40
+ buttons.forEach(button => {
41
+ button.classList.remove('primary');
42
+ button.classList.add('outline');
43
+ });
44
+ clickedButton.classList.remove('outline');
45
+ clickedButton.classList.add('primary');
46
+ }
47
+ </script>
@@ -0,0 +1,35 @@
1
+ {% from "partials/_structured_data_view.html" import render_value %}
2
+
3
+ <article id="results-display-content" x-data="{ viewMode: 'structured' }">
4
+ <header class="grid">
5
+ <h5 style="margin-bottom: 0;">Execution Result</h5>
6
+ <div style="text-align: right;">
7
+ <button role="button" class="outline contrast" @click="viewMode = 'structured'" :aria-pressed="viewMode === 'structured'">Structured</button>
8
+ <button role="button" class="outline contrast" @click="viewMode = 'json'" :aria-pressed="viewMode === 'json'">Raw JSON</button>
9
+ </div>
10
+ </header>
11
+
12
+ <div x-show="viewMode === 'json'">
13
+ {% if result_data is string %}
14
+ <p class="error" style="white-space: pre-wrap;">{{ result_data }}</p>
15
+ {% elif result_data %}
16
+ <pre><code style="word-break: break-all; white-space: pre-wrap;">{{ result_data | tojson(indent=2) }}</code></pre>
17
+ {% else %}
18
+ <p>No results to display yet.</p>
19
+ {% endif %}
20
+ </div>
21
+
22
+ <div x-show="viewMode === 'structured'">
23
+ {% if result_data is string %}
24
+ <p class="error" style="white-space: pre-wrap;">{{ result_data }}</p>
25
+ {% elif result_data is mapping %}
26
+ {# Call our new macro for structured display #}
27
+ {{ render_value(result_data) }}
28
+ {% elif result_data %}
29
+ <p>Structured view not available for this result type (not a dictionary).</p>
30
+ <pre><code>{{ result_data | tojson(indent=2) }}</code></pre>
31
+ {% else %}
32
+ <p>No results to display yet.</p>
33
+ {% endif %}
34
+ </div>
35
+ </article>
@@ -0,0 +1,63 @@
1
+ <nav>
2
+ {% if ui_mode == 'standalone' %}
3
+ <h5>Manage Flocks</h5>
4
+ <ul>
5
+ <li>
6
+ <button hx-get="/ui/htmx/load-flock-view?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
7
+ hx-push-url="/?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
8
+ class="contrast {% if request.url.path == '/' or request.url.path == '/ui/htmx/load-flock-view' %}active-nav{% endif %}">
9
+ <i class="fas fa-folder-open"></i> Load Files
10
+ </button>
11
+ </li>
12
+ <li>
13
+ <button hx-get="/ui/htmx/create-flock-form?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
14
+ hx-push-url="/ui/create?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
15
+ class="contrast {% if request.url.path == '/ui/create' %}active-nav{% endif %}">
16
+ <i class="fas fa-plus-circle"></i> Create New Flock
17
+ </button>
18
+ </li>
19
+ </ul>
20
+ {% endif %}
21
+
22
+ {% if current_flock %}
23
+ <hr>
24
+ <h5>Current Flock</h5>
25
+ <ul>
26
+ <li>
27
+ <button hx-get="/api/flocks/htmx/flock-properties-form?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
28
+ hx-push-url="/ui/editor/properties?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
29
+ class="{% if request.url.path == '/ui/editor/properties' %}active-nav{% endif %}">
30
+ <i class="fas fa-cog"></i> Properties
31
+ </button>
32
+ </li>
33
+ <li>
34
+ <button hx-get="/ui/htmx/agent-manager-view?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
35
+ hx-push-url="/ui/editor/agents?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
36
+ class="{% if request.url.path == '/ui/editor/agents' %}active-nav{% endif %}">
37
+ <i class="fas fa-robot"></i> Agents ({{ current_flock.agents|length }})
38
+ </button>
39
+ </li>
40
+ <li>
41
+ <button hx-get="/ui/htmx/execution-view-container?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
42
+ hx-push-url="/ui/editor/execute?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
43
+ class="{% if request.url.path == '/ui/editor/execute' %}active-nav{% endif %}">
44
+ <i class="fas fa-play-circle"></i> Execute Flock
45
+ </button>
46
+ </li>
47
+ </ul>
48
+ {% endif %}
49
+
50
+ <hr>
51
+ <h5>Tools</h5>
52
+ <ul>
53
+ <li>
54
+ <button hx-get="/ui/htmx/registry-viewer?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
55
+ hx-push-url="/ui/registry?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
56
+ class="contrast {% if request.url.path == '/ui/registry' %}active-nav{% endif %}">
57
+ <i class="fas fa-book"></i> View Registry
58
+ </button>
59
+ </li>
60
+ </ul>
61
+ <div id="content-loading-indicator-main" class="htmx-indicator" style="text-align:center; padding:1rem;"><progress
62
+ indeterminate></progress></div>
63
+ </nav>
@@ -0,0 +1,40 @@
1
+ {% macro render_value(value, level=0) %}
2
+ {% if value is mapping %}
3
+ {% if not value %}
4
+ <em style="color: var(--pico-muted-color);">(Empty Dictionary)</em>
5
+ {% else %}
6
+ <table class="structured-table level-{{ level }}" style="margin-left: {{ level * 20 }}px; margin-bottom: 0.5em; border-collapse: collapse; width: auto;">
7
+ <tbody>
8
+ {% for k, v in value.items() %}
9
+ <tr style="border-bottom: 1px solid var(--pico-muted-border-color);">
10
+ <td style="font-weight: bold; padding: 0.25em 0.5em; vertical-align: top; border-right: 1px solid var(--pico-muted-border-color); width: 30%;">{{ k }}</td>
11
+ <td style="padding: 0.25em 0.5em; vertical-align: top;">{{ render_value(v, level + 1) }}</td>
12
+ </tr>
13
+ {% endfor %}
14
+ </tbody>
15
+ </table>
16
+ {% endif %}
17
+ {% elif value is iterable and value is not string %}
18
+ {% if not value %}
19
+ <em style="color: var(--pico-muted-color);">(Empty List)</em>
20
+ {% else %}
21
+ <ul style="margin-left: {{ level * 20 }}px; padding-left: 1em; list-style-type: disc; margin-bottom:0.5em;">
22
+ {% for item in value %}
23
+ <li>{{ render_value(item, level + 1) }}</li>
24
+ {% endfor %}
25
+ </ul>
26
+ {% endif %}
27
+ {% elif value is boolean %}
28
+ <code style="color: {{ '#82CD20' if value else '#D83020' }}; font-weight:bold;">{{ value }}</code>
29
+ {% elif value is number %}
30
+ <code style="color: #20A0D8;">{{ value }}</code>
31
+ {% elif value is none %}
32
+ <em style="color: var(--pico-muted-color);">None</em>
33
+ {% else %}
34
+ {# Apply pre-wrap for multi-line strings #}
35
+ <span style="white-space: pre-wrap; word-break: break-word;">{{ value }}</span>
36
+ {% endif %}
37
+ {% endmacro %}
38
+
39
+ {# Main entry point for this partial, assuming result_data is in context #}
40
+ {{ render_value(result_data) }}
@@ -0,0 +1,84 @@
1
+ {% extends "base.html" %}
2
+
3
+ {% block title %}Flock UI - Registry Viewer{% endblock %}
4
+
5
+ {% block content %}
6
+ <article>
7
+ <header>
8
+ <h2>Flock Registry Viewer</h2>
9
+ <p>Browse items registered with the Flock framework.</p>
10
+ </header>
11
+
12
+ <nav>
13
+ <ul role="group">
14
+ <li>
15
+ <button role="button"
16
+ class="outline"
17
+ hx-get="/api/registry/htmx/type/table"
18
+ hx-target="#registry-table-container"
19
+ hx-indicator="#registry-loading"
20
+ hx-on:click="setActiveButton(this)">
21
+ View Types
22
+ </button>
23
+ </li>
24
+ <li>
25
+ <button role="button"
26
+ class="outline"
27
+ hx-get="/api/registry/htmx/tool/table"
28
+ hx-target="#registry-table-container"
29
+ hx-indicator="#registry-loading"
30
+ hx-on:click="setActiveButton(this)">
31
+ View Tools/Callables
32
+ </button>
33
+ </li>
34
+ <li>
35
+ <button role="button"
36
+ class="outline"
37
+ hx-get="/api/registry/htmx/component/table"
38
+ hx-target="#registry-table-container"
39
+ hx-indicator="#registry-loading"
40
+ hx-on:click="setActiveButton(this)">
41
+ View Components
42
+ </button>
43
+ </li>
44
+ </ul>
45
+ </nav>
46
+
47
+ <div id="registry-loading" class="htmx-indicator" style="text-align: center; margin-top: 1rem;">
48
+ <progress></progress> Loading...
49
+ </div>
50
+
51
+ <div id="registry-table-container" style="margin-top: 1.5rem;">
52
+ <p>Select a category above to view registered items.</p>
53
+ </div>
54
+
55
+ <footer style="margin-top: 2rem;">
56
+ <a href="/ui/editor" role="button" class="secondary contrast">Back to Editor</a>
57
+ </footer>
58
+ </article>
59
+
60
+ <script>
61
+ function setActiveButton(clickedButton) {
62
+ // Get all buttons in the group
63
+ const buttons = clickedButton.closest('ul[role="group"]').querySelectorAll('button');
64
+ // Remove 'primary' (or any active class) and add 'outline' to all
65
+ buttons.forEach(button => {
66
+ button.classList.remove('primary'); // Assuming 'primary' is your active class
67
+ button.classList.add('outline');
68
+ });
69
+ // Add 'primary' and remove 'outline' from the clicked button
70
+ clickedButton.classList.remove('outline');
71
+ clickedButton.classList.add('primary'); // Use Pico's primary button style for active
72
+ }
73
+
74
+ // Optional: Set the first button as active on initial load,
75
+ // or if you want to default to loading "Types"
76
+ document.addEventListener('DOMContentLoaded', function() {
77
+ const firstButton = document.querySelector('nav ul[role="group"] button');
78
+ if (firstButton) {
79
+ // setActiveButton(firstButton); // Uncomment if you want a default active button
80
+ // htmx.trigger(firstButton, 'click'); // Uncomment to auto-load Types on page load
81
+ }
82
+ });
83
+ </script>
84
+ {% endblock %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flock-core
3
- Version: 0.4.0b33
3
+ Version: 0.4.0b35
4
4
  Summary: Declarative LLM Orchestration at Scale
5
5
  Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
6
6
  License-File: LICENSE
@@ -1,4 +1,4 @@
1
- flock/__init__.py,sha256=O_8dFcANbbrAMHVUUYXKVj6vzYTOKh4cDO5pEaEXFEs,4532
1
+ flock/__init__.py,sha256=9naWLILeSMle-tqsht5qhSL3-8JL4cVCay2GeL-k9tI,4966
2
2
  flock/config.py,sha256=Nrip1Nn03KGVmRq2NYkuI-hJtnIVI1lHkurIrsPt7YI,1588
3
3
  flock/cli/config.py,sha256=5DvFLObOx3ObisHnc9JfnUBnK83y0CBsUQzXfxPZve0,138
4
4
  flock/cli/constants.py,sha256=ZyXtTW91P1hUMkbMwmOwp_JEL5e9-YkcuM3vHM5glP4,978
@@ -28,7 +28,7 @@ flock/core/flock_registry.py,sha256=Qcu9juUFNyDAOEsqVxauwVlWdfgKZrSzc8yT8JMiK-c,
28
28
  flock/core/flock_router.py,sha256=1OAXDsdaIIFApEfo6SRfFEDoTuGt3Si7n2MXiySEfis,2644
29
29
  flock/core/api/__init__.py,sha256=OKlhzDWZJfA6ddBwxQUmATY0TSzESsH032u00iVGvdA,228
30
30
  flock/core/api/endpoints.py,sha256=qQnJmtcYGkjdKtLllVpyJVjc-iZrvu5EEeVIryyt4tc,12987
31
- flock/core/api/main.py,sha256=glu9ThsYNTt35Ogjx732SGYJ9-aFftpvzLMQEJ7VuvQ,19189
31
+ flock/core/api/main.py,sha256=Z8XSHV9iJsVr5k_77GqOZrdc9Lr5CJZ_N3SfaPNlixE,23663
32
32
  flock/core/api/models.py,sha256=seqKuzhbN37nCNO7KrcJjI2mWuwiOKCLFcJcTPvTtag,3422
33
33
  flock/core/api/run_store.py,sha256=bFodJvVyWogzoezVy0cOoWWU3MdEBXf_6_5sBqCRWps,9227
34
34
  flock/core/api/runner.py,sha256=PjKQyMNawHm_N-X2uTUWBKAKBe7AEzNmRIGwQI6tUWw,1156
@@ -76,7 +76,7 @@ flock/core/util/file_path_utils.py,sha256=Odf7uU32C-x1KNighbNERSiMtkzW4h8laABIoF
76
76
  flock/core/util/hydrator.py,sha256=QJvCA8F4nkSP5akp3yg0cT6oaajOr1n7sldW5dCs6Lo,10733
77
77
  flock/core/util/input_resolver.py,sha256=KPoPSpklyCoiR2t5r6J6GJHegmPLFZ0YE126VcKBewM,4703
78
78
  flock/core/util/loader.py,sha256=j3q2qem5bFMP2SmMuYjb-ISxsNGNZd1baQmpvAnRUUk,2244
79
- flock/core/util/spliter.py,sha256=qGGbz2UN6v0nATymDzD_G656mWS9dXHrfQoore-lw9M,4027
79
+ flock/core/util/spliter.py,sha256=D-P4u3vdKQFyC4DltpCoX4PExXuOKnE-G5kBG_6H678,6770
80
80
  flock/evaluators/declarative/declarative_evaluator.py,sha256=q3qKHuKrj17mhaoOZuKh2HyVfiDBEEUk1Y1ZrejvggA,6328
81
81
  flock/evaluators/memory/memory_evaluator.py,sha256=ySwz7kcc8suXMJ7gKNSWThW8iOMlE8lUcUzEAHvv8rw,3559
82
82
  flock/evaluators/test/test_case_evaluator.py,sha256=3Emcoty0LOLLBIuPGxSpKphuZC9Fu1DTr1vbGg-hd0Q,1233
@@ -438,6 +438,46 @@ flock/themes/zenburn.toml,sha256=HBlDUROb1eaX7sTqhCMINukM9GTHdiN4rgHIJxU53jg,166
438
438
  flock/themes/zenburned.toml,sha256=UEmquBbcAO3Zj652XKUwCsNoC2iQSlIh-q5c6DH-7Kc,1664
439
439
  flock/themes/zenwritten-dark.toml,sha256=To5l6520_3UqAGiEumpzGWsHhXxqu9ThrMildXKgIO0,1669
440
440
  flock/themes/zenwritten-light.toml,sha256=G1iEheCPfBNsMTGaVpEVpDzYBHA_T-MV27rolUYolmE,1666
441
+ flock/webapp/__init__.py,sha256=YtRbbyciN3Z2oMB9fdXZuvM3e49R8m2mY5qHLDoapRA,37
442
+ flock/webapp/run.py,sha256=Fe57kY4pFtV_bfa3an1Qzr1JPMohTLr16bH19SYTZoU,758
443
+ flock/webapp/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
444
+ flock/webapp/app/config.py,sha256=KJzzXNuKiajuA6mopMLioTtmGeMOCUcgEDpHXEIstdQ,289
445
+ flock/webapp/app/main.py,sha256=bY2YKqNl_Atg6Hin83ZRhU71puVwrVQ9uRgR1qnete8,21968
446
+ flock/webapp/app/models_ui.py,sha256=vrEBLbhEp6FziAgBSFOLT1M7ckwadsTdT7qus5_NduE,329
447
+ flock/webapp/app/utils.py,sha256=RF8DMKKAj1XPmm4txUdo2OdswI1ATQ7cqUm6G9JFDzA,2942
448
+ flock/webapp/app/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
449
+ flock/webapp/app/api/agent_management.py,sha256=sV1lGmfujjiMumItVqkvFIgzolNzbSUExVjBsieesI8,9159
450
+ flock/webapp/app/api/execution.py,sha256=V-vjtd3lWCVADYj9o2aDx9sYdqT4qUEVoE7nCQppuaI,6875
451
+ flock/webapp/app/api/flock_management.py,sha256=nrPrXimTNYawV2n9iS_854KobTVU3MQJW8bEww9owmE,3516
452
+ flock/webapp/app/api/registry_viewer.py,sha256=IoInxJiRR0yFlecG_l2_eRc6l35RQQyEDMG9BcBkipY,1020
453
+ flock/webapp/app/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
454
+ flock/webapp/app/services/flock_service.py,sha256=52TjryxYT9nYadXTbwWnsyLFiqtKIwbdXm6L9aqPUyk,10294
455
+ flock/webapp/static/css/custom.css,sha256=Eu6GSlgmg6YiaBfpzwTqpum0miTbgeb7IlDPbDlKDAU,11722
456
+ flock/webapp/templates/base.html,sha256=PzkW-NrTnmLb5vUjUNsoWlvKTvUXQJqhn_IPugUwEYI,4340
457
+ flock/webapp/templates/flock_editor.html,sha256=tB17wRixXfzRDiZHQaDlxVk-s2GbpxB2y18B7FhbiLY,540
458
+ flock/webapp/templates/index.html,sha256=eK7s5Cnh63unqPwq9NGZGEKyvYwkhudfmSn9su3Ctyg,412
459
+ flock/webapp/templates/registry_viewer.html,sha256=gZM1MeefVBhCvTgNU8fzj0ZBRfbZQeobgyOo2WE31m4,3226
460
+ flock/webapp/templates/partials/_agent_detail_form.html,sha256=98GGampPxzNrhDvDq2w4qqSXPDwhWn8yBJ6IZZ0l2CI,5948
461
+ flock/webapp/templates/partials/_agent_list.html,sha256=wSE-C4oYKtFPJ54Ltdz7OtPel6r5mPb9IPb9h5_eVbk,1177
462
+ flock/webapp/templates/partials/_agent_manager_view.html,sha256=iP2Ftc0ztTF9HgpL9GTdugbo8xDlBXZ79vN6agqRel8,607
463
+ flock/webapp/templates/partials/_agent_tools_checklist.html,sha256=T60fb7OrJYHUw0hJLC_otskgvbH9dZXbv5klgWBkSWk,686
464
+ flock/webapp/templates/partials/_create_flock_form.html,sha256=xvm0UwSo6-eJAc_6ACVIdiH5z7Hec_Vt73c0qx6CzYw,2806
465
+ flock/webapp/templates/partials/_dashboard_flock_detail.html,sha256=c7srF0nL8ETmP0ATsIxF8MMHMtHVXJqWVzdrnu2i-1Q,1012
466
+ flock/webapp/templates/partials/_dashboard_flock_file_list.html,sha256=hevhRzK94tHJC6j8_iLc0ORCOb0wEYHCpRWecXB-5io,795
467
+ flock/webapp/templates/partials/_dashboard_flock_properties_preview.html,sha256=JbAl3sK-vtuejEL4MXN4a7xMZ79iW36NxWUVkD_Jh8k,1596
468
+ flock/webapp/templates/partials/_dashboard_upload_flock_form.html,sha256=lQxR75yLgeRdm1vSkpGGgkhhfQ5JQvu14jx1y-QZUAM,956
469
+ flock/webapp/templates/partials/_dynamic_input_form_content.html,sha256=WYr2M7Mb5vKITFhIVXXEHppRx9IjGew91yLo1_I9kkI,1230
470
+ flock/webapp/templates/partials/_execution_form.html,sha256=PHkHDUfLW1cET6qPquALjDgxjH1u5P6yAfabALgY7KE,2298
471
+ flock/webapp/templates/partials/_execution_view_container.html,sha256=hqa9o3aS3-GF4B8ULTjjT3f1OHR4vjpO5r5Xj8PemUk,761
472
+ flock/webapp/templates/partials/_flock_file_list.html,sha256=FjIxAqB0OxA0mQ8f2jBX1_M_AM5ea7gCA8PEjPpiZVc,1209
473
+ flock/webapp/templates/partials/_flock_properties_form.html,sha256=gELk9EP0yxWhhM7yicqfn_OJJoRSEvIyBeVE59tPwBE,2991
474
+ flock/webapp/templates/partials/_flock_upload_form.html,sha256=h2dIPwPeTg5dv_ubrZiwBXReF0NjzJ6eKSwwz7mbQQs,960
475
+ flock/webapp/templates/partials/_load_manage_view.html,sha256=z4k5CfTv0G9ZUIcrna4XPhJtgSspkbBnkxvi-0IXTpg,3668
476
+ flock/webapp/templates/partials/_registry_table.html,sha256=z4EW5G3DTknymBeSlpL2PZLcb2143P35upMnmHFfeJs,715
477
+ flock/webapp/templates/partials/_registry_viewer_content.html,sha256=c8-qlA0FT1dbKSLTzIHw1aBGsKUo5IHD47epgXFRKJs,1882
478
+ flock/webapp/templates/partials/_results_display.html,sha256=vuAbIdnG_7jzeHxeeoRvPqStD_7CJwXnyhvry_kMfLQ,1625
479
+ flock/webapp/templates/partials/_sidebar.html,sha256=_l2anCsUNy4U_HLCtc5uvhQDk5Ae38V5WN3FHeSTQrQ,3083
480
+ flock/webapp/templates/partials/_structured_data_view.html,sha256=KcPG96tJ1dxVy2mMyEBFv0My0osLEFr-Ume7IZc_W0c,2014
441
481
  flock/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
482
  flock/workflow/activities.py,sha256=Rcgcepa-RzaEjKo2aNuI14O_sX8ij0RrqeyPa0oSw8M,9910
443
483
  flock/workflow/agent_activities.py,sha256=NhBZscflEf2IMfSRa_pBM_TRP7uVEF_O0ROvWZ33eDc,963
@@ -445,8 +485,8 @@ flock/workflow/agent_execution_activity.py,sha256=Gy6FtuVAjf0NiUXmC3syS2eJpNQF4R
445
485
  flock/workflow/flock_workflow.py,sha256=iSUF_soFvWar0ffpkzE4irkDZRx0p4HnwmEBi_Ne2sY,9666
446
486
  flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
447
487
  flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
448
- flock_core-0.4.0b33.dist-info/METADATA,sha256=F55blOoGy7L3heUhWO4SE0TTHMj1fhARNB0WRI_vDQM,17125
449
- flock_core-0.4.0b33.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
450
- flock_core-0.4.0b33.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
451
- flock_core-0.4.0b33.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
452
- flock_core-0.4.0b33.dist-info/RECORD,,
488
+ flock_core-0.4.0b35.dist-info/METADATA,sha256=DjoUT_Fl8qRfPQATaywjU5XQKWjZXLrvgyAZdgsPLpw,17125
489
+ flock_core-0.4.0b35.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
490
+ flock_core-0.4.0b35.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
491
+ flock_core-0.4.0b35.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
492
+ flock_core-0.4.0b35.dist-info/RECORD,,