vellum-ai 0.14.64__py3-none-any.whl → 0.14.66__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/client/README.md +1 -1
- vellum/client/core/client_wrapper.py +1 -1
- vellum/client/reference.md +0 -2767
- vellum/client/types/document_read.py +0 -1
- vellum/client/types/folder_entity_prompt_sandbox_data.py +1 -0
- vellum/client/types/folder_entity_workflow_sandbox_data.py +1 -0
- vellum/workflows/expressions/accessor.py +22 -5
- vellum/workflows/expressions/tests/test_accessor.py +189 -0
- vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/test_inline_prompt_node.py +26 -23
- vellum/workflows/nodes/displayable/inline_prompt_node/node.py +4 -14
- vellum/workflows/nodes/experimental/tool_calling_node/utils.py +4 -13
- {vellum_ai-0.14.64.dist-info → vellum_ai-0.14.66.dist-info}/METADATA +3 -2
- {vellum_ai-0.14.64.dist-info → vellum_ai-0.14.66.dist-info}/RECORD +20 -18
- vellum_cli/image_push.py +62 -7
- vellum_cli/pull.py +38 -9
- vellum_cli/tests/test_image_push_error_handling.py +184 -0
- vellum_cli/tests/test_pull.py +11 -8
- {vellum_ai-0.14.64.dist-info → vellum_ai-0.14.66.dist-info}/LICENSE +0 -0
- {vellum_ai-0.14.64.dist-info → vellum_ai-0.14.66.dist-info}/WHEEL +0 -0
- {vellum_ai-0.14.64.dist-info → vellum_ai-0.14.66.dist-info}/entry_points.txt +0 -0
vellum/client/README.md
CHANGED
@@ -20,7 +20,7 @@ pip install vellum-ai
|
|
20
20
|
|
21
21
|
## Reference
|
22
22
|
|
23
|
-
A full reference for this library is available [here](
|
23
|
+
A full reference for this library is available [here](https://github.com/vellum-ai/vellum-python-sdks/blob/HEAD/./reference.md).
|
24
24
|
|
25
25
|
## Usage
|
26
26
|
|
@@ -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.66",
|
22
22
|
}
|
23
23
|
headers["X-API-KEY"] = self.api_key
|
24
24
|
return headers
|