vellum-workflow-server 1.4.1.post3__py3-none-any.whl → 1.4.2.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-workflow-server
3
- Version: 1.4.1.post3
3
+ Version: 1.4.2.post1
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 (==1.4.1)
32
+ Requires-Dist: vellum-ai (==1.4.2)
33
33
  Description-Content-Type: text/markdown
34
34
 
35
35
  # Vellum Workflow Runner Server
@@ -12,9 +12,9 @@ workflow_server/config.py,sha256=qmmTr6ty3ZN5LDOFs3TfUxYshYe6Mmn_LanplHHeE9Q,179
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=5cji5KQSukLrABmihJp9cgKjXS145TocOz2cOcnof04,18962
15
+ workflow_server/core/executor.py,sha256=xSju3Z4lhFNYPKNFXUca_tWGRNO-C8xehaz-SdCpbbo,18827
16
16
  workflow_server/core/utils.py,sha256=cmwHbKCfXqtUutBD3akGus0Ga7a1xG3zlOw-jEMx6mI,1795
17
- workflow_server/core/workflow_executor_context.py,sha256=VafZg74t_GQ3_2DEWVroy38rSy_spcAw4c3NrOOWOKY,3198
17
+ workflow_server/core/workflow_executor_context.py,sha256=E6Yfh0PLAjey-OzIsGAy35BOm9eMpL4cv0LbHeOiYTk,3192
18
18
  workflow_server/server.py,sha256=QBU12AaAfAgLqfCDBd24qIJl_mbheiq0-hfcWV7rZM4,1234
19
19
  workflow_server/start.py,sha256=pkwRcms6I4tkVHP06LdrZY6rG_DFHfBx4ioY5X91W5k,2264
20
20
  workflow_server/utils/__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=0Nq6du8o-iBtTrip9_wgHES53JSiJbVdSXaBnPobw3s,6930
30
30
  workflow_server/utils/utils.py,sha256=ZPoM1Suhid22dpB8oEFLux8wx-9iyzmSfWuYxSCrgWk,4774
31
- vellum_workflow_server-1.4.1.post3.dist-info/METADATA,sha256=tZiQ-25OwiPIcV3lWGZsF9gRuPuAZaypRCtAVbVUirs,2273
32
- vellum_workflow_server-1.4.1.post3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
- vellum_workflow_server-1.4.1.post3.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
- vellum_workflow_server-1.4.1.post3.dist-info/RECORD,,
31
+ vellum_workflow_server-1.4.2.post1.dist-info/METADATA,sha256=xv-QKdQf_2ozKAjEpEA1EqaAU0En_Ogr3N5IxJysPo0,2273
32
+ vellum_workflow_server-1.4.2.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
+ vellum_workflow_server-1.4.2.post1.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
+ vellum_workflow_server-1.4.2.post1.dist-info/RECORD,,
@@ -259,9 +259,7 @@ def stream_workflow(
259
259
  if emitter_thread:
260
260
  emitter_thread.join()
261
261
 
262
- timer_thread = next((t for t in threading.enumerate() if t.name.startswith("Thread-")), None)
263
- if timer_thread:
264
- timer_thread.join()
262
+ workflow.join()
265
263
 
266
264
  return (
267
265
  _call_stream(
@@ -1,10 +1,9 @@
1
1
  from dataclasses import field
2
+ from functools import cached_property
2
3
  import os
3
4
  from uuid import UUID
4
5
  from typing import Any, Optional
5
6
 
6
- from _pytest.compat import cached_property
7
-
8
7
  from vellum import ApiVersionEnum, Vellum, VellumEnvironment
9
8
  from vellum.client.core import UniversalBaseModel
10
9
  from vellum.workflows.context import ExecutionContext