vellum-workflow-server 0.14.72.post8__py3-none-any.whl → 0.14.73.post1__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.72.post8.dist-info → vellum_workflow_server-0.14.73.post1.dist-info}/METADATA +2 -2
- {vellum_workflow_server-0.14.72.post8.dist-info → vellum_workflow_server-0.14.73.post1.dist-info}/RECORD +5 -5
- workflow_server/core/executor.py +0 -8
- {vellum_workflow_server-0.14.72.post8.dist-info → vellum_workflow_server-0.14.73.post1.dist-info}/WHEEL +0 -0
- {vellum_workflow_server-0.14.72.post8.dist-info → vellum_workflow_server-0.14.73.post1.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vellum-workflow-server
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.73.post1
|
|
4
4
|
Summary:
|
|
5
5
|
License: AGPL
|
|
6
6
|
Requires-Python: >=3.9.0,<4
|
|
@@ -28,7 +28,7 @@ Requires-Dist: pebble (==5.0.7)
|
|
|
28
28
|
Requires-Dist: pyjwt (==2.10.0)
|
|
29
29
|
Requires-Dist: python-dotenv (==1.0.1)
|
|
30
30
|
Requires-Dist: sentry-sdk[flask] (==2.20.0)
|
|
31
|
-
Requires-Dist: vellum-ai (==0.14.
|
|
31
|
+
Requires-Dist: vellum-ai (==0.14.73)
|
|
32
32
|
Description-Content-Type: text/markdown
|
|
33
33
|
|
|
34
34
|
# Vellum Workflow Runner Server
|
|
@@ -12,7 +12,7 @@ workflow_server/config.py,sha256=K5Tavm7wiqCZt0RWWue7zzb8N6e8aWnFOTNlBqEJPcI,133
|
|
|
12
12
|
workflow_server/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
workflow_server/core/cancel_workflow.py,sha256=Ffkc3mzmrdMEUcD-sHfEhX4IwVrka-E--SxKA1dUfIU,2185
|
|
14
14
|
workflow_server/core/events.py,sha256=24MA66DVQuaLJJcZrS8IL1Zq4Ohi9CoouKZ5VgoH3Cs,1402
|
|
15
|
-
workflow_server/core/executor.py,sha256=
|
|
15
|
+
workflow_server/core/executor.py,sha256=j78gYOgaeJ5Z25nCefnPg4fUPdTLW0tcwaZeWQf0DP0,16588
|
|
16
16
|
workflow_server/core/utils.py,sha256=lgzxkAEjEXPxGXXQlUYTYuCdHht-eDJJmHj5AhEb3_o,1500
|
|
17
17
|
workflow_server/core/workflow_executor_context.py,sha256=a-v48GJbOWUh4JIf_bNwDX-BvfKkg4xwRSPEyRVQmp4,1373
|
|
18
18
|
workflow_server/server.py,sha256=QBU12AaAfAgLqfCDBd24qIJl_mbheiq0-hfcWV7rZM4,1234
|
|
@@ -27,7 +27,7 @@ workflow_server/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
27
27
|
workflow_server/utils/tests/test_system_utils.py,sha256=MdBxI9gxUOpR_JBAHpEz6dGFY6JjxhMSM2oExpqFvNA,4314
|
|
28
28
|
workflow_server/utils/tests/test_utils.py,sha256=qwK5Rmy3RQyjtlUrYAuGuDlBeRzZKsf1yS-y2IpUizQ,6452
|
|
29
29
|
workflow_server/utils/utils.py,sha256=Wqqn-1l2ugkGgy5paWWdt0AVxAyPMQCYcnRSSOMjXlA,4355
|
|
30
|
-
vellum_workflow_server-0.14.
|
|
31
|
-
vellum_workflow_server-0.14.
|
|
32
|
-
vellum_workflow_server-0.14.
|
|
33
|
-
vellum_workflow_server-0.14.
|
|
30
|
+
vellum_workflow_server-0.14.73.post1.dist-info/METADATA,sha256=XP2DjToBtdOhbNvZ29sQqlP9b2Zh1MNTIaqyrlvk5gg,2243
|
|
31
|
+
vellum_workflow_server-0.14.73.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
32
|
+
vellum_workflow_server-0.14.73.post1.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
|
|
33
|
+
vellum_workflow_server-0.14.73.post1.dist-info/RECORD,,
|
workflow_server/core/executor.py
CHANGED
|
@@ -21,7 +21,6 @@ from vellum_ee.workflows.server.virtual_file_loader import VirtualFileFinder
|
|
|
21
21
|
|
|
22
22
|
from vellum import Vellum, VellumEnvironment
|
|
23
23
|
from vellum.workflows import BaseWorkflow
|
|
24
|
-
from vellum.workflows.errors import WorkflowError, WorkflowErrorCode
|
|
25
24
|
from vellum.workflows.events.types import BaseEvent
|
|
26
25
|
from vellum.workflows.events.workflow import WorkflowEventDisplayContext
|
|
27
26
|
from vellum.workflows.exceptions import WorkflowInitializationException
|
|
@@ -207,13 +206,6 @@ def stream_workflow(
|
|
|
207
206
|
if event.name == "workflow.execution.initiated":
|
|
208
207
|
event.body.display_context = display_context
|
|
209
208
|
|
|
210
|
-
if event.name.endswith("rejected") and event.body.error.code.name == "INTERNAL_ERROR": # type: ignore
|
|
211
|
-
sentry_sdk.set_tag("vellum_trace_id", str(executor_context.trace_id))
|
|
212
|
-
logger.exception(event.body.error.message) # type: ignore
|
|
213
|
-
event.body.error = WorkflowError( # type: ignore
|
|
214
|
-
code=WorkflowErrorCode.INTERNAL_ERROR.value, message="Internal Error" # type: ignore
|
|
215
|
-
)
|
|
216
|
-
|
|
217
209
|
yield _dump_event(
|
|
218
210
|
event=event,
|
|
219
211
|
executor_context=executor_context,
|
|
File without changes
|
|
File without changes
|