vellum-workflow-server 0.14.87.post1__py3-none-any.whl → 0.14.88__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 vellum-workflow-server might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-workflow-server
3
- Version: 0.14.87.post1
3
+ Version: 0.14.88
4
4
  Summary:
5
5
  License: AGPL
6
6
  Requires-Python: >=3.9.0,<4
@@ -29,7 +29,7 @@ Requires-Dist: pyjwt (==2.10.0)
29
29
  Requires-Dist: python-dotenv (==1.0.1)
30
30
  Requires-Dist: retrying (==1.3.4)
31
31
  Requires-Dist: sentry-sdk[flask] (==2.20.0)
32
- Requires-Dist: vellum-ai (==0.14.87)
32
+ Requires-Dist: vellum-ai (==0.14.88)
33
33
  Description-Content-Type: text/markdown
34
34
 
35
35
  # Vellum Workflow Runner Server
@@ -6,7 +6,7 @@ workflow_server/api/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
6
6
  workflow_server/api/tests/test_input_display_mapping.py,sha256=drBZqMudFyB5wgiUOcMgRXz7E7ge-Qgxbstw4E4f0zE,2211
7
7
  workflow_server/api/tests/test_workflow_view.py,sha256=2nscM_QsYPHkkTG8_JhNbE2LmGL5FQKXEtaLLjXouw0,14591
8
8
  workflow_server/api/tests/test_workflow_view_stream_workflow_route.py,sha256=7q5AiBzfXX-npCrp-Da2OWk6-M1Ai8QZPDLhLlkxb34,26051
9
- workflow_server/api/workflow_view.py,sha256=qsHQPturdZwk1V1u5eBUTbUkWwy0oiFCQJY7xKMk-vE,18414
9
+ workflow_server/api/workflow_view.py,sha256=-Q7XkaF3uZoxfcb7FeQ56f7VY9MBdsqfTaAF5ZhlpyU,18378
10
10
  workflow_server/code_exec_runner.py,sha256=njBK48zVUwhAjvap_KY1so-D0UjKgR4UihDuKow3JnM,2274
11
11
  workflow_server/config.py,sha256=DyTty8NrAwvtx-esM3KthnpsNh-nKdWNlovWQOgiGpg,1417
12
12
  workflow_server/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -28,7 +28,7 @@ workflow_server/utils/tests/test_sentry_integration.py,sha256=LGmWiaLhFrx-jslrRj
28
28
  workflow_server/utils/tests/test_system_utils.py,sha256=_4GwXvVvU5BrATxUEWwQIPg0bzQXMWBtiBmjP8MTxJM,4314
29
29
  workflow_server/utils/tests/test_utils.py,sha256=qwK5Rmy3RQyjtlUrYAuGuDlBeRzZKsf1yS-y2IpUizQ,6452
30
30
  workflow_server/utils/utils.py,sha256=Wqqn-1l2ugkGgy5paWWdt0AVxAyPMQCYcnRSSOMjXlA,4355
31
- vellum_workflow_server-0.14.87.post1.dist-info/METADATA,sha256=ix2RsyNXuewi8Mw9COeoKf9f68ugkn7bBBeBAy0aemI,2277
32
- vellum_workflow_server-0.14.87.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
- vellum_workflow_server-0.14.87.post1.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
- vellum_workflow_server-0.14.87.post1.dist-info/RECORD,,
31
+ vellum_workflow_server-0.14.88.dist-info/METADATA,sha256=Ik44PwjHPuES-1iakTHHUOpzc6NJm0bT86LMD_2Osr0,2271
32
+ vellum_workflow_server-0.14.88.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
+ vellum_workflow_server-0.14.88.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
+ vellum_workflow_server-0.14.88.dist-info/RECORD,,
@@ -279,7 +279,7 @@ def stream_workflow_route() -> Response:
279
279
  yield "\n"
280
280
  yield vembda_initiated_event.model_dump_json()
281
281
  yield "\n"
282
- for index, row in enumerate(workflow_events):
282
+ for row in workflow_events:
283
283
  yield "\n"
284
284
  if isinstance(row, dict):
285
285
  dump = json.dumps(row)
@@ -386,7 +386,7 @@ def stream_node_route() -> Response:
386
386
  def generator() -> Generator[str, None, None]:
387
387
  yield json.dumps(vembda_initiated_event.model_dump(mode="json"))
388
388
 
389
- for index, row in enumerate(node_events()):
389
+ for row in node_events():
390
390
  yield "\n"
391
391
  yield json.dumps(row)
392
392