vellum-workflow-server 0.14.87__py3-none-any.whl → 0.14.87.post2__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.
- {vellum_workflow_server-0.14.87.dist-info → vellum_workflow_server-0.14.87.post2.dist-info}/METADATA +1 -1
- {vellum_workflow_server-0.14.87.dist-info → vellum_workflow_server-0.14.87.post2.dist-info}/RECORD +5 -5
- workflow_server/api/workflow_view.py +3 -4
- {vellum_workflow_server-0.14.87.dist-info → vellum_workflow_server-0.14.87.post2.dist-info}/WHEEL +0 -0
- {vellum_workflow_server-0.14.87.dist-info → vellum_workflow_server-0.14.87.post2.dist-info}/entry_points.txt +0 -0
{vellum_workflow_server-0.14.87.dist-info → vellum_workflow_server-0.14.87.post2.dist-info}/RECORD
RENAMED
|
@@ -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
|
|
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.dist-info/METADATA,sha256=
|
|
32
|
-
vellum_workflow_server-0.14.87.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
33
|
-
vellum_workflow_server-0.14.87.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
|
|
34
|
-
vellum_workflow_server-0.14.87.dist-info/RECORD,,
|
|
31
|
+
vellum_workflow_server-0.14.87.post2.dist-info/METADATA,sha256=IdYgPs_iUJDzV5cjE-2_IKkvJsyUJruEB2MMFRbJyM8,2277
|
|
32
|
+
vellum_workflow_server-0.14.87.post2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
33
|
+
vellum_workflow_server-0.14.87.post2.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
|
|
34
|
+
vellum_workflow_server-0.14.87.post2.dist-info/RECORD,,
|
|
@@ -243,8 +243,7 @@ def stream_workflow_route() -> Response:
|
|
|
243
243
|
|
|
244
244
|
try:
|
|
245
245
|
if ENABLE_PROCESS_WRAPPER:
|
|
246
|
-
|
|
247
|
-
event = item
|
|
246
|
+
event = queue.get(timeout=0.1)
|
|
248
247
|
else:
|
|
249
248
|
event = next(stream_iterator)
|
|
250
249
|
except Empty:
|
|
@@ -280,7 +279,7 @@ def stream_workflow_route() -> Response:
|
|
|
280
279
|
yield "\n"
|
|
281
280
|
yield vembda_initiated_event.model_dump_json()
|
|
282
281
|
yield "\n"
|
|
283
|
-
for
|
|
282
|
+
for row in workflow_events:
|
|
284
283
|
yield "\n"
|
|
285
284
|
if isinstance(row, dict):
|
|
286
285
|
dump = json.dumps(row)
|
|
@@ -387,7 +386,7 @@ def stream_node_route() -> Response:
|
|
|
387
386
|
def generator() -> Generator[str, None, None]:
|
|
388
387
|
yield json.dumps(vembda_initiated_event.model_dump(mode="json"))
|
|
389
388
|
|
|
390
|
-
for
|
|
389
|
+
for row in node_events():
|
|
391
390
|
yield "\n"
|
|
392
391
|
yield json.dumps(row)
|
|
393
392
|
|
{vellum_workflow_server-0.14.87.dist-info → vellum_workflow_server-0.14.87.post2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|