flock-core 0.4.0b44__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.
- flock/cli/manage_agents.py +19 -4
- flock/core/api/endpoints.py +1 -1
- flock/core/flock_agent.py +31 -0
- flock/webapp/static/css/chat.css +22 -7
- flock/webapp/templates/base.html +1 -1
- flock/webapp/templates/chat.html +7 -1
- flock/webapp/templates/partials/_agent_detail_form.html +4 -3
- flock/webapp/templates/partials/_agent_list.html +1 -1
- flock/webapp/templates/partials/_chat_container.html +7 -1
- {flock_core-0.4.0b44.dist-info → flock_core-0.4.0b46.dist-info}/METADATA +1 -1
- {flock_core-0.4.0b44.dist-info → flock_core-0.4.0b46.dist-info}/RECORD +14 -14
- {flock_core-0.4.0b44.dist-info → flock_core-0.4.0b46.dist-info}/WHEEL +0 -0
- {flock_core-0.4.0b44.dist-info → flock_core-0.4.0b46.dist-info}/entry_points.txt +0 -0
- {flock_core-0.4.0b44.dist-info → flock_core-0.4.0b46.dist-info}/licenses/LICENSE +0 -0
flock/cli/manage_agents.py
CHANGED
|
@@ -5,6 +5,7 @@ including listing, adding, editing, and removing agents.
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import questionary
|
|
8
|
+
from rich.box import Box
|
|
8
9
|
from rich.console import Console
|
|
9
10
|
from rich.panel import Panel
|
|
10
11
|
from rich.table import Table
|
|
@@ -104,9 +105,11 @@ def _list_agents(flock: Flock):
|
|
|
104
105
|
model = agent.model or flock.model or "Default"
|
|
105
106
|
|
|
106
107
|
# Format description (truncate if too long)
|
|
107
|
-
description =
|
|
108
|
-
if len(description) > 30:
|
|
108
|
+
description = agent.resolved_description
|
|
109
|
+
if description and len(description) > 30:
|
|
109
110
|
description = description[:27] + "..."
|
|
111
|
+
elif not description:
|
|
112
|
+
description = "N/A"
|
|
110
113
|
|
|
111
114
|
# Format input/output (truncate if too long)
|
|
112
115
|
input_str = str(agent.input)
|
|
@@ -156,13 +159,13 @@ def _view_agent_details(agent: FlockAgent):
|
|
|
156
159
|
)
|
|
157
160
|
|
|
158
161
|
# Create a panel for each section
|
|
159
|
-
basic_info = Table(show_header=False, box=
|
|
162
|
+
basic_info = Table(show_header=False, box=Box.ROUNDED, padding=(0, 2))
|
|
160
163
|
basic_info.add_column("Property", style="cyan")
|
|
161
164
|
basic_info.add_column("Value", style="green")
|
|
162
165
|
|
|
163
166
|
basic_info.add_row("Name", agent.name)
|
|
164
167
|
basic_info.add_row("Model", str(agent.model or "Default"))
|
|
165
|
-
basic_info.add_row("Description",
|
|
168
|
+
basic_info.add_row("Description", agent.resolved_description if agent.resolved_description else "N/A")
|
|
166
169
|
basic_info.add_row("Input", str(agent.input))
|
|
167
170
|
basic_info.add_row("Output", str(agent.output))
|
|
168
171
|
basic_info.add_row("Write to File", str(agent.write_to_file))
|
|
@@ -329,6 +332,18 @@ def _edit_agent(flock: Flock):
|
|
|
329
332
|
|
|
330
333
|
agent = flock._agents[agent_name]
|
|
331
334
|
|
|
335
|
+
if not agent:
|
|
336
|
+
console.print(f"[bold red]Agent '{agent_name}' not found.[/]")
|
|
337
|
+
return
|
|
338
|
+
|
|
339
|
+
console.print(f"\n[bold underline]Details for Agent: {agent.name}[/]")
|
|
340
|
+
basic_info = Table(show_header=False, box=Box.ROUNDED, padding=(0, 2))
|
|
341
|
+
basic_info.add_row("Name", agent.name)
|
|
342
|
+
description = agent.resolved_description
|
|
343
|
+
basic_info.add_row("Description", description if description else "N/A")
|
|
344
|
+
basic_info.add_row("Model", agent.model or "Flock Default")
|
|
345
|
+
basic_info.add_row("Input Signature", str(agent.input))
|
|
346
|
+
|
|
332
347
|
# Choose edit method
|
|
333
348
|
edit_choice = questionary.select(
|
|
334
349
|
"How would you like to edit this agent?",
|
flock/core/api/endpoints.py
CHANGED
|
@@ -246,7 +246,7 @@ def create_api_router() -> APIRouter:
|
|
|
246
246
|
"""List all available agents in the currently loaded Flock."""
|
|
247
247
|
logger.debug("API request: list agents")
|
|
248
248
|
agents_list = [
|
|
249
|
-
{"name": agent.name, "description": agent.
|
|
249
|
+
{"name": agent.name, "description": agent.resolved_description or agent.name}
|
|
250
250
|
for agent in flock_instance.agents.values()
|
|
251
251
|
]
|
|
252
252
|
return {"agents": agents_list}
|
flock/core/flock_agent.py
CHANGED
|
@@ -195,6 +195,37 @@ class FlockAgent(BaseModel, Serializable, DSPyIntegrationMixin, ABC):
|
|
|
195
195
|
"""Get a list of currently enabled modules attached to this agent."""
|
|
196
196
|
return [m for m in self.modules.values() if m.config.enabled]
|
|
197
197
|
|
|
198
|
+
@property
|
|
199
|
+
def resolved_description(self) -> str | None:
|
|
200
|
+
"""Returns the resolved agent description.
|
|
201
|
+
If the description is a callable, it attempts to call it.
|
|
202
|
+
Returns None if the description is None or a callable that fails.
|
|
203
|
+
"""
|
|
204
|
+
if callable(self.description):
|
|
205
|
+
try:
|
|
206
|
+
# Attempt to call without context first.
|
|
207
|
+
# If callables consistently need context, this might need adjustment
|
|
208
|
+
# or the template-facing property might need to be simpler,
|
|
209
|
+
# relying on prior resolution via resolve_callables.
|
|
210
|
+
return self.description()
|
|
211
|
+
except TypeError:
|
|
212
|
+
# Log a warning that context might be needed?
|
|
213
|
+
# For now, treat as unresolvable in this simple property.
|
|
214
|
+
logger.warning(
|
|
215
|
+
f"Callable description for agent '{self.name}' could not be resolved "
|
|
216
|
+
f"without context via the simple 'resolved_description' property. "
|
|
217
|
+
f"Consider calling 'agent.resolve_callables(context)' beforehand if context is required."
|
|
218
|
+
)
|
|
219
|
+
return None # Or a placeholder like "[Callable Description]"
|
|
220
|
+
except Exception as e:
|
|
221
|
+
logger.error(
|
|
222
|
+
f"Error resolving callable description for agent '{self.name}': {e}"
|
|
223
|
+
)
|
|
224
|
+
return None
|
|
225
|
+
elif isinstance(self.description, str):
|
|
226
|
+
return self.description
|
|
227
|
+
return None
|
|
228
|
+
|
|
198
229
|
# --- Lifecycle Hooks (Keep as they were) ---
|
|
199
230
|
async def initialize(self, inputs: dict[str, Any]) -> None:
|
|
200
231
|
"""Initialize agent and run module initializers."""
|
flock/webapp/static/css/chat.css
CHANGED
|
@@ -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:
|
|
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:
|
|
189
|
-
min-height:
|
|
190
|
-
/*
|
|
188
|
+
height: 100%;
|
|
189
|
+
min-height: 100%;
|
|
190
|
+
/* allow full width inside the main content area */
|
|
191
191
|
width: 100%;
|
|
192
|
-
max-width:
|
|
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
|
+
}
|
flock/webapp/templates/base.html
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
|
|
33
33
|
<body>
|
|
34
34
|
<header class="top-header">
|
|
35
|
-
<span><strong>🐧 Flock
|
|
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 #}
|
flock/webapp/templates/chat.html
CHANGED
|
@@ -33,7 +33,13 @@
|
|
|
33
33
|
<p><em>Loading chat…</em></p>
|
|
34
34
|
</div>
|
|
35
35
|
|
|
36
|
-
<form id="chat-form
|
|
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>
|
|
@@ -23,12 +23,13 @@
|
|
|
23
23
|
hx-indicator="#agent-detail-loading-indicator">
|
|
24
24
|
|
|
25
25
|
<fieldset>
|
|
26
|
-
<
|
|
27
|
-
<
|
|
26
|
+
<legend>Core Agent Configuration</legend>
|
|
27
|
+
<label for="agent_name_field">Agent Name *</label>
|
|
28
|
+
<input type="text" id="agent_name_field" name="agent_name" value="{{ agent.name if agent and not form_errors else (form_data.agent_name if form_data else '') }}" required placeholder="Unique name for the agent">
|
|
28
29
|
{% if form_errors and form_errors.agent_name %}<small class="field-error">{{ form_errors.agent_name }}</small>{% endif %}
|
|
29
30
|
|
|
30
31
|
<label for="agent_description_field">Description</label>
|
|
31
|
-
<textarea id="agent_description_field" name="agent_description" placeholder="Briefly describe what this agent does.">{{ agent.
|
|
32
|
+
<textarea id="agent_description_field" name="agent_description" placeholder="Briefly describe what this agent does.">{{ agent.resolved_description if agent and not form_errors else (form_data.agent_description if form_data else '') }}</textarea>
|
|
32
33
|
|
|
33
34
|
<label for="agent_model_field">Model Override (Optional)</label>
|
|
34
35
|
<input type="text" id="agent_model_field" name="agent_model" value="{{ agent.model if agent and agent.model and not form_errors else (form_data.agent_model if form_data else '') }}" placeholder="e.g., openai/gpt-3.5-turbo (uses Flock default if blank)">
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
{% for agent_name, agent in flock.agents.items() %}
|
|
9
9
|
<li hx-get="/ui/api/flock/htmx/agents/{{ agent.name }}/details-form" hx-target="#agent-detail-panel" hx-swap="innerHTML" hx-indicator="#agent-detail-loading" onclick="this.closest('ul').querySelectorAll('li').forEach(li => li.classList.remove('selected-item')); this.classList.add('selected-item');">
|
|
10
10
|
<strong>{{ agent.name }}</strong><br>
|
|
11
|
-
<small>{{ agent.
|
|
11
|
+
<small>{{ agent.resolved_description|truncate(80) if agent.resolved_description else 'No description' }}</small>
|
|
12
12
|
</li>
|
|
13
13
|
{% endfor %}
|
|
14
14
|
</ul>
|
|
@@ -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"
|
|
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>
|
|
@@ -10,7 +10,7 @@ flock/cli/load_examples.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
|
|
10
10
|
flock/cli/load_flock.py,sha256=sfZ9B9aiyC5TCEbn1xR5Yd5SoaVji6MBNYzXlWOpoZ4,7111
|
|
11
11
|
flock/cli/load_release_notes.py,sha256=bkMIjjQFfOngXkDCh2kB404lQYIToeR91LodzI2IUWM,555
|
|
12
12
|
flock/cli/loaded_flock_cli.py,sha256=lGZ9Y2O16v4OEr0dxvPQA8HqreB_bP25C9teg4ViSsA,8202
|
|
13
|
-
flock/cli/manage_agents.py,sha256=
|
|
13
|
+
flock/cli/manage_agents.py,sha256=cWEHNPDaEAOYaxFhGbt1jmWvIhxmUNjZ24lMP8gH2y8,13506
|
|
14
14
|
flock/cli/registry_management.py,sha256=mAHy3wT97YgODR0gVOkTXDqR5NIPzM-E-z9dEtw9-tw,29790
|
|
15
15
|
flock/cli/runner.py,sha256=TgiuhRLkpa6dn3C-3eCmWx-bWUlTjaH0sD7Y-O7MrYM,1122
|
|
16
16
|
flock/cli/settings.py,sha256=Z_TXBzCYlCmSaKrJ_CQCdYy-Cj29gpI4kbC_2KzoKqg,27025
|
|
@@ -20,7 +20,7 @@ flock/cli/yaml_editor.py,sha256=K3N0bh61G1TSDAZDnurqW9e_-hO6CtSQKXQqlDhCjVo,1252
|
|
|
20
20
|
flock/cli/assets/release_notes.md,sha256=bqnk50jxM3w5uY44Dc7MkdT8XmRREFxrVBAG9XCOSSU,4896
|
|
21
21
|
flock/core/__init__.py,sha256=p7lmQULRu9ejIAELfanZiyMhW0CougIPvyFHW2nqBFQ,847
|
|
22
22
|
flock/core/flock.py,sha256=tr7O84Ykgnu7ZXQ54bOdnjEsZw-a7ue-pDp5UNyPkn4,33837
|
|
23
|
-
flock/core/flock_agent.py,sha256
|
|
23
|
+
flock/core/flock_agent.py,sha256=-gEfBKWc569ynqNdy7Gc1iqBrCYPHmC8qvzXkxTi5m4,41115
|
|
24
24
|
flock/core/flock_evaluator.py,sha256=dOXZeDOGZcAmJ9ahqq_2bdGUU1VOXY4skmwTVpAjiVw,1685
|
|
25
25
|
flock/core/flock_factory.py,sha256=_4zsjkEmJnCR7IvJ3SUHnDbX6c7Tt3E4P5ohxwKvE6w,3173
|
|
26
26
|
flock/core/flock_module.py,sha256=UCK6TFe4viXs596zeng0GD3gln4ZNGu_gCWkXIIMREg,3090
|
|
@@ -28,7 +28,7 @@ flock/core/flock_registry.py,sha256=aC-RK0js676DQkjXmNuYHuD5t6GmFhpQoCKaO3i7xFg,
|
|
|
28
28
|
flock/core/flock_router.py,sha256=1OAXDsdaIIFApEfo6SRfFEDoTuGt3Si7n2MXiySEfis,2644
|
|
29
29
|
flock/core/api/__init__.py,sha256=KdzUwBOwhxqqy7lAMLpysKL5GvpIiwOy6CxXELZVWaY,186
|
|
30
30
|
flock/core/api/custom_endpoint.py,sha256=Mbk2owdcXVATaT5FtEWXFzllgursozcmqP8ouG5btc0,1305
|
|
31
|
-
flock/core/api/endpoints.py,sha256=
|
|
31
|
+
flock/core/api/endpoints.py,sha256=YoqnGscF02OxGXrvOxkn-9hnCwcZD9Vx6YkeHoC8pSk,12187
|
|
32
32
|
flock/core/api/main.py,sha256=MMKTWRLZQXcdoeiN8NOX7s5_vBrzH5reE-W_5xJn8fM,8716
|
|
33
33
|
flock/core/api/models.py,sha256=seqKuzhbN37nCNO7KrcJjI2mWuwiOKCLFcJcTPvTtag,3422
|
|
34
34
|
flock/core/api/run_store.py,sha256=bFodJvVyWogzoezVy0cOoWWU3MdEBXf_6_5sBqCRWps,9227
|
|
@@ -458,22 +458,22 @@ 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
|
|
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=
|
|
467
|
-
flock/webapp/templates/chat.html,sha256=
|
|
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
|
|
471
471
|
flock/webapp/templates/registry_viewer.html,sha256=suAiWDvBxJ8SsF9MhheuN6MMQUZuIhTlurmbFOcYJfI,3235
|
|
472
|
-
flock/webapp/templates/partials/_agent_detail_form.html,sha256=
|
|
473
|
-
flock/webapp/templates/partials/_agent_list.html,sha256=
|
|
472
|
+
flock/webapp/templates/partials/_agent_detail_form.html,sha256=oLz17lmv8s-DI9lOxODLJpc57NRUPmnLlOqxyDFYTDE,6015
|
|
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=
|
|
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.
|
|
510
|
-
flock_core-0.4.
|
|
511
|
-
flock_core-0.4.
|
|
512
|
-
flock_core-0.4.
|
|
513
|
-
flock_core-0.4.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|