vellum-workflow-server 1.7.5__py3-none-any.whl → 1.7.5.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-1.7.5.dist-info → vellum_workflow_server-1.7.5.post1.dist-info}/METADATA +1 -1
- {vellum_workflow_server-1.7.5.dist-info → vellum_workflow_server-1.7.5.post1.dist-info}/RECORD +6 -6
- workflow_server/config.py +1 -0
- workflow_server/utils/utils.py +2 -1
- {vellum_workflow_server-1.7.5.dist-info → vellum_workflow_server-1.7.5.post1.dist-info}/WHEEL +0 -0
- {vellum_workflow_server-1.7.5.dist-info → vellum_workflow_server-1.7.5.post1.dist-info}/entry_points.txt +0 -0
{vellum_workflow_server-1.7.5.dist-info → vellum_workflow_server-1.7.5.post1.dist-info}/RECORD
RENAMED
|
@@ -8,7 +8,7 @@ workflow_server/api/tests/test_workflow_view.py,sha256=XfsW8_hFKN5rzp2UFVviVoLW-
|
|
|
8
8
|
workflow_server/api/tests/test_workflow_view_stream_workflow_route.py,sha256=l4sfma1uNB2CtFjxKTIQ2SSn-PpyxaSWJZyy7VYSDYM,37311
|
|
9
9
|
workflow_server/api/workflow_view.py,sha256=WJC8wfdgqIDk5LLdRN2rom1M4qKvqHroxXpCjYczmjg,19859
|
|
10
10
|
workflow_server/code_exec_runner.py,sha256=DLNNrinCRbnkSvlqVvSZ1wv_etI7r_kKAXNPGMj3jBk,2196
|
|
11
|
-
workflow_server/config.py,sha256=
|
|
11
|
+
workflow_server/config.py,sha256=CKU7qKC5k1_M1AFOJn_nUqntA46KPk_Z7fblfQaGC-0,1877
|
|
12
12
|
workflow_server/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
workflow_server/core/cancel_workflow.py,sha256=QcEeYUIrxq4pub-z9BlGi5fLI3gVRml-56rMCW7j5Hc,2212
|
|
14
14
|
workflow_server/core/events.py,sha256=24MA66DVQuaLJJcZrS8IL1Zq4Ohi9CoouKZ5VgoH3Cs,1402
|
|
@@ -27,8 +27,8 @@ workflow_server/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
27
27
|
workflow_server/utils/tests/test_sentry_integration.py,sha256=LGmWiaLhFrx-jslrRjRq9JY6Z5ShLZyx_N_L0-FU6OI,2100
|
|
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
|
-
workflow_server/utils/utils.py,sha256=
|
|
31
|
-
vellum_workflow_server-1.7.5.dist-info/METADATA,sha256=
|
|
32
|
-
vellum_workflow_server-1.7.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
33
|
-
vellum_workflow_server-1.7.5.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
|
|
34
|
-
vellum_workflow_server-1.7.5.dist-info/RECORD,,
|
|
30
|
+
workflow_server/utils/utils.py,sha256=m7iMJtor5SQLWu7jlJw-X5Q3nmbq69BCxTMv6qnFYrA,4835
|
|
31
|
+
vellum_workflow_server-1.7.5.post1.dist-info/METADATA,sha256=AS79hT9zNyxoVj6nYGoLmTvDLmND6YvsDTgtaaTT_3I,2273
|
|
32
|
+
vellum_workflow_server-1.7.5.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
33
|
+
vellum_workflow_server-1.7.5.post1.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
|
|
34
|
+
vellum_workflow_server-1.7.5.post1.dist-info/RECORD,,
|
workflow_server/config.py
CHANGED
|
@@ -28,6 +28,7 @@ PORT = os.getenv("PORT", "8000")
|
|
|
28
28
|
VELLUM_API_URL_HOST = os.getenv("VELLUM_API_URL_HOST", "localhost")
|
|
29
29
|
VELLUM_API_URL_PORT = os.getenv("VELLUM_API_URL_PORT", 8000)
|
|
30
30
|
CONCURRENCY = int(os.getenv("CONCURRENCY", "8"))
|
|
31
|
+
CONTAINER_IMAGE = os.getenv("CONTAINER_IMAGE", "python-workflow-runtime:latest")
|
|
31
32
|
ENABLE_PROCESS_WRAPPER = os.getenv("ENABLE_PROCESS_WRAPPER", "true").lower() == "true"
|
|
32
33
|
|
|
33
34
|
# This controls if we should just load a module already available in the py path for running
|
workflow_server/utils/utils.py
CHANGED
|
@@ -15,7 +15,7 @@ from vellum import (
|
|
|
15
15
|
VellumImage,
|
|
16
16
|
VellumVideo,
|
|
17
17
|
)
|
|
18
|
-
from workflow_server.config import is_development
|
|
18
|
+
from workflow_server.config import CONTAINER_IMAGE, is_development
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
def convert_json_inputs_to_vellum(inputs: List[dict]) -> dict:
|
|
@@ -62,6 +62,7 @@ def get_version() -> dict:
|
|
|
62
62
|
return {
|
|
63
63
|
"sdk_version": version("vellum-ai"),
|
|
64
64
|
"server_version": "local" if is_development() else version("vellum-workflow-server"),
|
|
65
|
+
"container_image": CONTAINER_IMAGE,
|
|
65
66
|
}
|
|
66
67
|
|
|
67
68
|
|
{vellum_workflow_server-1.7.5.dist-info → vellum_workflow_server-1.7.5.post1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|