flock-core 0.5.0b3__py3-none-any.whl → 0.5.0b6__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.

@@ -142,7 +142,7 @@ def execute_flock(flock: Flock):
142
142
 
143
143
  # Run the Flock
144
144
  result = flock.run(
145
- start_agent=start_agent_name,
145
+ agent=start_agent_name,
146
146
  input=input_data,
147
147
  )
148
148
 
@@ -89,7 +89,7 @@ def create_api_router() -> APIRouter:
89
89
  typed_inputs = inputs_task # Simplified for now
90
90
 
91
91
  result = await flock_instance.run_async(
92
- start_agent=agent_name_task, input=typed_inputs
92
+ agent=agent_name_task, input=typed_inputs
93
93
  )
94
94
  run_store.update_run_result(run_id_task, result)
95
95
  except Exception as e_task:
flock/core/api/service.py CHANGED
@@ -33,7 +33,7 @@ class FlockApiService:
33
33
  )
34
34
  # Flock.run_async now handles context creation and execution
35
35
  result = await self.flock.run_async(
36
- start_agent=agent_name, input=typed_inputs
36
+ agent=agent_name, input=typed_inputs
37
37
  )
38
38
  self.run_store.update_run_result(run_id, result)
39
39
 
@@ -100,7 +100,7 @@ class FlockApiService:
100
100
  try:
101
101
  # Call Flock's run_async for a single item
102
102
  item_result = await self.flock.run_async(
103
- start_agent=request.agent_name,
103
+ agent=request.agent_name,
104
104
  input=item_inputs,
105
105
  box_result=request.box_results,
106
106
  )
@@ -17,6 +17,7 @@ from opik.evaluation import evaluate
17
17
 
18
18
  from flock.core.flock import Flock
19
19
  from flock.core.flock_agent import FlockAgent
20
+
20
21
  # Legacy FlockEvaluator import removed
21
22
  from flock.core.logging.logging import get_logger
22
23
 
@@ -58,7 +59,7 @@ def evaluate_with_opik(
58
59
 
59
60
  # Use the shared Flock instance instead of creating a new one
60
61
  result_flock = shared_flock.run(
61
- start_agent=start_agent, input=agent_input, box_result=False
62
+ agent=start_agent, input=agent_input, box_result=False
62
63
  )
63
64
 
64
65
  # agent_output = result_flock.get(answer_mapping[key], "No answer found")
@@ -228,7 +228,7 @@ class BatchProcessor:
228
228
  try:
229
229
  # Use the synchronous wrapper to avoid nested event-loop issues inside threads
230
230
  result = self.flock.run(
231
- start_agent=start_agent,
231
+ agent=start_agent,
232
232
  input=full_input,
233
233
  box_result=box_results,
234
234
  )
@@ -188,7 +188,7 @@ class EvaluationExecutor:
188
188
  try:
189
189
  # Run the agent/flock for this item
190
190
  agent_output = await self.flock.run_async(
191
- start_agent=start_agent, # Name or instance
191
+ agent=start_agent, # Name or instance
192
192
  input=agent_inputs_with_static,
193
193
  box_result=True, # Use Box for easier access via dot notation
194
194
  # context=... # Assuming isolated context for now
@@ -64,7 +64,7 @@ class OpikExecutor:
64
64
 
65
65
  # Evaluation task
66
66
  def evaluation_task(dataset_item):
67
- flock_result = self.flock.run(start_agent=start_agent, input=dataset_item, box_result=False)
67
+ flock_result = self.flock.run(agent=start_agent, input=dataset_item, box_result=False)
68
68
 
69
69
  result = {
70
70
  "input": dataset_item.get("test"),
flock/core/flock.py CHANGED
@@ -279,7 +279,7 @@ class Flock(BaseModel, Serializable):
279
279
  agent_input = {self.benchmark_input_field: msg_content}
280
280
 
281
281
  result = await self.run_async(
282
- start_agent=self.benchmark_agent_name,
282
+ agent=self.benchmark_agent_name,
283
283
  input=agent_input,
284
284
  box_result=False,
285
285
  )
@@ -355,7 +355,7 @@ class Flock(BaseModel, Serializable):
355
355
 
356
356
  def run(
357
357
  self,
358
- start_agent: FlockAgent | str | None = None,
358
+ agent: FlockAgent | str | None = None,
359
359
  input: dict | None = None,
360
360
  context: FlockContext | None = None,
361
361
  run_id: str = "",
@@ -366,7 +366,7 @@ class Flock(BaseModel, Serializable):
366
366
  ) -> Box | dict:
367
367
  """Synchronous execution wrapper."""
368
368
  return self._execution.run(
369
- start_agent=start_agent,
369
+ agent=agent,
370
370
  input=input,
371
371
  context=context,
372
372
  run_id=run_id,
@@ -378,7 +378,7 @@ class Flock(BaseModel, Serializable):
378
378
 
379
379
  async def run_async(
380
380
  self,
381
- start_agent: FlockAgent | str | None = None,
381
+ agent: FlockAgent | str | None = None,
382
382
  input: dict | None = None,
383
383
  context: FlockContext | None = None,
384
384
  run_id: str = "",
@@ -389,7 +389,7 @@ class Flock(BaseModel, Serializable):
389
389
  ) -> Box | dict:
390
390
  """Entry point for running an agent system asynchronously."""
391
391
  return await self._execution.run_async(
392
- start_agent=start_agent,
392
+ agent=agent,
393
393
  input=input,
394
394
  context=context,
395
395
  run_id=run_id,
@@ -76,7 +76,7 @@ class FlockScheduler:
76
76
  logger.info(f"Triggering scheduled agent '{agent.name}' at {trigger_time.isoformat()}")
77
77
  try:
78
78
  # Input for a scheduled agent could include the trigger time
79
- await self.flock.run_async(start_agent=agent.name, input={"trigger_time": trigger_time})
79
+ await self.flock.run_async(agent=agent.name, input={"trigger_time": trigger_time})
80
80
  logger.info(f"Scheduled agent '{agent.name}' finished successfully.")
81
81
  except Exception as e:
82
82
  logger.error(f"Error running scheduled agent '{agent.name}': {e}\n{traceback.format_exc()}")
@@ -57,7 +57,7 @@ class FlockExecution:
57
57
 
58
58
  def run(
59
59
  self,
60
- start_agent: "FlockAgent | str | None" = None,
60
+ agent: "FlockAgent | str | None" = None,
61
61
  input: dict | None = None,
62
62
  context: FlockContext | None = None,
63
63
  run_id: str = "",
@@ -69,7 +69,7 @@ class FlockExecution:
69
69
  """Synchronous execution wrapper."""
70
70
  return self._run_sync(
71
71
  self.run_async(
72
- start_agent=start_agent,
72
+ agent=agent,
73
73
  input=input,
74
74
  context=context,
75
75
  run_id=run_id,
@@ -82,7 +82,7 @@ class FlockExecution:
82
82
 
83
83
  async def run_async(
84
84
  self,
85
- start_agent: "FlockAgent | str | None" = None,
85
+ agent: "FlockAgent | str | None" = None,
86
86
  input: dict | None = None,
87
87
  context: FlockContext | None = None,
88
88
  run_id: str = "",
@@ -120,7 +120,7 @@ class FlockExecution:
120
120
  )
121
121
 
122
122
  # Determine starting agent name
123
- start_agent_name = self._resolve_start_agent(start_agent)
123
+ start_agent_name = self._resolve_start_agent(agent)
124
124
 
125
125
  # Setup execution context and input
126
126
  run_input = input if input is not None else self.flock._start_input
@@ -179,7 +179,7 @@ class FlockExecution:
179
179
  }
180
180
  return Box(error_output) if box_result else error_output
181
181
 
182
- def _resolve_start_agent(self, start_agent: "FlockAgent | str | None") -> str:
182
+ def _resolve_start_agent(self, agent: "FlockAgent | str | None") -> str:
183
183
  """Resolve the start agent name from various input types."""
184
184
  from flock.core.flock_agent import FlockAgent as ConcreteFlockAgent
185
185
  from flock.core.registry import get_registry
@@ -188,12 +188,12 @@ class FlockExecution:
188
188
 
189
189
  # Determine starting agent name
190
190
  start_agent_name: str | None = None
191
- if isinstance(start_agent, ConcreteFlockAgent):
192
- start_agent_name = start_agent.name
191
+ if isinstance(agent, ConcreteFlockAgent):
192
+ start_agent_name = agent.name
193
193
  if start_agent_name not in self.flock._agents: # Add if not already present
194
- self.flock.add_agent(start_agent)
195
- elif isinstance(start_agent, str):
196
- start_agent_name = start_agent
194
+ self.flock.add_agent(agent)
195
+ elif isinstance(agent, str):
196
+ start_agent_name = agent
197
197
  else: # start_agent is None
198
198
  start_agent_name = self.flock._start_agent_name
199
199
 
@@ -259,7 +259,7 @@ async def _run_hydration_agent(
259
259
 
260
260
  # Run agent
261
261
  result = await temp_flock.run_async(
262
- start_agent=agent_name,
262
+ agent=agent_name,
263
263
  input=agent_input_data,
264
264
  box_result=False,
265
265
  )
flock/webapp/app/chat.py CHANGED
@@ -473,7 +473,7 @@ async def chat_send_shared(
473
473
  if frozen_chat_cfg.history_key: run_input[frozen_chat_cfg.history_key] = [h["text"] for h in history if h.get("role") == "user" or h.get("role") == "bot"]
474
474
 
475
475
  try:
476
- result_dict = await flock_inst.run_async(start_agent=bot_agent, input=run_input, box_result=False)
476
+ result_dict = await flock_inst.run_async(agent=bot_agent, input=run_input, box_result=False)
477
477
  if frozen_chat_cfg.response_key:
478
478
  bot_text = str(result_dict.get(frozen_chat_cfg.response_key, result_dict))
479
479
  else:
@@ -281,7 +281,7 @@ async def run_current_flock_service(
281
281
  logger.info(f"Executing agent '{start_agent_name}' from flock '{current_flock.name}' using app_state.")
282
282
  # Direct execution using the flock from app_state
283
283
  result = await current_flock.run_async(
284
- start_agent=start_agent_name, input=inputs, box_result=False
284
+ agent=start_agent_name, input=inputs, box_result=False
285
285
  )
286
286
  # Store run details using the run_store from app_state
287
287
  if hasattr(run_store, "add_run_details"): # Check if RunStore has this method
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flock-core
3
- Version: 0.5.0b3
3
+ Version: 0.5.0b6
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: chromadb>=0.6.3
13
14
  Requires-Dist: cloudpickle>=3.1.1
14
15
  Requires-Dist: croniter>=6.0.0
15
16
  Requires-Dist: devtools>=0.12.2
@@ -49,51 +50,11 @@ Requires-Dist: tqdm>=4.67.1
49
50
  Requires-Dist: uvicorn>=0.34.0
50
51
  Requires-Dist: wd-di>=0.2.14
51
52
  Requires-Dist: websockets>=15.0.1
52
- Provides-Extra: all
53
- Requires-Dist: azure-identity>=1.23.0; extra == 'all'
54
- Requires-Dist: azure-search-documents>=11.5.2; extra == 'all'
55
- Requires-Dist: azure-storage-blob>=12.25.1; extra == 'all'
56
- Requires-Dist: chromadb>=0.6.3; extra == 'all'
57
- Requires-Dist: datasets>=3.2.0; extra == 'all'
58
- Requires-Dist: docling>=2.34.0; extra == 'all'
59
- Requires-Dist: duckduckgo-search>=7.3.2; extra == 'all'
60
- Requires-Dist: markdownify>=0.14.1; extra == 'all'
61
- Requires-Dist: matplotlib>=3.10.0; extra == 'all'
62
- Requires-Dist: mem0ai[graph]>=0.1.101; extra == 'all'
63
- Requires-Dist: nltk>=3.9.1; extra == 'all'
64
- Requires-Dist: rouge-score>=0.1.2; extra == 'all'
65
- Requires-Dist: sentence-transformers>=3.4.1; extra == 'all'
66
- Requires-Dist: tavily-python>=0.5.0; extra == 'all'
67
- Requires-Dist: zep-python>=2.0.2; extra == 'all'
68
- Provides-Extra: all-tools
69
- Requires-Dist: azure-identity>=1.23.0; extra == 'all-tools'
70
- Requires-Dist: azure-search-documents>=11.5.2; extra == 'all-tools'
71
- Requires-Dist: azure-storage-blob>=12.25.1; extra == 'all-tools'
72
- Requires-Dist: docker>=7.1.0; extra == 'all-tools'
73
- Requires-Dist: docling>=2.34.0; extra == 'all-tools'
74
- Requires-Dist: duckduckgo-search>=7.3.2; extra == 'all-tools'
75
- Requires-Dist: markdownify>=0.14.1; extra == 'all-tools'
76
- Requires-Dist: nltk>=3.9.1; extra == 'all-tools'
77
- Requires-Dist: tavily-python>=0.5.0; extra == 'all-tools'
78
- Provides-Extra: azure-tools
79
- Requires-Dist: azure-identity>=1.23.0; extra == 'azure-tools'
80
- Requires-Dist: azure-search-documents>=11.5.2; extra == 'azure-tools'
81
- Requires-Dist: azure-storage-blob>=12.25.1; extra == 'azure-tools'
82
- Provides-Extra: basic-tools
83
- Requires-Dist: docling>=2.34.0; extra == 'basic-tools'
84
- Requires-Dist: duckduckgo-search>=7.3.2; extra == 'basic-tools'
85
- Requires-Dist: markdownify>=0.14.1; extra == 'basic-tools'
86
- Requires-Dist: tavily-python>=0.5.0; extra == 'basic-tools'
87
- Provides-Extra: code-tools
88
- Requires-Dist: docker>=7.1.0; extra == 'code-tools'
89
53
  Provides-Extra: evaluation
90
54
  Requires-Dist: datasets>=3.2.0; extra == 'evaluation'
91
55
  Requires-Dist: rouge-score>=0.1.2; extra == 'evaluation'
92
56
  Requires-Dist: sentence-transformers>=3.4.1; extra == 'evaluation'
93
- Provides-Extra: llm-tools
94
- Requires-Dist: nltk>=3.9.1; extra == 'llm-tools'
95
57
  Provides-Extra: memory
96
- Requires-Dist: chromadb>=0.6.3; extra == 'memory'
97
58
  Requires-Dist: matplotlib>=3.10.0; extra == 'memory'
98
59
  Requires-Dist: mem0ai[graph]>=0.1.101; extra == 'memory'
99
60
  Requires-Dist: zep-python>=2.0.2; extra == 'memory'
@@ -11,7 +11,7 @@ flock/cli/config.py,sha256=5DvFLObOx3ObisHnc9JfnUBnK83y0CBsUQzXfxPZve0,138
11
11
  flock/cli/constants.py,sha256=ZA5YbLcKXlfiT5h1zCZrAvBWywv3HcuWZqoHWTPdAM0,973
12
12
  flock/cli/create_agent.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
13
13
  flock/cli/create_flock.py,sha256=nrz4URy9boSAaKUKxNTBzNcHc6RBqCvmrR7xS8wKq5k,8463
14
- flock/cli/execute_flock.py,sha256=-_DQ8zLGoj2YWHXyY_1kDadEyasb8Zxggau3RZMpeXk,19143
14
+ flock/cli/execute_flock.py,sha256=lxb3rZpzc5GZ4R_HFs1Zb3tfjWbSNNXsw4uDrQWVpqA,19137
15
15
  flock/cli/load_agent.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
16
16
  flock/cli/load_examples.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
17
17
  flock/cli/load_flock.py,sha256=sfZ9B9aiyC5TCEbn1xR5Yd5SoaVji6MBNYzXlWOpoZ4,7111
@@ -37,10 +37,10 @@ flock/components/utility/memory_utility_component.py,sha256=4Vpt6_McEPpN5lNTcXmj
37
37
  flock/components/utility/metrics_utility_component.py,sha256=u3Bys0dP7FmTeyZOi4XdMhZHCRYc5miXXJ690-qS1Us,24440
38
38
  flock/components/utility/output_utility_component.py,sha256=_YIqU6IaY2yeh1uJcWgZI7XTRSPoDsJjawQTKp_RGxA,7519
39
39
  flock/core/__init__.py,sha256=ntCQ_wlgvRVNFph3drbFvyaqgtN30487V18YoJzcIFE,1332
40
- flock/core/flock.py,sha256=T826p8rwXNaWfd7hRbtGjBWN1pZ8Xy1ocjKdVy1rFtY,23190
40
+ flock/core/flock.py,sha256=dN-asYsN2QOolZtYM5U8bRWEWkGckKRyhyy2n1xQ9b8,23148
41
41
  flock/core/flock_agent.py,sha256=jdEhtGnPFhYDqUyhzHJ6R3EcKp5ocqI3gEaCARCqirs,12027
42
42
  flock/core/flock_factory.py,sha256=toPjFQxlr0-baytwOJQR1GCbNDrv3vPTTZKz0-BABt4,19857
43
- flock/core/flock_scheduler.py,sha256=fu99UXMhs8qkbTLi1q1h4-mR4TxmsyA156EGXuXZ3-Q,8772
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
46
46
  flock/core/agent/flock_agent_components.py,sha256=LamOgpRC7wDKuU3d6enDG0UFlNxyKPErLpH7SQ_Pi74,4539
@@ -50,12 +50,12 @@ flock/core/agent/flock_agent_lifecycle.py,sha256=msGKSNVRwV70_UvKBFLpdnLkTfvTu5F
50
50
  flock/core/agent/flock_agent_serialization.py,sha256=U9UcX34G_ntT6O1pkiXKonc8bZWxQt-T3OWWxxqmwkk,16954
51
51
  flock/core/api/__init__.py,sha256=KdzUwBOwhxqqy7lAMLpysKL5GvpIiwOy6CxXELZVWaY,186
52
52
  flock/core/api/custom_endpoint.py,sha256=Mbk2owdcXVATaT5FtEWXFzllgursozcmqP8ouG5btc0,1305
53
- flock/core/api/endpoints.py,sha256=_P8ZPGt5SXhZMHAOt9KctIWfvILZlCbaNlf0MhT-Ww8,12125
53
+ flock/core/api/endpoints.py,sha256=xFkTqg96JKuPeBAqA_A4lzvVQatsb-aJ6ojPppidbyk,12119
54
54
  flock/core/api/main.py,sha256=MMKTWRLZQXcdoeiN8NOX7s5_vBrzH5reE-W_5xJn8fM,8716
55
55
  flock/core/api/models.py,sha256=seqKuzhbN37nCNO7KrcJjI2mWuwiOKCLFcJcTPvTtag,3422
56
56
  flock/core/api/run_store.py,sha256=bFodJvVyWogzoezVy0cOoWWU3MdEBXf_6_5sBqCRWps,9227
57
57
  flock/core/api/runner.py,sha256=3izg6cVk1RoR1hDIDwMAO1gi3lnLcp8DPv7AnJBYx6A,1443
58
- flock/core/api/service.py,sha256=HRHs4xt-bGeSm5hdN92H1vWQtLzqZalhZxIh6iwww8Y,11381
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=u3Sztd9J5Q-MoeuPs-d9s66mhJuXfTv2JSjsXeGuimc,10660
61
61
  flock/core/component/evaluation_component.py,sha256=IvhS6NgUTH-UWft42Cmk3hK03xGM87kYAmKlQcIcOfs,2016
@@ -66,11 +66,11 @@ flock/core/config/scheduled_agent_config.py,sha256=3okCjpggJSKkc1Dp8ZJuQP010tQvN
66
66
  flock/core/context/context.py,sha256=zdQuB1YWPJmQVv_2_sm1HK7FSnusa3Jl-83PcTuaLUk,7791
67
67
  flock/core/context/context_manager.py,sha256=FANSWa6DEhdhtZ7t_9Gza0v80UdpoDOhHbfVOccmjkA,1181
68
68
  flock/core/context/context_vars.py,sha256=ASPA29hpENWub4mgRoG62FtTVakCHQZfn6IhJQKe3C8,347
69
- flock/core/evaluation/utils.py,sha256=pz62Jr04C3OWRtjSzbv1BqOh2jGlVbmvGWNFVwfzumY,15365
70
- flock/core/execution/batch_executor.py,sha256=mHwCI-DHqApCv_EVCN0ZOUd-LCQLjREpxKbAUPC0pcY,15266
71
- flock/core/execution/evaluation_executor.py,sha256=NZceKhuvTPiLl2wfOYYvEO9VVeSwgg36VxOpR2UV-34,17687
69
+ flock/core/evaluation/utils.py,sha256=q3Z6PD6Ko9IY9S-aTV8vIwtG7GzyHFydrmtM9sHEpDM,15360
70
+ flock/core/execution/batch_executor.py,sha256=Qw3geig7ciCJJTFkayuKZikQ2iHC1Za4UlQCmIydqYg,15260
71
+ flock/core/execution/evaluation_executor.py,sha256=D2AwJXfcgFT1ir0pYdTFT6rug5H4Va-17bIVcy-v3nQ,17681
72
72
  flock/core/execution/local_executor.py,sha256=rnIQvaJOs6zZORUcR3vvyS6LPREDJTjaygl_Db0M8ao,952
73
- flock/core/execution/opik_executor.py,sha256=tl2Ti9NM_9WtcjXvJ0c7up-syRNq_OsLmiuYWqkGV4k,3325
73
+ flock/core/execution/opik_executor.py,sha256=tlxsgweWXbIveE4vW_F9qFdUTfmHF45XfLz-Xx8n4xE,3319
74
74
  flock/core/execution/temporal_executor.py,sha256=dHcb0xuzPFWU_wbwTgI7glLNyyppei93Txs2sapjhaw,6283
75
75
  flock/core/interpreter/python_interpreter.py,sha256=4-wRsxC6-gToEdRr_pp-n2idWwe_Y2zN0o3TbzUPhy0,26632
76
76
  flock/core/logging/__init__.py,sha256=xn5fC-8IgsdIv0ywe_cICK1KVhTrVD8t-jYORg0ETUA,155
@@ -103,7 +103,7 @@ 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=nWaiLFLmXVU8WH2d-PvfuML0UmAkg0q9peigu5dDApg,11453
106
+ flock/core/orchestration/flock_execution.py,sha256=KrUv9jeua9_2cSF64oa_l_urCbvtWKJNXMFmewMGlJk,11387
107
107
  flock/core/orchestration/flock_initialization.py,sha256=zgP9lLszPdY0jCkzF2JQrP7LUMa2ZlZMJK4wN5yjDFQ,4554
108
108
  flock/core/orchestration/flock_server_manager.py,sha256=idDds7QGsqneY21Y5oL9NHN7fz13FlPF4W1C5HsNhZE,2568
109
109
  flock/core/orchestration/flock_web_server.py,sha256=uLTKW2pLf4vW3MqhrA2bl3K69zHRqRqcx6vkFZHRi70,3827
@@ -126,7 +126,7 @@ flock/core/serialization/serializable.py,sha256=qlv8TsTqRuklXiNuCMrvro5VKz764xC2
126
126
  flock/core/serialization/serialization_utils.py,sha256=_TvGJw5zLP-asJxtAGJ65nqWNlLSEzeCSe2N-4JAST8,15283
127
127
  flock/core/util/cli_helper.py,sha256=9MiAw8y0IRlWKF7lRYViRFzSwbWSeiiLv0usyhn8XlU,49966
128
128
  flock/core/util/file_path_utils.py,sha256=Odf7uU32C-x1KNighbNERSiMtkzW4h8laABIoFK7A5M,6246
129
- flock/core/util/hydrator.py,sha256=ARg4ufXNlfAESDaxPeU8j6TOJ2ywzfl00KAIfVHGIxo,10699
129
+ flock/core/util/hydrator.py,sha256=qRfVTDBEwqv1-ET2D4s5NI25f-UA_tGsoAmt5jaJMDI,10693
130
130
  flock/core/util/input_resolver.py,sha256=XNQlx0zRyAIkeVY4SSpfDnpyGQThsEwp3aj_ylv1hjo,5765
131
131
  flock/core/util/loader.py,sha256=j3q2qem5bFMP2SmMuYjb-ISxsNGNZd1baQmpvAnRUUk,2244
132
132
  flock/core/util/splitter.py,sha256=rDLnZX158PWkmW8vi2UfMLAMRXcHQFUIydAABd-lDGw,7154
@@ -476,20 +476,10 @@ flock/themes/zenburn.toml,sha256=NxOAR3cx-Z9PVErEKHFZ6jsjfKBtPmfyN_vGSri5_qo,171
476
476
  flock/themes/zenburned.toml,sha256=UEmquBbcAO3Zj652XKUwCsNoC2iQSlIh-q5c6DH-7Kc,1664
477
477
  flock/themes/zenwritten-dark.toml,sha256=To5l6520_3UqAGiEumpzGWsHhXxqu9ThrMildXKgIO0,1669
478
478
  flock/themes/zenwritten-light.toml,sha256=G1iEheCPfBNsMTGaVpEVpDzYBHA_T-MV27rolUYolmE,1666
479
- flock/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
480
- flock/tools/azure_tools.py,sha256=OTJsb0B4l70GcD1W3ZMDHWd3X8nEnszhhz2sllD2z9E,30187
481
- flock/tools/code_tools.py,sha256=xLpuFl84y_GVzmIBe4qrr7h9wI3yWpM-M21GgEUjSjE,5247
482
- flock/tools/file_tools.py,sha256=VYjT942NqDMTnizHiF41O4Af6ySseSvahRNVVrGMXl8,4850
483
- flock/tools/github_tools.py,sha256=HH47-4K3HL6tRJhZhUttWDo2aloP9Hs12wRC_f_-Vkc,5329
484
- flock/tools/markdown_tools.py,sha256=1EZuYyt8LiuEgROfXqW_VQWQ8cxyko4yMP9nrx3CBds,6324
485
- flock/tools/system_tools.py,sha256=IUB8MiSxtQH5ZfTGOck3vl4TKva8m1lfU4-W5D5b-4w,202
486
- flock/tools/text_tools.py,sha256=_FLubHtH4x2-Wn4_SRMV3vYuBls8KCFNuCxqlgfptRM,22470
487
- flock/tools/web_tools.py,sha256=Wl3qO5lKq4PYtmYahgeFGBQ8tDC0uKY4k9A1Zn-MqFw,2588
488
- flock/tools/zendesk_tools.py,sha256=e7KMfHVl7wGbstwdz9CvoChyuoZfpS9n4TEtvrxawgI,5162
489
479
  flock/webapp/__init__.py,sha256=YtRbbyciN3Z2oMB9fdXZuvM3e49R8m2mY5qHLDoapRA,37
490
480
  flock/webapp/run.py,sha256=btKVwIqrFg3FhLRuj2RN_fazwaFat3Ue5yiFiIg60rQ,9054
491
481
  flock/webapp/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
492
- flock/webapp/app/chat.py,sha256=d5a_mr3H2nuWNFSpSlI_HyqX-J_4krndd4A-8S25EKM,28679
482
+ flock/webapp/app/chat.py,sha256=XMfkjlogtT0Sxm_hRD9_pN77bd0bXWp1cNsWq61_kdU,28673
493
483
  flock/webapp/app/config.py,sha256=lqmneujnNZk-EFJV5cWpvxkqisxH3T3zT_YOI0JYThE,4809
494
484
  flock/webapp/app/dependencies.py,sha256=JUcwY1N6SZplU141lMN2wk9dOC9er5HCedrKTJN9wJk,5533
495
485
  flock/webapp/app/main.py,sha256=GSCx_trZGSma11BiDCLrdm_zU1VIsIUDbOZuQD1wbMk,58671
@@ -503,7 +493,7 @@ flock/webapp/app/api/execution.py,sha256=tmExz11EPYmltYsQ-xB58ueXZbmlpW1fJFi0s6L
503
493
  flock/webapp/app/api/flock_management.py,sha256=1o-6-36kTnUjI3am_BqLpdrcz0aqFXrxE-hQHIFcCsg,4869
504
494
  flock/webapp/app/api/registry_viewer.py,sha256=IoInxJiRR0yFlecG_l2_eRc6l35RQQyEDMG9BcBkipY,1020
505
495
  flock/webapp/app/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
506
- flock/webapp/app/services/flock_service.py,sha256=olU1My3YYkrTCVIOYPgRted-8YgAop-Yi7G4gbRHTrg,14941
496
+ flock/webapp/app/services/flock_service.py,sha256=cuJezcNvrRiyQM2f6Nu62NAmcqJBpqLydml6zI0_OuI,14935
507
497
  flock/webapp/app/services/sharing_models.py,sha256=XeJk1akILV_1l-cIUaG8k_eYhjV3EWBCWZ2kpwbdImA,3609
508
498
  flock/webapp/app/services/sharing_store.py,sha256=qegEx2rbhlhJgxGjZ-5MJXCnxDBYoPnfL0THcobuEIk,17816
509
499
  flock/webapp/app/templates/theme_mapper.html,sha256=z8ZY7nmk6PiUGzD_-px7wSXcEnuBM121rMq6u-2oaCo,14249
@@ -559,8 +549,8 @@ flock/workflow/agent_execution_activity.py,sha256=CzTkbjGqrPoAbldaQOS_doesosDK9m
559
549
  flock/workflow/flock_workflow.py,sha256=ZhAF82ewNRY2vvDjNpXT1D9lCVQsLOSMTaZVzdcogJc,9674
560
550
  flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
561
551
  flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
562
- flock_core-0.5.0b3.dist-info/METADATA,sha256=9UbqtzRrhZ9AK2gAk04t44sD2tkbYY4Eq17z_QcYeFU,22786
563
- flock_core-0.5.0b3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
564
- flock_core-0.5.0b3.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
565
- flock_core-0.5.0b3.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
566
- flock_core-0.5.0b3.dist-info/RECORD,,
552
+ flock_core-0.5.0b6.dist-info/METADATA,sha256=7gNH5W3TDTvH7_R55vLrgMXqRIcREftWrdDnm_qtpR8,20770
553
+ flock_core-0.5.0b6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
554
+ flock_core-0.5.0b6.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
555
+ flock_core-0.5.0b6.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
556
+ flock_core-0.5.0b6.dist-info/RECORD,,
flock/tools/__init__.py DELETED
File without changes