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

@@ -29,7 +29,7 @@ body.chat-page {
29
29
  padding: 1rem 1.5rem;
30
30
  display: flex;
31
31
  flex-direction: column;
32
- min-height: 60vh;
32
+ min-height: 0;
33
33
  gap: 1rem;
34
34
  background-color: rgba(0, 0, 0, 0.05);
35
35
  background-image:
@@ -118,7 +118,7 @@ body.chat-page {
118
118
  box-shadow: 0 0 0 2px rgba(var(--pico-primary-rgb, 0, 123, 255), 0.25);
119
119
  }
120
120
 
121
- #chat-form button {
121
+ #chat-container form button[type="submit"] {
122
122
  flex: 0 0 auto;
123
123
  min-width: auto;
124
124
  width: 150px; /* Wider send button */
@@ -132,7 +132,7 @@ body.chat-page {
132
132
  height: 3rem;
133
133
  }
134
134
 
135
- #chat-form button:hover {
135
+ #chat-container form button[type="submit"]:hover {
136
136
  background: var(--pico-primary-hover, var(--pico-primary));
137
137
  transform: translateY(-2px);
138
138
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
@@ -185,11 +185,11 @@ body.chat-page {
185
185
  ------------------------------------------------------------------------- */
186
186
  body:not(.chat-page) #chat-container,
187
187
  body:not(.chat-page) .chat-container {
188
- height: auto;
189
- min-height: 60vh;
190
- /* share same centering rules */
188
+ height: 100%;
189
+ min-height: 100%;
190
+ /* allow full width inside the main content area */
191
191
  width: 100%;
192
- max-width: 80%;
192
+ max-width: 100%;
193
193
  margin: 0 auto;
194
194
  }
195
195
 
@@ -225,3 +225,18 @@ body:not(.chat-page) .chat-settings-form .grid button:first-child {
225
225
  flex: 0 0 auto;
226
226
  width: auto;
227
227
  }
228
+
229
+ /* -------------------------------------------------------------------------
230
+ Container flex area to ensure chat-log grows/shrinks as needed
231
+ ------------------------------------------------------------------------- */
232
+ #chat-content-area {
233
+ display: flex;
234
+ flex-direction: column;
235
+ flex: 1 1 auto;
236
+ overflow: hidden;
237
+ }
238
+
239
+ /* Prevent double scrollbars when chat is embedded */
240
+ main.main-content:has(#chat-container) {
241
+ overflow: hidden;
242
+ }
@@ -32,7 +32,7 @@
32
32
 
33
33
  <body>
34
34
  <header class="top-header">
35
- <span><strong>🐧 Flock UI 🐤</strong></span>
35
+ <span><strong>🐧 Flock Playground 🐤</strong></span>
36
36
  <span id="header-flock-status-container" hx-get="/ui/htmx/header-flock-status?ui_mode={{ ui_mode }}"
37
37
  hx-trigger="load, flockLoaded from:body, flockCleared from:body" hx-swap="innerHTML">
38
38
  <small>Loading status...</small> {# Placeholder while loading #}
@@ -33,7 +33,13 @@
33
33
  <p><em>Loading chat…</em></p>
34
34
  </div>
35
35
 
36
- <form id="chat-form" hx-post="/chat/send" hx-target="#chat-log" hx-swap="innerHTML" hx-on::after-request="this.reset()">
36
+ <form id="chat-form-standalone"
37
+ hx-post="/chat/send"
38
+ hx-target="#chat-log"
39
+ hx-swap="innerHTML"
40
+ hx-disabled-elt="input[name='message'], button[type='submit']"
41
+ hx-on::before-request="htmx.find('#chat-form-standalone button[type=\'submit\']').textContent = 'Sending...'"
42
+ hx-on::after-request="htmx.find('#chat-form-standalone button[type=\'submit\']').textContent = 'Send'; this.reset();">
37
43
  <input type="text" name="message" placeholder="Type a message…" required autofocus>
38
44
  <button type="submit">Send</button>
39
45
  </form>
@@ -2,7 +2,13 @@
2
2
  <div id="chat-log" hx-get="/chat/messages" hx-trigger="load" hx-swap="innerHTML">
3
3
  <p><em>Loading chat…</em></p>
4
4
  </div>
5
- <form id="chat-form" class="chat-form" hx-post="/chat/send" hx-target="#chat-log" hx-swap="innerHTML" hx-on::after-request="this.reset()">
5
+ <form id="chat-form-embedded" class="chat-form"
6
+ hx-post="/chat/send"
7
+ hx-target="#chat-log"
8
+ hx-swap="innerHTML"
9
+ hx-disabled-elt="input[name='message'], button[type='submit']"
10
+ hx-on::before-request="htmx.find('#chat-form-embedded button[type=\'submit\']').textContent = 'Sending...'"
11
+ hx-on::after-request="htmx.find('#chat-form-embedded button[type=\'submit\']').textContent = 'Send'; this.reset();">
6
12
  <input type="text" name="message" placeholder="Type a message…" required>
7
13
  <button type="submit">Send</button>
8
14
  </form>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flock-core
3
- Version: 0.4.0b45
3
+ Version: 0.4.0b46
4
4
  Summary: Declarative LLM Orchestration at Scale
5
5
  Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
6
6
  License-File: LICENSE
@@ -458,13 +458,13 @@ flock/webapp/app/api/registry_viewer.py,sha256=IoInxJiRR0yFlecG_l2_eRc6l35RQQyED
458
458
  flock/webapp/app/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
459
459
  flock/webapp/app/services/flock_service.py,sha256=qceWNpGet-5VT95q5ZMg2ETFryC2iitfClVuxlE3wCc,13578
460
460
  flock/webapp/app/templates/theme_mapper.html,sha256=z8ZY7nmk6PiUGzD_-px7wSXcEnuBM121rMq6u-2oaCo,14249
461
- flock/webapp/static/css/chat.css,sha256=-31slD1wZ4j5ZND7dsv8dkE3xTqnMvoP3IajT5dw8bE,5546
461
+ flock/webapp/static/css/chat.css,sha256=eOpLcn3vSB5NBITJXwr4EUvXwWMozNja-y7754u0MY0,6069
462
462
  flock/webapp/static/css/components.css,sha256=WnicEHy3ptPzggKmyG9_oZp3X30EMJBUW3KEXaiUCUE,6018
463
463
  flock/webapp/static/css/header.css,sha256=E9MgItZCk34S65NfMJ001ZsRz4oyFSJex8KvINMtCn0,1043
464
464
  flock/webapp/static/css/layout.css,sha256=ocDd7dmezdQzNAQDuQSv1xZ8-pcbNgYLUYJB1SKcfvw,1526
465
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
466
+ flock/webapp/templates/base.html,sha256=013TyI0TvzyvjnIhEr3ZgJYSAIVQK2ayPAngdi0hF18,4937
467
+ flock/webapp/templates/chat.html,sha256=2fbuvKZyYiFZXQR-q7sHeYJtdjZML0wBuOmwlCiaK0M,2717
468
468
  flock/webapp/templates/chat_settings.html,sha256=nYz6ihYAUA9zN-Jru565QNl8_eJdoLMWC2LdZJtZ-20,862
469
469
  flock/webapp/templates/flock_editor.html,sha256=ysDExf9zMj4SMsSXZUpCtG9EjIv8VJ5xL4IJQOMlb7o,542
470
470
  flock/webapp/templates/index.html,sha256=eK7s5Cnh63unqPwq9NGZGEKyvYwkhudfmSn9su3Ctyg,412
@@ -473,7 +473,7 @@ flock/webapp/templates/partials/_agent_detail_form.html,sha256=oLz17lmv8s-DI9lOx
473
473
  flock/webapp/templates/partials/_agent_list.html,sha256=comYjOeUxQvlJzS-3D4OruJKlhC3uhCgo-X-nqiOhkA,1037
474
474
  flock/webapp/templates/partials/_agent_manager_view.html,sha256=oUJ-t2Mk3o4xjQ_HtHz0glgaHM8eqZpPB4i24ToJiJ8,2565
475
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
476
+ flock/webapp/templates/partials/_chat_container.html,sha256=n4MzCHAYvTw7rpINIW1dw7LgMSC0ifRORTU47We0p4s,804
477
477
  flock/webapp/templates/partials/_chat_messages.html,sha256=RuMUglxdTjYyTs_P9dCwfX_5dEVO3iH6r8V203kdTpU,593
478
478
  flock/webapp/templates/partials/_chat_settings_form.html,sha256=-yokUC05sAjHbLSHSYhTzhdJA5JDr0SRemBYcAQ2qwc,3263
479
479
  flock/webapp/templates/partials/_create_flock_form.html,sha256=nQVbuTWqOQ59q5zyGXkuBixikvCkaZIPVW8CRF6wCm0,2806
@@ -506,8 +506,8 @@ flock/workflow/agent_execution_activity.py,sha256=Gy6FtuVAjf0NiUXmC3syS2eJpNQF4R
506
506
  flock/workflow/flock_workflow.py,sha256=iSUF_soFvWar0ffpkzE4irkDZRx0p4HnwmEBi_Ne2sY,9666
507
507
  flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
508
508
  flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
509
- flock_core-0.4.0b45.dist-info/METADATA,sha256=QiS1hrIWr8i7cjemU4-Z3myIJWgjGHg7ecgb1w7upTE,17125
510
- flock_core-0.4.0b45.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
511
- flock_core-0.4.0b45.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
512
- flock_core-0.4.0b45.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
513
- flock_core-0.4.0b45.dist-info/RECORD,,
509
+ flock_core-0.4.0b46.dist-info/METADATA,sha256=vG3wZwb_mlMNL9DhujdpQYCj1nEw3HTH5BnjGUH_NTA,17125
510
+ flock_core-0.4.0b46.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
511
+ flock_core-0.4.0b46.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
512
+ flock_core-0.4.0b46.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
513
+ flock_core-0.4.0b46.dist-info/RECORD,,