flock-core 0.4.541__py3-none-any.whl → 0.4.543__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.

@@ -321,7 +321,7 @@ def zendesk_add_comment_to_ticket(ticket_id: str, comment_body: str, public: boo
321
321
 
322
322
  @mcp.tool()
323
323
  def zendesk_set_ticket_custom_field(
324
- ticket_id: str, custom_field_id: int, custom_field_value: str, is_multi_option: bool = False
324
+ ticket_id: str, custom_field_id: int, custom_field_value: str
325
325
  ) -> dict:
326
326
  """Set the custom field value of a Zendesk ticket.
327
327
 
@@ -329,11 +329,11 @@ def zendesk_set_ticket_custom_field(
329
329
  PUT /api/v2/tickets/{ticket_id}.json
330
330
  """#
331
331
  logger.info(f"Starting zendesk_set_ticket_custom_field for ticket_id: {ticket_id}, field_id: {custom_field_id}")
332
- logger.debug(f"Custom field value: {custom_field_value}, is_multi_option: {is_multi_option}")
332
+ logger.info(f"Custom field value: {custom_field_value}")
333
333
 
334
- if is_multi_option:
335
- custom_field_value = [custom_field_value]
336
- logger.debug("Converted custom field value to list for multi-option field")
334
+
335
+ custom_field_value = [custom_field_value]
336
+ logger.debug("Converted custom field value to list for multi-option field")
337
337
 
338
338
  ZENDESK_SUBDOMAIN = os.getenv("ZENDESK_SUBDOMAIN_TICKET")
339
339
  logger.debug(f"Using Zendesk subdomain: {ZENDESK_SUBDOMAIN}")
@@ -347,7 +347,7 @@ def zendesk_set_ticket_custom_field(
347
347
  "custom_fields": [
348
348
  {
349
349
  "id": custom_field_id,
350
- "value": custom_field_value,
350
+ "value": custom_field_value
351
351
  }
352
352
  ]
353
353
  }
flock/webapp/app/main.py CHANGED
@@ -6,8 +6,8 @@ import shutil
6
6
 
7
7
  # Added for share link creation
8
8
  import uuid
9
- from datetime import datetime
10
9
  from contextlib import asynccontextmanager
10
+ from datetime import datetime
11
11
  from pathlib import Path
12
12
  from typing import Any
13
13
 
@@ -33,8 +33,8 @@ from flock.core.api.run_store import RunStore
33
33
  # Import core Flock components and API related modules
34
34
  from flock.core.flock import Flock # For type hinting
35
35
  from flock.core.flock_scheduler import FlockScheduler
36
- from flock.core.logging.logging import get_logger # For logging
37
36
  from flock.core.logging.live_capture import get_live_log_store
37
+ from flock.core.logging.logging import get_logger # For logging
38
38
  from flock.core.util.splitter import parse_schema
39
39
 
40
40
  # Import UI-specific routers
@@ -897,7 +897,7 @@ async def htmx_live_cli_logs(request: Request, limit: int = Query(200, ge=50, le
897
897
  hide_polling = str(hide_polling_param).lower() not in {"0", "false", "off", ""}
898
898
 
899
899
  if hide_polling:
900
- entries = [entry for entry in entries if "GET /ui/htmx/live-logs" not in str(entry.get("text", ""))]
900
+ entries = [entry for entry in entries if "htmx/live-logs" not in str(entry.get("text", ""))]
901
901
 
902
902
  logs = []
903
903
  for entry in entries:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flock-core
3
- Version: 0.4.541
3
+ Version: 0.4.543
4
4
  Summary: Declarative LLM Orchestration at Scale
5
5
  Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
6
6
  License-File: LICENSE
@@ -489,14 +489,14 @@ flock/tools/markdown_tools.py,sha256=94fjGAJ5DEutoioD0ke-YRbxF6IWJQKuPVBLkNqdBo4
489
489
  flock/tools/system_tools.py,sha256=IUB8MiSxtQH5ZfTGOck3vl4TKva8m1lfU4-W5D5b-4w,202
490
490
  flock/tools/text_tools.py,sha256=mMQ8tkyYDxIorqqzl9ccGyWYjrSynYiYFIeP9qypfdg,22491
491
491
  flock/tools/web_tools.py,sha256=h44L5rknxGw1mVnFTYO-z0xwUr5ctOvMiJBIfeq56UE,2555
492
- flock/tools/zendesk_tools.py,sha256=1uNHMvfjmbxkrJoBsXS5jDaOCeEcOEDQUKoGYFODj3o,19007
492
+ flock/tools/zendesk_tools.py,sha256=Qay4XmVJFbwd6TV16xlo-SK9hPqH2mIJuT4VqTcTR1Y,18907
493
493
  flock/webapp/__init__.py,sha256=YtRbbyciN3Z2oMB9fdXZuvM3e49R8m2mY5qHLDoapRA,37
494
494
  flock/webapp/run.py,sha256=58oUBp8Bumhtigof6Q0nKbkI-vUai0r67qmzEfKZ1CA,9241
495
495
  flock/webapp/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
496
496
  flock/webapp/app/chat.py,sha256=cGdmwJ6ME9zS61nR9Iuy1ujtL6nTyuxmsuEwn3WWm70,30848
497
497
  flock/webapp/app/config.py,sha256=lqmneujnNZk-EFJV5cWpvxkqisxH3T3zT_YOI0JYThE,4809
498
498
  flock/webapp/app/dependencies.py,sha256=JUcwY1N6SZplU141lMN2wk9dOC9er5HCedrKTJN9wJk,5533
499
- flock/webapp/app/main.py,sha256=fLOi5INA3FwaV-r_500RtkEB1MDhVYgKjr0jGz9c0js,60220
499
+ flock/webapp/app/main.py,sha256=IyuZWsX71FbORAvcq_d6j7rYrkVdg5CM3G_rWQ2jmWc,60212
500
500
  flock/webapp/app/middleware.py,sha256=5gkM-gqD7C6-JrsoTB1_UWpf05JI1N8KIWajn60QZk0,5721
501
501
  flock/webapp/app/models_ui.py,sha256=vrEBLbhEp6FziAgBSFOLT1M7ckwadsTdT7qus5_NduE,329
502
502
  flock/webapp/app/theme_mapper.py,sha256=WctP0aFWrASeb9jBRtpmjgHcmMR57J9ibaa6XLZA6r8,34294
@@ -565,8 +565,8 @@ flock/workflow/agent_execution_activity.py,sha256=hLqWEWsxwTgjsE9wvBejf3pN2TdIfU
565
565
  flock/workflow/flock_workflow.py,sha256=iSUF_soFvWar0ffpkzE4irkDZRx0p4HnwmEBi_Ne2sY,9666
566
566
  flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
567
567
  flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
568
- flock_core-0.4.541.dist-info/METADATA,sha256=sKIt_GB6E2T_Zq4c4QE4PdMT7cFSTKmk7v8yAQBzt98,22800
569
- flock_core-0.4.541.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
570
- flock_core-0.4.541.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
571
- flock_core-0.4.541.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
572
- flock_core-0.4.541.dist-info/RECORD,,
568
+ flock_core-0.4.543.dist-info/METADATA,sha256=l8c7DgWyu3r2bIBiKS5RXmG4kWWdEAFRdqGFqqacQYE,22800
569
+ flock_core-0.4.543.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
570
+ flock_core-0.4.543.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
571
+ flock_core-0.4.543.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
572
+ flock_core-0.4.543.dist-info/RECORD,,