vellum-ai 0.14.37__py3-none-any.whl → 0.14.38__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.
- vellum/__init__.py +8 -0
- vellum/client/core/client_wrapper.py +1 -1
- vellum/client/reference.md +6272 -0
- vellum/client/types/__init__.py +8 -0
- vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py +2 -0
- vellum/client/types/fulfilled_prompt_execution_meta.py +2 -0
- vellum/client/types/test_suite_run_exec_config_request.py +4 -0
- vellum/client/types/test_suite_run_prompt_sandbox_exec_config_data_request.py +27 -0
- vellum/client/types/test_suite_run_prompt_sandbox_exec_config_request.py +29 -0
- vellum/client/types/test_suite_run_workflow_sandbox_exec_config_data_request.py +22 -0
- vellum/client/types/test_suite_run_workflow_sandbox_exec_config_request.py +29 -0
- vellum/plugins/pydantic.py +1 -1
- vellum/types/test_suite_run_prompt_sandbox_exec_config_data_request.py +3 -0
- vellum/types/test_suite_run_prompt_sandbox_exec_config_request.py +3 -0
- vellum/types/test_suite_run_workflow_sandbox_exec_config_data_request.py +3 -0
- vellum/types/test_suite_run_workflow_sandbox_exec_config_request.py +3 -0
- vellum/workflows/events/node.py +2 -1
- vellum/workflows/events/types.py +3 -40
- vellum/workflows/events/workflow.py +2 -1
- vellum/workflows/nodes/displayable/bases/prompt_deployment_node.py +94 -3
- vellum/workflows/nodes/displayable/conftest.py +2 -6
- vellum/workflows/nodes/displayable/guardrail_node/node.py +1 -1
- vellum/workflows/nodes/displayable/guardrail_node/tests/__init__.py +0 -0
- vellum/workflows/nodes/displayable/guardrail_node/tests/test_node.py +50 -0
- vellum/workflows/nodes/displayable/prompt_deployment_node/tests/test_node.py +297 -0
- vellum/workflows/runner/runner.py +44 -43
- vellum/workflows/state/base.py +149 -45
- vellum/workflows/types/definition.py +71 -0
- vellum/workflows/types/generics.py +34 -1
- vellum/workflows/workflows/base.py +20 -3
- vellum/workflows/workflows/tests/test_base_workflow.py +232 -1
- {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/METADATA +1 -1
- {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/RECORD +37 -25
- vellum_ee/workflows/display/vellum.py +0 -5
- {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/LICENSE +0 -0
- {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/WHEEL +0 -0
- {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/entry_points.txt +0 -0
vellum/__init__.py
CHANGED
@@ -443,6 +443,8 @@ from .types import (
|
|
443
443
|
TestSuiteRunMetricNumberOutput,
|
444
444
|
TestSuiteRunMetricOutput,
|
445
445
|
TestSuiteRunMetricStringOutput,
|
446
|
+
TestSuiteRunPromptSandboxExecConfigDataRequest,
|
447
|
+
TestSuiteRunPromptSandboxExecConfigRequest,
|
446
448
|
TestSuiteRunPromptSandboxHistoryItemExecConfig,
|
447
449
|
TestSuiteRunPromptSandboxHistoryItemExecConfigData,
|
448
450
|
TestSuiteRunPromptSandboxHistoryItemExecConfigDataRequest,
|
@@ -454,6 +456,8 @@ from .types import (
|
|
454
456
|
TestSuiteRunWorkflowReleaseTagExecConfigData,
|
455
457
|
TestSuiteRunWorkflowReleaseTagExecConfigDataRequest,
|
456
458
|
TestSuiteRunWorkflowReleaseTagExecConfigRequest,
|
459
|
+
TestSuiteRunWorkflowSandboxExecConfigDataRequest,
|
460
|
+
TestSuiteRunWorkflowSandboxExecConfigRequest,
|
457
461
|
TestSuiteRunWorkflowSandboxHistoryItemExecConfig,
|
458
462
|
TestSuiteRunWorkflowSandboxHistoryItemExecConfigData,
|
459
463
|
TestSuiteRunWorkflowSandboxHistoryItemExecConfigDataRequest,
|
@@ -1068,6 +1072,8 @@ __all__ = [
|
|
1068
1072
|
"TestSuiteRunMetricNumberOutput",
|
1069
1073
|
"TestSuiteRunMetricOutput",
|
1070
1074
|
"TestSuiteRunMetricStringOutput",
|
1075
|
+
"TestSuiteRunPromptSandboxExecConfigDataRequest",
|
1076
|
+
"TestSuiteRunPromptSandboxExecConfigRequest",
|
1071
1077
|
"TestSuiteRunPromptSandboxHistoryItemExecConfig",
|
1072
1078
|
"TestSuiteRunPromptSandboxHistoryItemExecConfigData",
|
1073
1079
|
"TestSuiteRunPromptSandboxHistoryItemExecConfigDataRequest",
|
@@ -1079,6 +1085,8 @@ __all__ = [
|
|
1079
1085
|
"TestSuiteRunWorkflowReleaseTagExecConfigData",
|
1080
1086
|
"TestSuiteRunWorkflowReleaseTagExecConfigDataRequest",
|
1081
1087
|
"TestSuiteRunWorkflowReleaseTagExecConfigRequest",
|
1088
|
+
"TestSuiteRunWorkflowSandboxExecConfigDataRequest",
|
1089
|
+
"TestSuiteRunWorkflowSandboxExecConfigRequest",
|
1082
1090
|
"TestSuiteRunWorkflowSandboxHistoryItemExecConfig",
|
1083
1091
|
"TestSuiteRunWorkflowSandboxHistoryItemExecConfigData",
|
1084
1092
|
"TestSuiteRunWorkflowSandboxHistoryItemExecConfigDataRequest",
|
@@ -18,7 +18,7 @@ class BaseClientWrapper:
|
|
18
18
|
headers: typing.Dict[str, str] = {
|
19
19
|
"X-Fern-Language": "Python",
|
20
20
|
"X-Fern-SDK-Name": "vellum-ai",
|
21
|
-
"X-Fern-SDK-Version": "0.14.
|
21
|
+
"X-Fern-SDK-Version": "0.14.38",
|
22
22
|
}
|
23
23
|
headers["X_API_KEY"] = self.api_key
|
24
24
|
return headers
|