flock-core 0.4.518__py3-none-any.whl → 0.4.520__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/webapp/templates/partials/_settings_theme_content.html +1 -2
- flock/webapp/templates/partials/_theme_preview.html +17 -4
- {flock_core-0.4.518.dist-info → flock_core-0.4.520.dist-info}/METADATA +5 -5
- {flock_core-0.4.518.dist-info → flock_core-0.4.520.dist-info}/RECORD +7 -7
- {flock_core-0.4.518.dist-info → flock_core-0.4.520.dist-info}/WHEEL +0 -0
- {flock_core-0.4.518.dist-info → flock_core-0.4.520.dist-info}/entry_points.txt +0 -0
- {flock_core-0.4.518.dist-info → flock_core-0.4.520.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
<article>
|
|
2
2
|
<h3>Theme Switcher</h3>
|
|
3
3
|
<div style="display:flex; gap:0.5rem; flex-wrap:wrap; align-items:center;">
|
|
4
|
-
<label for="theme-select" style="margin:0;">Select Theme:</label>
|
|
5
|
-
<select id="theme-select" name="theme" hx-get="{{ url_for('htmx_theme_preview') }}" hx-target="#theme-preview" hx-trigger="load, change" hx-include="#theme-select">
|
|
4
|
+
<label for="theme-select" style="margin:0;">Select Theme:</label> <select id="theme-select" name="theme" hx-get="{{ url_for('htmx_theme_preview') }}" hx-target="#theme-preview" hx-trigger="load, change" hx-include="#theme-select" hx-swap="innerHTML">
|
|
6
5
|
{% for t in themes %}
|
|
7
6
|
<option value="{{ t }}" {% if t == current_theme %}selected{% endif %}>{{ t }}</option>
|
|
8
7
|
{% endfor %}
|
|
@@ -1,11 +1,24 @@
|
|
|
1
1
|
{% if css_vars_str %}
|
|
2
|
-
<
|
|
3
|
-
{
|
|
4
|
-
|
|
2
|
+
<script>
|
|
3
|
+
(function() {
|
|
4
|
+
// Remove any existing theme preview
|
|
5
|
+
var existingPreview = document.getElementById('theme-preview-css');
|
|
6
|
+
if (existingPreview) {
|
|
7
|
+
existingPreview.remove();
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// Inject new theme preview CSS
|
|
11
|
+
var style = document.createElement('style');
|
|
12
|
+
style.id = 'theme-preview-css';
|
|
13
|
+
style.textContent = `{{ css_vars_str | safe }}`;
|
|
14
|
+
document.head.appendChild(style);
|
|
15
|
+
})();
|
|
16
|
+
</script>
|
|
5
17
|
{% endif %}
|
|
6
18
|
<article style="border:1px solid var(--pico-border-color); padding:1rem; border-radius:8px;">
|
|
7
19
|
<hgroup>
|
|
8
20
|
<h3>Theme Preview: {{ theme_name }}</h3>
|
|
21
|
+
<p><small>Preview applied globally - navigate away or refresh to revert</small></p>
|
|
9
22
|
</hgroup>
|
|
10
23
|
<div class="grid" style="grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap:0.5rem;">
|
|
11
24
|
{% for color_name, color_value in main_colors %}
|
|
@@ -20,4 +33,4 @@
|
|
|
20
33
|
<button class="secondary">Secondary</button>
|
|
21
34
|
<button class="contrast">Contrast</button>
|
|
22
35
|
<p>Sample text with <a href="#">link</a>, <mark>mark</mark>, <code>code</code>.</p>
|
|
23
|
-
</article>
|
|
36
|
+
</article>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flock-core
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.520
|
|
4
4
|
Summary: Declarative LLM Orchestration at Scale
|
|
5
5
|
Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -45,7 +45,7 @@ Requires-Dist: temporalio>=1.9.0
|
|
|
45
45
|
Requires-Dist: thefuzz>=0.22.1
|
|
46
46
|
Requires-Dist: tiktoken>=0.8.0
|
|
47
47
|
Requires-Dist: toml>=0.10.2
|
|
48
|
-
Requires-Dist: tqdm>=4.
|
|
48
|
+
Requires-Dist: tqdm>=4.60.1
|
|
49
49
|
Requires-Dist: uvicorn>=0.34.0
|
|
50
50
|
Requires-Dist: wd-di>=0.2.14
|
|
51
51
|
Requires-Dist: websockets>=15.0.1
|
|
@@ -55,7 +55,7 @@ Requires-Dist: azure-search-documents>=11.5.2; extra == 'all'
|
|
|
55
55
|
Requires-Dist: azure-storage-blob>=12.25.1; extra == 'all'
|
|
56
56
|
Requires-Dist: chromadb>=0.6.3; extra == 'all'
|
|
57
57
|
Requires-Dist: datasets>=3.2.0; extra == 'all'
|
|
58
|
-
Requires-Dist: docling>=2.
|
|
58
|
+
Requires-Dist: docling>=2.34.0; extra == 'all'
|
|
59
59
|
Requires-Dist: duckduckgo-search>=7.3.2; extra == 'all'
|
|
60
60
|
Requires-Dist: markdownify>=0.14.1; extra == 'all'
|
|
61
61
|
Requires-Dist: matplotlib>=3.10.0; extra == 'all'
|
|
@@ -70,7 +70,7 @@ Requires-Dist: azure-identity>=1.23.0; extra == 'all-tools'
|
|
|
70
70
|
Requires-Dist: azure-search-documents>=11.5.2; extra == 'all-tools'
|
|
71
71
|
Requires-Dist: azure-storage-blob>=12.25.1; extra == 'all-tools'
|
|
72
72
|
Requires-Dist: docker>=7.1.0; extra == 'all-tools'
|
|
73
|
-
Requires-Dist: docling>=2.
|
|
73
|
+
Requires-Dist: docling>=2.34.0; extra == 'all-tools'
|
|
74
74
|
Requires-Dist: duckduckgo-search>=7.3.2; extra == 'all-tools'
|
|
75
75
|
Requires-Dist: markdownify>=0.14.1; extra == 'all-tools'
|
|
76
76
|
Requires-Dist: nltk>=3.9.1; extra == 'all-tools'
|
|
@@ -80,7 +80,7 @@ Requires-Dist: azure-identity>=1.23.0; extra == 'azure-tools'
|
|
|
80
80
|
Requires-Dist: azure-search-documents>=11.5.2; extra == 'azure-tools'
|
|
81
81
|
Requires-Dist: azure-storage-blob>=12.25.1; extra == 'azure-tools'
|
|
82
82
|
Provides-Extra: basic-tools
|
|
83
|
-
Requires-Dist: docling>=2.
|
|
83
|
+
Requires-Dist: docling>=2.34.0; extra == 'basic-tools'
|
|
84
84
|
Requires-Dist: duckduckgo-search>=7.3.2; extra == 'basic-tools'
|
|
85
85
|
Requires-Dist: markdownify>=0.14.1; extra == 'basic-tools'
|
|
86
86
|
Requires-Dist: tavily-python>=0.5.0; extra == 'basic-tools'
|
|
@@ -548,13 +548,13 @@ flock/webapp/templates/partials/_registry_table.html,sha256=z4EW5G3DTknymBeSlpL2
|
|
|
548
548
|
flock/webapp/templates/partials/_registry_viewer_content.html,sha256=FBqP1YRL-rfE6YpgtWnpyFqATUhVKUHTGvF6QbIOKrw,1968
|
|
549
549
|
flock/webapp/templates/partials/_results_display.html,sha256=1UJvCeyJTPxuJYUcGUM8O8uhNvCxxOfxpCjC-PCr80U,5268
|
|
550
550
|
flock/webapp/templates/partials/_settings_env_content.html,sha256=16h1ppTGNY7wNkxQkaNhouTNN22tlw_u5rBk6cdhzFk,597
|
|
551
|
-
flock/webapp/templates/partials/_settings_theme_content.html,sha256=
|
|
551
|
+
flock/webapp/templates/partials/_settings_theme_content.html,sha256=TPkqLyXJHwWOOgjLVURLpHA2JJRncZGf78Q6olIZIJc,852
|
|
552
552
|
flock/webapp/templates/partials/_settings_view.html,sha256=f2h9jnDv8-JRkDzsbk_1oqAGoCBrMwL0Zp4-ENSAdwY,1375
|
|
553
553
|
flock/webapp/templates/partials/_share_chat_link_snippet.html,sha256=N83lNAbkZiDfzZYviKwURPGGErSZhRlxnNzUqXsB7lE,793
|
|
554
554
|
flock/webapp/templates/partials/_share_link_snippet.html,sha256=6en9lOdtu8FwVbtmkJzSQpHQ1WFXHnCbe84FDgAEF3U,1533
|
|
555
555
|
flock/webapp/templates/partials/_sidebar.html,sha256=yfhEcF3xKI5j1c3iq46mU8mmPvgyvCHXe6xT7vsE6KM,4984
|
|
556
556
|
flock/webapp/templates/partials/_structured_data_view.html,sha256=TEaXcMGba9ruxEc_MLxygIO1qWcuSTo1FnosFtGSKWI,2101
|
|
557
|
-
flock/webapp/templates/partials/_theme_preview.html,sha256=
|
|
557
|
+
flock/webapp/templates/partials/_theme_preview.html,sha256=THeMYTXzgzHJxzWqaTtUhmJyBZT3saLRAa6wzZa4qnk,1347
|
|
558
558
|
flock/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
559
559
|
flock/workflow/activities.py,sha256=fyvefDOWZhhj5gCYIHR9Aqm2DbE6XI6-sXESFnnYRuc,9911
|
|
560
560
|
flock/workflow/agent_activities.py,sha256=NhBZscflEf2IMfSRa_pBM_TRP7uVEF_O0ROvWZ33eDc,963
|
|
@@ -562,8 +562,8 @@ flock/workflow/agent_execution_activity.py,sha256=Gy6FtuVAjf0NiUXmC3syS2eJpNQF4R
|
|
|
562
562
|
flock/workflow/flock_workflow.py,sha256=iSUF_soFvWar0ffpkzE4irkDZRx0p4HnwmEBi_Ne2sY,9666
|
|
563
563
|
flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
|
|
564
564
|
flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
|
|
565
|
-
flock_core-0.4.
|
|
566
|
-
flock_core-0.4.
|
|
567
|
-
flock_core-0.4.
|
|
568
|
-
flock_core-0.4.
|
|
569
|
-
flock_core-0.4.
|
|
565
|
+
flock_core-0.4.520.dist-info/METADATA,sha256=0dDV8IbiheDnn0O-Tm6c0poo7h7kAq7U4vMzcrRk8dc,22786
|
|
566
|
+
flock_core-0.4.520.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
567
|
+
flock_core-0.4.520.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
|
|
568
|
+
flock_core-0.4.520.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
569
|
+
flock_core-0.4.520.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|